Review request: gdb-gef

2024-05-05 Thread Gordon Messmer

https://bugzilla.redhat.com/show_bug.cgi?id=2276821

GEF is a Python GDB extension that I'd like to use to add tests to 
monitor and detect GOT poisoning attacks, such as the one used in the 
liblzma attack.  For example, this proof-of-concept test for openssh:


https://src.fedoraproject.org/rpms/openssh/pull-request/73
--
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[EPEL-devel] Fedora EPEL 7 updates-testing report

2024-05-05 Thread updates
The following Fedora EPEL 7 Security updates need testing:
 Age  URL
   2  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2024-c66806f4ad   
stb-0-0.45.20240213gitae721c5.el7


The following builds have been pushed to Fedora EPEL 7 updates-testing

bgpq4-1.13-1.el7
tio-3.1-1.el7
zabbix6.0-6.0.29-1.el7

Details about builds:



 bgpq4-1.13-1.el7 (FEDORA-EPEL-2024-b4becf246b)
 Automate BGP filter generation based on routing database information

Update Information:

bgpq4 1.13
Fixed a bug for macOS users by removing sx_maxsockbuf()

ChangeLog:

* Mon May  6 2024 Robert Scheck  1.13-1
- Upgrade to 1.13 (#2278792)




 tio-3.1-1.el7 (FEDORA-EPEL-2024-8adda6e75f)
 Simple TTY terminal I/O application

Update Information:

tio v3.1
Improve --list feature on non-linux platform
List available profiles in --list output
Always message when saving log file
Add support for using TID as device in config file
Fix use of invalid flag with regexec()
Fix potential buffer overflow in match_and_replace()
Fix profile autocompletion
Remove inih dependency from CI builds
Replace use of stat() with fstat()
For better security.
Fix hexN output mode
Update pattern matching example
Fix submenu response when invalid key hit
Replace inih with glib key file parser
After including the use of glib we might as well replace inih with the glib key
file parser.
All configuraiton file parsing has been reworked and also the options parsing
has been cleaned up, resulting in better and stricter configuration file and
option value checks.
Compared to old, configuration files now requires any default configurations to
be put in a group/section named [default].
Configuration file keywords such as enable, disable, on, off, yes, no, 0, 1 have
been retired. Now only true and false apply to boolean configuration options.
This is done to simplify things and avoid any confusion.
The pattern option feature has been reworked so now the user can now access the
full match string and any matching subexpression using the%mN syntax.
For example:
[usb devices]
pattern = usb([0-9]*)
device = /dev/ttyUSB%m1
Then when using tio:
$ tio usb12
   %m0 = 'usb12'  // Full match string
   %m1 = 12   // First match subexpression
Which results in device = `/dev/ttyUSB12`
Remove CircleCI
Replaced with GitHub workflow CI.
Add GitHub workflow for Ubuntu build
Enable extended pattern matching
So that the exclude options can also work as include using special pattern
syntax.
For example, to only include /dev/ttyUSB* devices simply do: $ tio --exclude-
devices=!(/dev/ttyUSB*) --list
See the man page of fnmatch() for all available extended pattern options.
Update lua read() description
Fix: add build patch for FNM_EXTMATCH
Feat: add macOS workflow
Fix: add macOS build patch for fs_get_creation_time
tio v3.0
Simplify lua line manipulation API
Collapses lua high(), low(), toggle(), config_high(), config_low(),
config_apply() into one simple function:
set{=, ...}
Line can be any of DTR, RTS, CTS, DSR, CD, RI.
State is high, low, or toggle.
Example: script = set{DTR=high, RTS=low}; msleep(100); set{DTR=low, RTS=high};
msleep(100); set{RTS=low}
Notice the use of {} instad of () when calling the set function. This is
required to pass parameters by name in lua.
Disable DEC Special Graphics at exit if vt100
If a vt100 terminal receives the Shift In character \016 it will enable the 7
bit DEC Special Graphics character set used for line drawing.
For most users this can happen due to line noise from the tty device and will
likely mess up your terminal even after tio exits.
To better handle this we want to make sure that tio disables this mode by
sending the Shift Out character \017 at exit.
This mechanism will only activate if environment variable TERM assumes value
vt100.
Add hexN output mode
Adds support for hexN mode where N is a number in the range 1 to 4096 which
defines how many hex values will be printed before a line break.
In short, it defines the width of the hex output.
In this mode, if timestamps are enabled they will be added to each hex line.
Rename sub-config to profile
Because better naming.
Use lua io.write() instead of print()
io.write() gives better output control as print() is hardcoded to always print a
newline.
Add new ways to manage serial devices
Rename --list-devices to --list
Rename --no-autoconnect to --no-reconnect
Switch -l and -L options
-l now lists available serial devices
-L enables log to file
Add option --auto-connect 
Supported strategies:
new - Waits to connect 

Re: OCaml flambda optimizations causing a compilation slow down

2024-05-05 Thread Jerry James
On Fri, May 3, 2024 at 11:18 AM Richard W.M. Jones  wrote:
> I tested the tip of the 5.1 branch upstream and that still had the
> issue.  I didn't test 5.2.

Here's a build with OCaml 5.2.0rc1:

https://copr.fedorainfracloud.org/coprs/jjames/OCaml5.2/build/7416844/

As you can see, the build times are still terrible.  I tried switching
from menhir's default code backend to its table backend, and
compilation of the emitted file was so fast it was below the level of
(my) perception.  The tradeoff between the code and table backends is
described in Section 1, Foreword, here:

http://cambium.inria.fr/~fpottier/menhir/manual.html

I don't know what percentage of the total runtime coccinelle spends in
the parser, but if it is a small percentage, then maybe the small
slowdown from using the table backend is worth the massive decrease in
build time.
-- 
Jerry James
http://www.jamezone.org/
--
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[EPEL-devel] Fedora EPEL 8 updates-testing report

2024-05-05 Thread updates
The following Fedora EPEL 8 Security updates need testing:
 Age  URL
   3  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2024-f282573e05   
et-6.2.8-2.el8
   2  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2024-6327fb701b   
stb-0-0.45.20240213gitae721c5.el8


The following builds have been pushed to Fedora EPEL 8 updates-testing

bgpq4-1.13-1.el8
chromium-124.0.6367.118-2.el8
tio-3.1-1.el8
zabbix6.0-6.0.29-1.el8

Details about builds:



 bgpq4-1.13-1.el8 (FEDORA-EPEL-2024-6d23f67317)
 Automate BGP filter generation based on routing database information

Update Information:

bgpq4 1.13
Fixed a bug for macOS users by removing sx_maxsockbuf()

ChangeLog:

* Mon May  6 2024 Robert Scheck  1.13-1
- Upgrade to 1.13 (#2278792)




 chromium-124.0.6367.118-2.el8 (FEDORA-EPEL-2024-4edaf658b7)
 A WebKit (Blink) powered web browser that Google doesn't want you to use

Update Information:

update to 124.0.6367.118
High CVE-2024-4331: Use after free in Picture In Picture
High CVE-2024-4368: Use after free in Dawn

ChangeLog:

* Sun May  5 2024 Than Ngo  - 124.0.6367.118-2
- fixed build errors on el8
- refreshed clean_ffmpeg.sh
- added missing files for bundle ffmpeg
* Wed May  1 2024 Than Ngo  - 124.0.6367.118-1
- update to 124.0.6367.118
  * High CVE-2024-4331: Use after free in Picture In Picture
  * High CVE-2024-4368: Use after free in Dawn
- use system highway
* Sat Apr 27 2024 Than Ngo  - 124.0.6367.91-1
- update to 124.0.6367.91
- fixed bz#2277228 - chromium wrapper causes library issues (symbol lookup 
error)
- use system dav1d
* Wed Apr 24 2024 Than Ngo  - 124.0.6367.78-1
- update to 124.0.6367.78
  * Critical CVE-2024-4058: Type Confusion in ANGLE
  * High CVE-2024-4059: Out of bounds read in V8 API
  * High CVE-2024-4060: Use after free in Dawn
* Sat Apr 20 2024 Than Ngo  - 124.0.6367.60-2
- fix waylang regression
* Tue Apr 16 2024 Than Ngo  - 124.0.6367.60-1
- update to 124.0.6367.60

References:

  [ 1 ] Bug #2274695 - CVE-2023-49528 chromium: FFmpeg: Heap Buffer Overflow 
vulnerability [epel-all]
https://bugzilla.redhat.com/show_bug.cgi?id=2274695
  [ 2 ] Bug #2275841 - CVE-2024-31578 CVE-2024-31581 CVE-2024-31582 
CVE-2024-31585 chromium: ffmpeg: multiple vulnerabilities [epel-all]
https://bugzilla.redhat.com/show_bug.cgi?id=2275841
  [ 3 ] Bug #2276116 - CVE-2023-49501 CVE-2023-49502 CVE-2023-51791 
CVE-2023-51792 CVE-2023-51793 chromium: ffmpeg: multiple vulnerabilities 
[epel-all]
https://bugzilla.redhat.com/show_bug.cgi?id=2276116
  [ 4 ] Bug #2276123 - CVE-2023-51795 CVE-2023-51796 CVE-2023-51797 
CVE-2023-51798 chromium: ffmpeg: multiple vulnerabilites [epel-all]
https://bugzilla.redhat.com/show_bug.cgi?id=2276123
  [ 5 ] Bug #2276130 - CVE-2023-50007 CVE-2023-50008 CVE-2023-50009 
CVE-2023-50010 chromium: ffmpeg: multiple vulnerabilitites [epel-all]
https://bugzilla.redhat.com/show_bug.cgi?id=2276130
  [ 6 ] Bug #2278765 - CVE-2024-4331 chromium: chromium-browser: Use after free 
in Picture In Picture [fedora-all]
https://bugzilla.redhat.com/show_bug.cgi?id=2278765
  [ 7 ] Bug #2278766 - CVE-2024-4331 chromium: chromium-browser: Use after free 
in Picture In Picture [epel-all]
https://bugzilla.redhat.com/show_bug.cgi?id=2278766
  [ 8 ] Bug #2278771 - CVE-2024-4368 chromium: chromium-browser: Use after free 
in Dawn [epel-all]
https://bugzilla.redhat.com/show_bug.cgi?id=2278771




 tio-3.1-1.el8 (FEDORA-EPEL-2024-0d1d43583b)
 Simple TTY terminal I/O application

Update Information:

tio v3.1
Improve --list feature on non-linux platform
List available profiles in --list output
Always message when saving log file
Add support for using TID as device in config file
Fix use of invalid flag with regexec()
Fix potential buffer overflow in match_and_replace()
Fix profile autocompletion
Remove inih dependency from CI builds
Replace use of stat() with fstat()
For better security.
Fix hexN output mode
Update pattern matching example
Fix submenu response when invalid key hit
Replace inih with glib key file parser
After including the use of glib we 

[Bug 2278779] perl-Test-Compile-3.3.3 is available

2024-05-05 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2278779

Upstream Release Monitoring  
changed:

   What|Removed |Added

Summary|perl-Test-Compile-3.3.2 is  |perl-Test-Compile-3.3.3 is
   |available   |available



--- Comment #1 from Upstream Release Monitoring 
 ---
Releases retrieved: 3.3.3
Upstream release that is considered latest: 3.3.3
Current version/release in rawhide: 3.3.1-4.fc40
URL: https://metacpan.org/dist/Test-Compile/

Please consult the package updates policy before you issue an update to a
stable branch: https://docs.fedoraproject.org/en-US/fesco/Updates_Policy/


More information about the service that created this bug can be found at:
https://docs.fedoraproject.org/en-US/package-maintainers/Upstream_Release_Monitoring


Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.


Based on the information from Anitya:
https://release-monitoring.org/project/3388/


To change the monitoring settings for the project, please visit:
https://src.fedoraproject.org/rpms/perl-Test-Compile


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2278779

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla=report-spam_desc=Report%20of%20Bug%202278779%23c1
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Feedback wanted: Testing side-tag for switching dnf5 in Rawhide

2024-05-05 Thread Leslie Satenstein via devel
AdamI believe in the KISS principle.  Do a simplification change that does it 
for the great number of new Fedora users who are coming from other 
desktop/laptop/business systems. Linux is gaining #users. 
Let us make their migration to Fedora for end-user people as simple as possible 
for this function.  


Leslie Satenstein
 

On Thursday, May 2, 2024 at 04:28:44 p.m. EDT, Adam Williamson 
 wrote:  
 
 On Thu, 2024-05-02 at 15:41 -0400, Przemek Klosowski via devel wrote:
> On 5/2/24 14:34, Gary Buhrmaster wrote:
> > While I follow the philosophy of updating
> > regularly, there are likely some who install Fnn, and
> > never update, and then would expect an update to
> > Fnn+2 to work without issue(s).
> > --
> 
> The CLI update strongly suggests doing 'dnf update --refresh' before 
> system-upgrade. It doesn't require it though.
> 
> I always thought it's an odd workflow; why doesn't it just force it? 
> While it might take a long while to complete on a stale system, it's 
> recommended anyway, isn't it?

I would actually hugely prefer we amend that to say `dnf --refresh
offline-upgrade download; dnf offline-upgrade reboot` or so. It's a
footgun as it stands.
-- 
Adam Williamson (he/him/his)
Fedora QA
Fedora Chat: @adamwill:fedora.im | Mastodon: @ad...@fosstodon.org
https://www.happyassassin.net



--
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue
  --
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Need SELinux help for fail2ban!

2024-05-05 Thread Carlos Rodriguez-Fernandez
"/run/fail2ban(/.*)?" is usually how it is done, so I was wondering if 
restorecon didn't like current form for some reason. However, as you 
mentioned in the other email, it works on a fresh system, so this is not 
the problem.


On 5/4/24 14:58, Richard Shaw wrote:
On Sat, May 4, 2024 at 4:49 PM Carlos Rodriguez-Fernandez 
mailto:carlosrodrifernan...@gmail.com>> 
wrote:


The suggestion for one of the comments of using `/run/fail2ban(/.*)?`
instead of `/run/fail2ban.*` doesn't work?


I try to be very careful with making changes in SELinux and I don't know 
what the difference is between those two statements.


ChatGPT had the following to say:
In SELinux, these two statements represent regular expressions used in 
file context definitions. Let's break down each one:


1. `/run/fail2ban(/.*)?`:
    - This regular expression matches paths that start with 
`/run/fail2ban/` followed by zero or more characters (`.*`) and 
optionally followed by a forward slash and zero or more characters 
(`(/.*)?`). Essentially, it matches paths like `/run/fail2ban`, 
`/run/fail2ban/`, and any subdirectories and files within `/run/fail2ban`.


2. `/run/fail2ban.*`:
    - This regular expression matches paths that start with 
`/run/fail2ban` followed by zero or more characters (`.*`). It doesn't 
specify any specific structure beyond `/run/fail2ban`, so it matches 
paths like `/run/fail2ban`, `/run/fail2ban.log`, 
`/run/fail2ban/somefile`, etc. It doesn't specifically include 
subdirectories like the previous expression.


In summary, the first expression is more specific, including 
subdirectories under `/run/fail2ban`, while the second expression is 
more general, matching any path that starts with `/run/fail2ban`.

---

It doesn't look like it would make a difference for the specific issue...

Thanks,
Richard

--
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


OpenPGP_signature.asc
Description: OpenPGP digital signature
--
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Need SELinux help for fail2ban!

2024-05-05 Thread Carlos Rodriguez-Fernandez
I don't think the problem is the "fc" file, but the fact that the file 
in /run/fail2ban didn't get relabeled when the users updated, or the 
selinux subpackage didn't get updated at all. That explains why it works 
on a fresh system.


The specificity of "/run/fail2ban(/.*)?" is better and safer, so you 
don't get restorecon to relabel /run/fail2ban-/my-hack.



On 5/5/24 05:35, Richard Shaw wrote:
I'm trying to reproduce the problem on the Fedora rawhide test machine 
but it's running without error!


$ sudo systemctl status fail2ban.service
● fail2ban.service - Fail2Ban Service
      Loaded: loaded (/usr/lib/systemd/system/fail2ban.service; 
disabled; preset: disabled)

     Drop-In: /usr/lib/systemd/system/service.d
              └─10-timeout-abort.conf
      Active: active (running) since Sun 2024-05-05 12:31:24 UTC; 1min 
8s ago

        Docs: man:fail2ban(1)
     Process: 1689891 ExecStartPre=/bin/mkdir -p /run/fail2ban 
(code=exited, status=0/SUCCESS)

    Main PID: 1689893 (fail2ban-server)
       Tasks: 3 (limit: 9118)
      Memory: 11.5M (peak: 11.8M)
         CPU: 114ms
      CGroup: /system.slice/fail2ban.service
              └─1689893 /usr/bin/python3 -sP /usr/bin/fail2ban-server 
-xf start


May 05 12:31:24 rawhide-test.fedorainfracloud.org 
 systemd[1]: Starting 
fail2ban.service - Fail2Ban Service...
May 05 12:31:24 rawhide-test.fedorainfracloud.org 
 systemd[1]: Started 
fail2ban.service - Fail2Ban Service.
May 05 12:31:25 rawhide-test.fedorainfracloud.org 
 fail2ban-server[1689893]: 
Server ready

---

Socket file is written:

$ ll -Z  /run/fail2ban/
total 4
-rw---. 1 root root system_u:object_r:fail2ban_var_run_t:s0 8 May  5 
12:31 fail2ban.pid
srwx--. 1 root root system_u:object_r:fail2ban_var_run_t:s0 0 May  5 
12:31 fail2ban.sock


I don't want to try random fixes to a problem I can't reproduce...

Richard


--
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


OpenPGP_signature.asc
Description: OpenPGP digital signature
--
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2279153] New: perl-ExtUtils-HasCompiler-0.025 is available

2024-05-05 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2279153

Bug ID: 2279153
   Summary: perl-ExtUtils-HasCompiler-0.025 is available
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-ExtUtils-HasCompiler
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com,
perl-devel@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora



Releases retrieved: 0.025
Upstream release that is considered latest: 0.025
Current version/release in rawhide: 0.024-1.fc41
URL: https://metacpan.org/dist/ExtUtils-HasCompiler/

Please consult the package updates policy before you issue an update to a
stable branch: https://docs.fedoraproject.org/en-US/fesco/Updates_Policy/


More information about the service that created this bug can be found at:
https://docs.fedoraproject.org/en-US/package-maintainers/Upstream_Release_Monitoring


Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.


Based on the information from Anitya:
https://release-monitoring.org/project/9932/


To change the monitoring settings for the project, please visit:
https://src.fedoraproject.org/rpms/perl-ExtUtils-HasCompiler


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2279153

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla=report-spam_desc=Report%20of%20Bug%202279153%23c0
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Need SELinux help for fail2ban!

2024-05-05 Thread Richard Shaw
I'm trying to reproduce the problem on the Fedora rawhide test machine but
it's running without error!

$ sudo systemctl status fail2ban.service
● fail2ban.service - Fail2Ban Service
 Loaded: loaded (/usr/lib/systemd/system/fail2ban.service; disabled;
preset: disabled)
Drop-In: /usr/lib/systemd/system/service.d
 └─10-timeout-abort.conf
 Active: active (running) since Sun 2024-05-05 12:31:24 UTC; 1min 8s ago
   Docs: man:fail2ban(1)
Process: 1689891 ExecStartPre=/bin/mkdir -p /run/fail2ban (code=exited,
status=0/SUCCESS)
   Main PID: 1689893 (fail2ban-server)
  Tasks: 3 (limit: 9118)
 Memory: 11.5M (peak: 11.8M)
CPU: 114ms
 CGroup: /system.slice/fail2ban.service
 └─1689893 /usr/bin/python3 -sP /usr/bin/fail2ban-server -xf
start

May 05 12:31:24 rawhide-test.fedorainfracloud.org systemd[1]: Starting
fail2ban.service - Fail2Ban Service...
May 05 12:31:24 rawhide-test.fedorainfracloud.org systemd[1]: Started
fail2ban.service - Fail2Ban Service.
May 05 12:31:25 rawhide-test.fedorainfracloud.org fail2ban-server[1689893]:
Server ready
---

Socket file is written:

$ ll -Z  /run/fail2ban/
total 4
-rw---. 1 root root system_u:object_r:fail2ban_var_run_t:s0 8 May  5
12:31 fail2ban.pid
srwx--. 1 root root system_u:object_r:fail2ban_var_run_t:s0 0 May  5
12:31 fail2ban.sock

I don't want to try random fixes to a problem I can't reproduce...

Richard
--
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Fedora rawhide compose report: 20240505.n.0 changes

2024-05-05 Thread Fedora Rawhide Report
OLD: Fedora-Rawhide-20240504.n.0
NEW: Fedora-Rawhide-20240505.n.0

= SUMMARY =
Added images:1
Dropped images:  1
Added packages:  4
Dropped packages:0
Upgraded packages:   34
Downgraded packages: 0

Size of added packages:  13.60 MiB
Size of dropped packages:0 B
Size of upgraded packages:   686.72 MiB
Size of downgraded packages: 0 B

Size change of upgraded packages:   114.13 MiB
Size change of downgraded packages: 0 B

= ADDED IMAGES =
Image: Workstation live aarch64
Path: 
Workstation/aarch64/iso/Fedora-Workstation-Live-aarch64-Rawhide-20240505.n.0.iso

= DROPPED IMAGES =
Image: Python_Classroom raw-xz aarch64
Path: 
Labs/aarch64/images/Fedora-Python-Classroom-Rawhide-20240504.n.0.aarch64.raw.xz

= ADDED PACKAGES =
Package: deepin-pdfium-1.0.2-1.fc41
Summary: development library for pdf on Deepin
RPMs:deepin-pdfium deepin-pdfium-devel
Size:10.69 MiB

Package: deepin-util-dfm-1.2.23-1.fc41
Summary: Utilities of deepin file manager
RPMs:dfm-burn dfm-burn-devel dfm-io dfm-io-devel dfm-mount dfm-mount-devel
Size:2.67 MiB

Package: ec2-instance-connect-1.1.17-1.fc41
Summary: EC2 Instance Connect scripts
RPMs:ec2-instance-connect ec2-instance-connect-config 
ec2-instance-connect-selinux
Size:43.28 KiB

Package: openxr-simple-playground-0-2.20240424git3b3c91f.fc41
Summary: OpenXR C Playground
RPMs:openxr-simple-playground
Size:191.82 KiB


= DROPPED PACKAGES =

= UPGRADED PACKAGES =
Package:  amarok-3.0.0-1.fc41
Old package:  amarok-2.9.71^git20240330.7ec45dd-1.fc41
Summary:  Media player
RPMs: amarok amarok-doc amarok-libs amarok-utils
Size: 74.34 MiB
Size change:  25.20 MiB
Changelog:
  * Wed May 01 2024 Marc Deop i Argem??  - 3.0.0-1
  - Update to 3.0.0


Package:  cairo-dock-3.5.99^20240501git1f31686-1.fc41
Old package:  cairo-dock-3.5.0-2.fc41
Summary:  Light eye-candy fully themable animated dock
RPMs: cairo-dock cairo-dock-core cairo-dock-devel cairo-dock-libs
Size: 7.82 MiB
Size change:  164.70 KiB
Changelog:
  * Sat May 04 2024 Mamoru TASAKA  - 
3.5.99^20240501git1f31686-1
  - Update to latest git (20240501git1f31686)


Package:  cairo-dock-plug-ins-3.5.99^20240501git9901f7d-1.fc41
Old package:  cairo-dock-plug-ins-3.5.0-4.fc41
Summary:  Plug-ins files for Cairo-Dock
RPMs: cairo-dock-plug-ins cairo-dock-plug-ins-base 
cairo-dock-plug-ins-common cairo-dock-plug-ins-dbus cairo-dock-plug-ins-kde 
cairo-dock-plug-ins-unstable cairo-dock-plug-ins-webkit 
cairo-dock-plug-ins-xfce cairo-dock-python3 cairo-dock-ruby cairo-dock-vala 
cairo-dock-vala-devel
Size: 17.22 MiB
Size change:  -191.93 KiB
Changelog:
  * Sat May 04 2024 Mamoru TASAKA  - 
3.5.99^20240501git9901f7d-1
  - Update to the latest git (20240501git9901f7d)


Package:  cinnamon-control-center-6.0.1-1.fc41
Old package:  cinnamon-control-center-6.0.0-6.fc41
Summary:  Utilities to configure the Cinnamon desktop
RPMs: cinnamon-control-center cinnamon-control-center-devel 
cinnamon-control-center-filesystem
Size: 2.12 MiB
Size change:  -2.68 KiB
Changelog:
  * Sat May 04 2024 Leigh Scott  - 6.0.1-1
  - Update to 6.0.1 release


Package:  cinnamon-screensaver-6.0.3-1.fc41
Old package:  cinnamon-screensaver-6.0.2-4.fc40
Summary:  Cinnamon Screensaver
RPMs: cinnamon-screensaver
Size: 803.21 KiB
Size change:  -2.19 KiB
Changelog:
  * Sat May 04 2024 Leigh Scott  - 6.0.3-1
  - Update to 6.0.3 release


Package:  cinnamon-session-6.0.4-1.fc41
Old package:  cinnamon-session-6.0.1-5.fc40
Summary:  Cinnamon session manager
RPMs: cinnamon-session
Size: 540.47 KiB
Size change:  -16.82 KiB
Changelog:
  * Sat May 04 2024 Leigh Scott  - 6.0.4-1
  - Update to 6.0.4 release


Package:  cli11-2.4.2-1.fc41
Old package:  cli11-2.4.1-1.fc40
Summary:  Command line parser for C++11
RPMs: cli11-devel cli11-docs
Size: 5.95 MiB
Size change:  1.63 KiB
Changelog:
  * Sat May 04 2024 Jerry James  - 2.4.2-1
  - Version 2.4.2


Package:  eccodes-2.35.0-1.fc41
Old package:  eccodes-2.34.1-1.fc41
Summary:  WMO data format decoding and encoding
RPMs: eccodes eccodes-data eccodes-devel eccodes-doc
Size: 12.71 MiB
Size change:  36.97 KiB
Changelog:
  * Mon Mar 04 2024 Jos de Kloe  - 2.34.1-2
  - Require openjpeg2-devel >= 2.5.2 (needed to build for f40)

  * Sat May 04 2024 Jos de Kloe  - 2.35.0-1
  - Update to 2.35.0


Package:  erlang-26.2.5-1.fc41
Old package:  erlang-26.2.4-1.fc41
Summary:  General-purpose programming language and runtime environment
RPMs: erlang erlang-asn1 erlang-common_test erlang-compiler 
erlang-crypto erlang-debugger erlang-dialyzer erlang-diameter erlang-doc 
erlang-edoc erlang-eldap erlang-erl_docgen erlang-erl_interface erlang-erts 
erlang-et erlang-eunit erlang-examples erlang-ftp erlang-inets 
erlang-jinterface erlang-kernel erlang-meg

[rpms/perl-Task-Catalyst] PR #1: Stop building for 32-bit x86

2024-05-05 Thread Emmanuel Seyman

eseyman merged a pull-request against the project: `perl-Task-Catalyst` that 
you are following.

Merged pull-request:

``
Stop building for 32-bit x86
``

https://src.fedoraproject.org/rpms/perl-Task-Catalyst/pull-request/1
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue