[Bug 1081559] perl-YAML-LibYAML bundles yaml-1.0.4

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1081559

Petr Pisar  changed:

   What|Removed |Added

  Flags|needinfo?(ppi...@redhat.com |
   |)   |



--- Comment #5 from Petr Pisar  ---
This issue is everywhere.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1081559] perl-YAML-LibYAML bundles yaml-1.0.4

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1081559

Parag AN(पराग)  changed:

   What|Removed |Added

 CC||ppi...@redhat.com
  Flags||needinfo?(ppi...@redhat.com
   ||)



--- Comment #4 from Parag AN(पराग)  ---
Can you confirm this issues is not in F24+ releases?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1081559] perl-YAML-LibYAML bundles yaml-1.0.4

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1081559

Petr Pisar  changed:

   What|Removed |Added

 Status|CLOSED  |ASSIGNED
Version|22  |23
 Resolution|EOL |---
   Keywords||Reopened



--- Comment #3 from Petr Pisar  ---
Still issue in F23 (perl-YAML-LibYAML-0.59-3.fc23).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[389-devel] Please review: Nunc-stans 51, 52, 56, 57

2016-07-19 Thread William Brown
Hi,

I'm reposting this to bring attention to these patches again. The
complete set of these patches has survive a nunc-stans stress test, and
the 24hour connection reliability test in directory server.


https://fedorahosted.org/nunc-stans/ticket/56

https://fedorahosted.org/nunc-stans/attachment/ticket/56/0002-Ticket-56-undefined-reference-to-rpl_malloc.patch

On fedora rawhide this causes the build to fail. We aren't changing the
malloc impl, and we are allowing the over-ride to malloc via the thread
pool malloc callbacks, so this check is not so important.

https://fedorahosted.org/nunc-stans/ticket/51

https://fedorahosted.org/nunc-stans/attachment/ticket/51/0001-Ticket-51-Job-rearm-should-ignore-if-ns_persist-is-s.patch

When a job is marked persistent, this means that after the event has
occurred, and we dispatch work, the job itself stays armed. Armed
meaning "accepting new work". In this case it is still registered in the
event framework, and will "just work" to accept new work.

However, if you rearm this job, it may be placed into the event_q again,
and the event framework may or may not accept the insertion of the
duplicated fd for events. At best, the event framework ignores it. At
moderate, we trigger two events for one input. At worst, we explode.

We should ignore rearm on persistent jobs as it is not needed! they stay
armed.

https://fedorahosted.org/nunc-stans/ticket/52

https://fedorahosted.org/nunc-stans/attachment/ticket/52/0004-Ticket-52-ns_job_modify-should-not-rearm.patch

When we call ns_job_modify, IE to change a READ job to a WRITE job, it
automatically rearms the job. Given that a job may have other
alterations performed before or after the ns_job_modify, this causes
issues. When the job is armed, it's moved to the queue through a set of
lock free steps. Once queued, if you change the job, there is NO
GUARANTEE about the atomicity of the change you make, whether it will
see another thread or not. Worst, it will only partially be seen.

It's certainly possible to cause an issue where a job_modify is run,
then another thread dequeues the work, and begins to work on it, while
the original thread is still changing it! Subtle race conditions.

This behaviour is surprising. The function should do one thing, and one
thing well: modifying the type.

https://fedorahosted.org/nunc-stans/ticket/57

https://fedorahosted.org/nunc-stans/attachment/ticket/57/0001-Ticket-57-Implement-a-strict-state-machine-for-nunc-.2.patch

Given the discussed issues above, to prevent and detect issues we must
enforce that jobs are in certain states so that we can act upon them
with reasonable behaviours.

A job is created as WAITING. In the WAITING state, the job is NOT in a
queue, and can be modified freely.

When the job is rearmed, it moves to ARMED. If you attempt to modify the
job, you will be denied. Only when the job is triggered IE dequeued, it
moves to WAITING and the callback trigged. The job may now be modified
and rearmed.

A job that is ARMED cannot be re-armed.

A job that is persistent, never leaves the ARMED state, IE cannot be
modified. 

A job that is ARMED cannot be deleted unless the server is shutting
down. Imagine if you free-ed a job as it was being dequeued and callback
triggering. Segfault risk. 

A job that is WAITING can me sent to done, where it will be marked as
NEEDS_DELETE. After wards, it will be moved to DELETED and freed. 

This allows us to prevent double frees (marking a job done twice), use
after free (arming a done job), race conditions (modifying armed jobs),
and many more. It gives us a solid base to assert and reason about the
correctness of jobs.


In the future, I will need to find a way to make it so that ARMED jobs
*can* be deleted, so that we can delete persistent jobs during run time.
The issue here is the way that lfds works with regards to barries of the
memory, so I will need to study this further.


I hope this makes the review process clearer, and the intent of these
changes better. 



-- 
Sincerely,

William Brown
Software Engineer
Red Hat, Brisbane


signature.asc
Description: This is a digitally signed message part
--
389-devel mailing list
389-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/389-devel@lists.fedoraproject.org


jplesnik pushed to perl-Test-Dependencies (master). "0.21 bump"

2016-07-19 Thread notifications
From 605c67d89eef81523712ccc5667d61e5b492f3a7 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Tue, 19 Jul 2016 15:43:33 +0200
Subject: 0.21 bump

---
 .gitignore |  1 +
 12-Do-not-auto-install-modules-from-CPAN.patch | 26 
 perl-Test-Dependencies.spec| 46 ++
 sources|  2 +-
 4 files changed, 23 insertions(+), 52 deletions(-)
 delete mode 100644 
Test-Dependencies-0.12-Do-not-auto-install-modules-from-CPAN.patch

diff --git a/.gitignore b/.gitignore
index bd2b408..ba7c0fd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 Test-Dependencies-0.11.tar.gz
 /Test-Dependencies-0.12.tar.gz
+/Test-Dependencies-0.21.tar.gz
diff --git a/Test-Dependencies-0.12-Do-not-auto-install-modules-from-CPAN.patch 
b/Test-Dependencies-0.12-Do-not-auto-install-modules-from-CPAN.patch
deleted file mode 100644
index 0a662be..000
--- a/Test-Dependencies-0.12-Do-not-auto-install-modules-from-CPAN.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From d0a1c478dd161e9020dd956eb1534265a80eaa35 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
-Date: Wed, 17 Jun 2015 07:32:49 +0200
-Subject: [PATCH] Do not auto-install modules from CPAN
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Petr Písař 

- Makefile.PL | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/Makefile.PL b/Makefile.PL
-index 76793d0..1a6a1e9 100644
 a/Makefile.PL
-+++ b/Makefile.PL
-@@ -18,5 +18,4 @@ build_requires('Test::Builder::Tester' => 0.64);
- 
- no_index directory => "t-data";
- 
--auto_install;
- WriteAll;
--- 
-2.1.0
-
diff --git a/perl-Test-Dependencies.spec b/perl-Test-Dependencies.spec
index d30d47d..86838cd 100644
--- a/perl-Test-Dependencies.spec
+++ b/perl-Test-Dependencies.spec
@@ -1,43 +1,41 @@
-Name:   perl-Test-Dependencies 
-Version:0.12
-Release:13%{?dist}
+Name:   perl-Test-Dependencies
+Version:0.21
+Release:1%{?dist}
 # see lib/Test/Dependencies.pm
 License:GPL+ or Artistic
 Group:  Development/Libraries
-Summary:Ensure that your Makefile.PL specifies all module dependencies 
-Source: 
http://search.cpan.org/CPAN/authors/id/Z/ZE/ZEV/Test-Dependencies-%{version}.tar.gz
 
-# Disable installing missing modules from CPAN
-Patch0: Test-Dependencies-0.12-Do-not-auto-install-modules-from-CPAN.patch
+Summary:Ensure that your Makefile.PL specifies all module dependencies
+Source: 
http://search.cpan.org/CPAN/authors/id/E/EH/EHUELS/Test-Dependencies-%{version}.tar.gz
 Url:http://search.cpan.org/dist/Test-Dependencies
 BuildArch:  noarch
+BuildRequires:  coreutils
 BuildRequires:  findutils
 BuildRequires:  make
 BuildRequires:  perl
 BuildRequires:  perl-generators
-BuildRequires:  perl(inc::Module::Install)
-BuildRequires:  perl(Module::Install::Metadata)
-BuildRequires:  perl(Module::Install::WriteAll)
+BuildRequires:  perl(CPAN::Meta::Requirements) >= 2.120620
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Module::Metadata)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
 BuildRequires:  sed
 # Run-time:
 BuildRequires:  perl(B::PerlReq)
 BuildRequires:  perl(base)
 BuildRequires:  perl(Carp)
+BuildRequires:  perl(CPAN::Meta)
 BuildRequires:  perl(Exporter)
-BuildRequires:  perl(File::Find::Rule)
+BuildRequires:  perl(File::Find::Rule::Perl)
 BuildRequires:  perl(IPC::Cmd)
 BuildRequires:  perl(Module::CoreList)
 BuildRequires:  perl(PerlReq::Utils)
 BuildRequires:  perl(Pod::Strip)
 BuildRequires:  perl(strict)
 BuildRequires:  perl(Test::Builder::Module)
-BuildRequires:  perl(warnings)
-BuildRequires:  perl(YAML)
 # Tests:
 BuildRequires:  perl(Test::Builder::Tester) >= 0.64
-BuildRequires:  perl(Test::More)
-# Optional tests:
-BuildRequires:  perl(Test::Pod) >= 1.14
-BuildRequires:  perl(Test::Pod::Coverage) >= 1.04
+BuildRequires:  perl(Test::More) >= 0.98
+BuildRequires:  perl(Test::Needs)
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 
 %description
@@ -49,34 +47,32 @@ more time but is more accurate.
 
 %prep
 %setup -q -n Test-Dependencies-%{version}
-%patch0 -p1
 # Remove bundled modules
 rm -r ./inc
 sed -i -e '/^inc\//d' MANIFEST
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor
-# Hide ExtUtils::MakeMaker dependency declaration in META.yml from
-# Test::Dependencies tests. System Module::Install::Makefile write it there
-# but Test::Dependencies ignores ./inc. This is need for unbundling ./inc.
-# CPAN RT#105285
-sed -i -e '/ExtUtils::MakeMaker:/d' META.yml
 make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
+find %{buildroot} -type f -name .packlist -delete
 %{_fixperms} %{buildroot}/*
 
 %check
 make test
 
 %files
-%doc README Changes 

jplesnik uploaded Test-Dependencies-0.21.tar.gz for perl-Test-Dependencies

2016-07-19 Thread notifications
4ab7522b9f83904b6840185271501c55  Test-Dependencies-0.21.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Test-Dependencies/Test-Dependencies-0.21.tar.gz/md5/4ab7522b9f83904b6840185271501c55/Test-Dependencies-0.21.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

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

2016-07-19 Thread updates
The following Fedora EPEL 7 Security updates need testing:
 Age  URL
 499  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-1087   
dokuwiki-0-0.24.20140929c.el7
 261  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-dac7ed832f   
mcollective-2.8.4-1.el7
 128  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-785fc9a2ea   
dropbear-2016.72-1.el7
  24  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-e0c08a1414   
php-PHPMailer-5.2.16-2.el7
   9  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-325598c9ad   
pagure-2.2.2-1.el7
   9  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-2e94f8cba5   
tcpreplay-4.1.1-2.el7
   9  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-767125139f   
python34-3.4.3-5.el7
   7  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-d85f5db77a   
php-doctrine-orm-2.4.8-1.el7
   1  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-6eebbe7e97   
p7zip-16.02-1.el7
   0  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-7913c4c81c   
breeze-icon-theme-5.24.0-1.el7 extra-cmake-modules-5.24.0-1.el7 
kf5-5.24.0-1.el7 kf5-attica-5.24.0-1.el7 kf5-baloo-5.24.0-1.el7 
kf5-bluez-qt-5.24.0-1.el7 kf5-frameworkintegration-5.24.0-1.el7 
kf5-kactivities-5.24.0-1.el7 kf5-kactivities-stats-5.24.0-1.el7 
kf5-kapidox-5.24.0-1.el7 kf5-karchive-5.24.0-1.el7 kf5-kauth-5.24.0-1.el7 
kf5-kbookmarks-5.24.0-1.el7 kf5-kcmutils-5.24.0-1.el7 kf5-kcodecs-5.24.0-1.el7 
kf5-kcompletion-5.24.0-1.el7 kf5-kconfig-5.24.0-1.el7 
kf5-kconfigwidgets-5.24.0-1.el7 kf5-kcoreaddons-5.24.0-1.el7 
kf5-kcrash-5.24.0-1.el7 kf5-kdbusaddons-5.24.0-1.el7 
kf5-kdeclarative-5.24.0-1.el7 kf5-kded-5.24.0-1.el7 
kf5-kdelibs4support-5.24.0-1.el7 kf5-kdesignerplugin-5.24.0-1.el7 
kf5-kdesu-5.24.0-1.el7 kf5-kdewebkit-5.24.0-1.el7 kf5-kdnssd-5.24.0-1.el7 
kf5-kdoctools-5.24.0-1.el7 kf5-kemoticons-5.24.0-1.el7 
kf5-kfilemetadata-5.24.0-1.el7 kf5-kglobalaccel-5.24.0-1.el7 
kf5-kguiaddons-5.24.0-1.el7 kf5-khtml
 -5.24.0-1.el7 kf5-ki18n-5.24.0-1.el7 kf5-kiconthemes-5.24.0-1.el7 
kf5-kidletime-5.24.0-1.el7 kf5-kimageformats-5.24.0-1.el7 
kf5-kinit-5.24.0-1.el7 kf5-kio-5.24.0-1.el7 kf5-kitemmodels-5.24.0-1.el7 
kf5-kitemviews-5.24.0-1.el7 kf5-kjobwidgets-5.24.0-1.el7 kf5-kjs-5.24.0-1.el7 
kf5-kjsembed-5.24.0-1.el7 kf5-kmediaplayer-5.24.0-1.el7 
kf5-knewstuff-5.24.0-1.el7 kf5-knotifications-5.24.0-1.el7 
kf5-knotifyconfig-5.24.0-1.el7 kf5-kpackage-5.24.0-1.el7 
kf5-kparts-5.24.0-1.el7 kf5-kpeople-5.24.0-1.el7 kf5-kplotting-5.24.0-1.el7 
kf5-kpty-5.24.0-1.el7 kf5-kross-5.24.0-1.el7 kf5-krunner-5.24.0-1.el7 
kf5-kservice-5.24.0-1.el7 kf5-ktexteditor-5.24.0-1.el7 
kf5-ktextwidgets-5.24.0-1.el7 kf5-kunitconversion-5.24.0-1.el7 
kf5-kwallet-5.24.0-1.el7 kf5-kwidgetsaddons-5.24.0-1.el7 
kf5-kwindowsystem-5.24.0-1.el7 kf5-kxmlgui-5.24.0-1.el7 
kf5-kxmlrpcclient-5.24.0-1.el7 kf5-modemmanager-qt-5.24.0-1.el7 
kf5-networkmanager-qt-5.24.0-1.el7 kf5-plasma-5.24.0-1.el7 
kf5-solid-5.24.0-1.el7 kf5-sonnet-5.24.0-1.el7 kf5
 -threadweaver-5.24.0-1.el7
   0  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-3a667cc289   
php-guzzlehttp-guzzle-5.3.1-1.el7


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

breeze-icon-theme-5.24.0-1.el7
composer-1.2.0-1.el7
drupal7-ctools-1.9-3.el7
extra-cmake-modules-5.24.0-1.el7
kf5-5.24.0-1.el7
kf5-attica-5.24.0-1.el7
kf5-baloo-5.24.0-1.el7
kf5-bluez-qt-5.24.0-1.el7
kf5-frameworkintegration-5.24.0-1.el7
kf5-kactivities-5.24.0-1.el7
kf5-kactivities-stats-5.24.0-1.el7
kf5-kapidox-5.24.0-1.el7
kf5-karchive-5.24.0-1.el7
kf5-kauth-5.24.0-1.el7
kf5-kbookmarks-5.24.0-1.el7
kf5-kcmutils-5.24.0-1.el7
kf5-kcodecs-5.24.0-1.el7
kf5-kcompletion-5.24.0-1.el7
kf5-kconfig-5.24.0-1.el7
kf5-kconfigwidgets-5.24.0-1.el7
kf5-kcoreaddons-5.24.0-1.el7
kf5-kcrash-5.24.0-1.el7
kf5-kdbusaddons-5.24.0-1.el7
kf5-kdeclarative-5.24.0-1.el7
kf5-kded-5.24.0-1.el7
kf5-kdelibs4support-5.24.0-1.el7
kf5-kdesignerplugin-5.24.0-1.el7
kf5-kdesu-5.24.0-1.el7
kf5-kdewebkit-5.24.0-1.el7
kf5-kdnssd-5.24.0-1.el7
kf5-kdoctools-5.24.0-1.el7
kf5-kemoticons-5.24.0-1.el7
kf5-kfilemetadata-5.24.0-1.el7
kf5-kglobalaccel-5.24.0-1.el7
kf5-kguiaddons-5.24.0-1.el7
kf5-khtml-5.24.0-1.el7
kf5-ki18n-5.24.0-1.el7
kf5-kiconthemes-5.24.0-1.el7
kf5-kidletime-5.24.0-1.el7
kf5-kimageformats-5.24.0-1.el7
kf5-kinit-5.24.0-1.el7
kf5-kio-5.24.0-1.el7
kf5-kitemmodels-5.24.0-1.el7
kf5-kitemviews-5.24.0-1.el7
kf5-kjobwidgets-5.24.0-1.el7
kf5-kjs-5.24.0-1.el7
kf5-kjsembed-5.24.0-1.el7
kf5-kmediaplayer-5.24.0-1.el7
kf5-knewstuff-5.24.0-1.el7
kf5-knotifications-5.24.0-1.el7
kf5-knotifyconfig-5.24.0-1.el7
kf5-kpackage-5.24.0-1.el7
kf5-kparts-5.24.0-1.el7
kf5-kpeople-5.24.0-1.el7
kf5-kplotting-5.24.0-1.el7
kf5-kpty-5.24.0-1.el7
kf5-kross-5.24.0-1.el7

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

2016-07-19 Thread updates
The following Fedora EPEL 6 Security updates need testing:
 Age  URL
 377  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-7031   
python-virtualenv-12.0.7-1.el6
 371  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-7168   
rubygem-crack-0.3.2-2.el6
 302  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-8156   
nagios-4.0.8-1.el6
 261  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-e2b4b5b2fb   
mcollective-2.8.4-1.el6
 233  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-35e240edd9   
thttpd-2.25b-24.el6
 125  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-8fbd838843   
dropbear-2016.72-1.el6
 118  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-30a8346813   
vtun-3.0.1-10.el6
  24  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-db7e78fac7   
php-PHPMailer-5.2.16-2.el6
  17  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-d0e444c5f2   
pypy-5.0.1-4.el6
  16  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-7a25f65890   
nginx-1.10.1-1.el6
   9  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-32abd4c903   
tcpreplay-4.1.1-2.el6
   7  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-225fc51f32   
chicken-4.11.0-2.el6
   0  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-d1c7111779   
p7zip-16.02-1.el6


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

koji-1.10.1-10.el6
p7zip-16.02-1.el6

Details about builds:



 koji-1.10.1-10.el6 (FEDORA-EPEL-2016-329d2b5077)
 Build system tools

Update Information:

update to git master upstream, add lmc cosmetic fixes add patch to disable login
in koji-web add patch to enable dns in runroot chroots




 p7zip-16.02-1.el6 (FEDORA-EPEL-2016-d1c7111779)
 Very high compression ratio file archiver

Update Information:

Update p7zip to 16.02 and fix security issues for CVE-2016-2335, CVE-2016-2334

References:

  [ 1 ] Bug #1335575 - CVE-2016-2335 p7zip: Out-of-bounds read vuilerability
https://bugzilla.redhat.com/show_bug.cgi?id=1335575
  [ 2 ] Bug #1335577 - CVE-2016-2334 p7zip: Heap-buffer-overflow vulnerability
https://bugzilla.redhat.com/show_bug.cgi?id=1335577

___
epel-devel mailing list
epel-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/epel-devel@lists.fedoraproject.org


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

2016-07-19 Thread updates
The following Fedora EPEL 5 Security updates need testing:
 Age  URL
 769  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2014-1626   
puppet-2.7.26-1.el5
 618  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2014-3849   
sblim-sfcb-1.3.8-2.el5
 261  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-edbea40516   
mcollective-2.8.4-1.el5
 233  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-582c8075e6   
thttpd-2.25b-24.el5
  16  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-c03e77f531   
nginx-1.10.1-1.el5
   9  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-61f32ecfe2   
tcpreplay-4.1.1-2.el5
   0  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-4647b0e0b7   
drupal7-ctools-1.9-2.el5


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

drupal7-ctools-1.9-2.el5

Details about builds:



 drupal7-ctools-1.9-2.el5 (FEDORA-EPEL-2016-4647b0e0b7)
 Primarily a set of APIs and tools to improve the developer experience

Update Information:

Update to upstream 1.9 release

___
epel-devel mailing list
epel-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/epel-devel@lists.fedoraproject.org


[Bug 1358058] perl-libnet-3.09 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1358058



--- Comment #2 from Upstream Release Monitoring 
 ---
Created attachment 1181868
  --> https://bugzilla.redhat.com/attachment.cgi?id=1181868=edit
Rebase-helper rebase-helper-debug.log log file.
See for details and report the eventual error to rebase-helper
https://github.com/phracek/rebase-helper/issues.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1358059] New: perl-Mojolicious-7.0 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1358059

Bug ID: 1358059
   Summary: perl-Mojolicious-7.0 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Mojolicious
  Keywords: FutureFeature, Triaged
  Assignee: emman...@seyman.fr
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: emman...@seyman.fr,
perl-devel@lists.fedoraproject.org,
robinlee.s...@gmail.com



Latest upstream release: 7.0
Current version/release in rawhide: 6.66-1.fc25
URL: http://mojolicio.us/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/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/5966/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1358058] perl-libnet-3.09 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1358058



--- Comment #3 from Upstream Release Monitoring 
 ---
Following patches has been deleted:
['libnet-3.08-Normalize-Changes-encoding.patch',
'libnet-3.08-Do-not-create-Net-libnet.cfg.patch']

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1358058] perl-libnet-3.09 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1358058



--- Comment #1 from Upstream Release Monitoring 
 ---
Patching or scratch build for perl-libnet-3.08 failed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1358058] New: perl-libnet-3.09 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1358058

Bug ID: 1358058
   Summary: perl-libnet-3.09 is available
   Product: Fedora
   Version: rawhide
 Component: perl-libnet
  Keywords: FutureFeature, Triaged
  Assignee: ppi...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com



Latest upstream release: 3.09
Current version/release in rawhide: 3.08-366.fc25
URL: http://search.cpan.org/dist/libnet/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/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/6982/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1358057] New: perl-IRI-0.006 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1358057

Bug ID: 1358057
   Summary: perl-IRI-0.006 is available
   Product: Fedora
   Version: rawhide
 Component: perl-IRI
  Keywords: FutureFeature, Triaged
  Assignee: ppi...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, ppi...@redhat.com



Latest upstream release: 0.006
Current version/release in rawhide: 0.005-2.fc25
URL: http://search.cpan.org/dist/IRI/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/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/10111/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1358053] New: perl-CGI-4.32 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1358053

Bug ID: 1358053
   Summary: perl-CGI-4.32 is available
   Product: Fedora
   Version: rawhide
 Component: perl-CGI
  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



Latest upstream release: 4.32
Current version/release in rawhide: 4.31-1.fc25
URL: http://search.cpan.org/dist/CGI/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/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/2687/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1358052] perl-CDB_File-0.99 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1358052



--- Comment #2 from Upstream Release Monitoring 
 ---
Created attachment 1181859
  --> https://bugzilla.redhat.com/attachment.cgi?id=1181859=edit
Rebase-helper rebase-helper-debug.log log file.
See for details and report the eventual error to rebase-helper
https://github.com/phracek/rebase-helper/issues.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1358052] perl-CDB_File-0.99 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1358052



--- Comment #1 from Upstream Release Monitoring 
 ---
Patching or scratch build for perl-CDB_File-0.98 failed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1358052] perl-CDB_File-0.99 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1358052



--- Comment #3 from Upstream Release Monitoring 
 ---
Patches were not touched. All were applied properly

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1358052] New: perl-CDB_File-0.99 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1358052

Bug ID: 1358052
   Summary: perl-CDB_File-0.99 is available
   Product: Fedora
   Version: rawhide
 Component: perl-CDB_File
  Keywords: FutureFeature, Triaged
  Assignee: mmcki...@umich.edu
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmcki...@umich.edu, perl-devel@lists.fedoraproject.org



Latest upstream release: 0.99
Current version/release in rawhide: 0.98-11.fc25
URL: http://search.cpan.org/dist/CDB_File/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/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/2685/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1358050] New: perl-DateTime-Format-Pg-0.16012 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1358050

Bug ID: 1358050
   Summary: perl-DateTime-Format-Pg-0.16012 is available
   Product: Fedora
   Version: rawhide
 Component: perl-DateTime-Format-Pg
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: iarn...@gmail.com, jples...@redhat.com,
perl-devel@lists.fedoraproject.org



Latest upstream release: 0.16012
Current version/release in rawhide: 0.16011-3.fc25
URL: http://search.cpan.org/dist/DateTime-Format-Pg/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/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/7087/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1165555] Request to retire perl-ZMQ-LibZMQ2

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=116

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed|2016-07-19 08:25:37 |2016-07-19 20:05:15



--- Comment #3 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Did something change with ssh-agent in F24?

2016-07-19 Thread Christopher
Previously in F23, an ssh-agent was running when I started a gnome session.
I believe (perhaps incorrectly) that this was being provided by
gnome-keyring-daemon.

Now, it appears that one isn't running. When I type "ssh-add -L", I get the
message: "Could not open a connection to your authentication agent."

Is this an expected change in behavior with F24, or is it a bug which I
should file?
(Note, there are a few bugs for F23 open about ssh-agent and gnome-keyring,
but they appear to be unrelated, and I had no problems in F23).

If it is a bug, what can I do to troubleshoot for when I file a bugzilla?

An interim solution is to launch ssh-agent, but it's somewhat less
convenient.
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


[389-devel] please review: Ticket 49830 - paged result search can hang the sever

2016-07-19 Thread Mark Reynolds
https://fedorahosted.org/389/ticket/48930

https://fedorahosted.org/389/attachment/ticket/48930/0001-Ticket-48930-Paged-result-search-can-hang-the-server.patch
--
389-devel mailing list
389-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/389-devel@lists.fedoraproject.org


Re: releng's mlt-6.2.0-3.fc25 failed to build

2016-07-19 Thread Kevin Fenzi
On Tue, 19 Jul 2016 18:40:11 +0100
Sérgio Basto  wrote:

> That is it , I got 2 releng's notifications that failed to build ,
> though that I will receive much more ... , so I decide to warning
> you. 
> 
> Let us know when we should resubmit the packages ... or if you will
> resubmit ? 

I don't think releng is going to resubmit. 

Look for https://fedorahosted.org/rel-eng/ticket/6432 to be closed and
then you can fire off a new build. 

kevin


pgpp55bJjsUEd.pgp
Description: OpenPGP digital signature
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Fedora Elections July 2016 - Voting now open

2016-07-19 Thread Justin W. Flory
The Campaign period of Elections for the Fedora Council and Fedora 
Engineering Steering Committee (FESCo) are now over. As of this morning, 
voting is now open.



== Candidate Interviews ==

There is one seat open on the Fedora Council (contested by two 
candidates) and four seats open on FESCo (contested by five candidates). 
Most candidates have published their platforms and answered questions 
from the official Questionnaire form on the Community Blog.


For your convenience, you can read this post, which lists all of the 
candidates and links to their interview (if applicable).



https://communityblog.fedoraproject.org/2016-july-elections-interviews/

Please take a moment to review the post as you prepare to vote.


== Eligibility ==

Both the Fedora Council and FESCo have different eligibility requirements.

* Fedora Council: Requires Fedora account (FAS), signed the CLA agreement
* FESCo: Requires Fedora account, signed the CLA agreement, member of 
one other "non-CLA" group in FAS


Voting takes place in the Elections application:

 https://admin.fedoraproject.org/voting/


== Voting ends: 2016 July 25, 23:59 UTC ==

Voting ends promptly on Monday, July 25, 2016, at 23:59 UTC. Voting will 
then close and candidates will be announced thereafter.


For more information about the voting process, you can review the wiki 
page for Fedora Elections.


 https://fedoraproject.org/wiki/Elections



Best of luck to all candidates running! For all voters, make sure you do 
get your vote in and participate in helping elect members of Fedora's 
leadership bodies.


--
Cheers,
Justin W. Flory
jflo...@fedoraproject.org





signature.asc
Description: OpenPGP digital signature
___
devel-announce mailing list
devel-announce@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel-announce@lists.fedoraproject.org


Fedora Elections July 2016 - Voting now open

2016-07-19 Thread Justin W. Flory
The Campaign period of Elections for the Fedora Council and Fedora 
Engineering Steering Committee (FESCo) are now over. As of this morning, 
voting is now open.



== Candidate Interviews ==

There is one seat open on the Fedora Council (contested by two 
candidates) and four seats open on FESCo (contested by five candidates). 
Most candidates have published their platforms and answered questions 
from the official Questionnaire form on the Community Blog.


For your convenience, you can read this post, which lists all of the 
candidates and links to their interview (if applicable).



https://communityblog.fedoraproject.org/2016-july-elections-interviews/

Please take a moment to review the post as you prepare to vote.


== Eligibility ==

Both the Fedora Council and FESCo have different eligibility requirements.

* Fedora Council: Requires Fedora account (FAS), signed the CLA agreement
* FESCo: Requires Fedora account, signed the CLA agreement, member of 
one other "non-CLA" group in FAS


Voting takes place in the Elections application:

 https://admin.fedoraproject.org/voting/


== Voting ends: 2016 July 25, 23:59 UTC ==

Voting ends promptly on Monday, July 25, 2016, at 23:59 UTC. Voting will 
then close and candidates will be announced thereafter.


For more information about the voting process, you can review the wiki 
page for Fedora Elections.


 https://fedoraproject.org/wiki/Elections



Best of luck to all candidates running! For all voters, make sure you do 
get your vote in and participate in helping elect members of Fedora's 
leadership bodies.


--
Cheers,
Justin W. Flory
jflo...@fedoraproject.org





signature.asc
Description: OpenPGP digital signature
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: RFC: Fixing the "nobody" user?

2016-07-19 Thread Steve Bonneville
Oron Peled wrote:
> On יום שלישי, 19 ביולי 2016 15:23:25 IDT Matthew Miller wrote:
> > ...
> > I remember when this came up before but can't find it now. I think it
> > was changed to 99 when UIDs went to 32 bit and it suddenly started
> > being 65535 on some systems and 4294967295 on others. * I was trying to
> > figure out why 99 was eventually chosen, but can't find it now.
> 
> I believe the uid 99 come from trying not to overlap regular users.
> Back then (end of 90's), regular users uid's were:
>  * On old RedHat Linux >= 500
>  * On some other Linux systems >= 1000
>  * On many legacy Unices >= 100 (except on Irix >= 1000)
> 
> It was very common to have NFS mounted /home across all servers (with 
> different *NIX vendors/versions).
> So '99' was the "last" uid that was assured not to collide with uid's of 
> regular users on NFS.

Solaris and IRIX used to have 60001 as nobody, *and* either -2 or 65534
as nobody, either under the same name (!!!) or some alternative similar
to nfsnobody.  

I don't think you want to assume that code thinks the two users are 
really identical in practice or that it's safe to merge them, though. 

  -- Steve

-- 
Steven Bonneville 
Technical Curriculum Architect  
Red Hat | Red Hat Training   Phone: +1-612-638-0507
gpg: 1024D/221D06FF  68B1 3E66 A351 6485 B9AF  24D8 3DF5 B50B 221D 06FF
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: notion of base or minimal image

2016-07-19 Thread Oron Peled
On יום שלישי, 19 ביולי 2016 9:20:41 IDT Colin Walters wrote:
> On Tue, Jul 19, 2016, at 07:32 AM, Nikos Mavrogiannopoulos wrote:
> > Hi,
> >  Is there some notion or definition of a Fedora minimal or base image?
> 
> A lot depends on whether "image" is a container or OS, which mostly
> boils down to "contains a kernel".

That's a good start, but I think it could be (usefully) refined.

Here is an example taxonomy:
   |
   +- Minimal Container (enough for chroot or entering into shell in container)
  |
  +- Minimal Build Container (Minimal Container + )
  |
  +- Minimal Bootable Container (Minimal Container + systemd)
 |
 +- Minimal OS VM (Minimal Bootable Container + kernel + boot-loader)
|
+- Minimal OS Metal (Minimal OS VM + udev + 
)

Sounds reasonable?
 * Should we assign '@' for each of these combinations?
 * What about ? (x86*, arm*)
 * What about some  package (similar to Debian)
   so there's a centralized definition for all implicit build
   dependencies (gcc, make, etc.) which should not be specified in 
"Build-Requires".
 * Other categories? Something that breaks this taxonomy?

Thanks,

-- 
Oron Peled Voice: +972-4-8228492
o...@actcom.co.il  http://users.actcom.co.il/~oron

The most exciting phrase to hear in science, the one that heralds new
 discoveries, is not "Eureka!" (I found it!) but "That's funny ..."
 -- Isaac Asimov
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


[Bug 1165555] Request to retire perl-ZMQ-LibZMQ2

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=116

Thomas Spura  changed:

   What|Removed |Added

 Status|CLOSED  |NEW
 Resolution|EOL |---
   Keywords||Reopened



-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1268778] CVE-2015-7686 perl-Email-Address: denial of service when parsing crafted email address list [fedora-all]

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1268778

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 16:39:13



--- Comment #3 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1268777] CVE-2015-7686 perl-Email-Address: denial of service when parsing crafted email address list

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1268777
Bug 1268777 depends on bug 1268778, which changed state.

Bug 1268778 Summary: CVE-2015-7686 perl-Email-Address: denial of service when 
parsing crafted email address list [fedora-all]
https://bugzilla.redhat.com/show_bug.cgi?id=1268778

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL



-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Re: F25 System Wide Change: KillUserProcesses=yes by default

2016-07-19 Thread Zbigniew Jędrzejewski-Szmek
On Sun, Jul 17, 2016 at 12:17:49AM +0200, Björn Persson wrote:
> Nico Kadel-Garcia wrote:
> > On Fri, Jul 15, 2016 at 12:34 PM, Lennart Poettering
> >  wrote:
> > > We can meet in the middle and make this LOG_NOTICE. That's not the
> > > usual LOG_INFO, but also not the higher LOG_WARNING.
> > 
> > Just to verify: I assume you mean that the killing of these processes
> > would normally emit a "LOG_NOTICE". message.
> 
> Do I understand correctly that KillUserProcesses is meant to be a safety
> net to catch processes that should have terminated when the user logged
> out, but failed to do so?
Yes, we usually expect user processes to exit on their own. But
it's quite likely that this kind of mistake will happen quite
often. Also, some users might simply take advantage of the fact that
this safety net is present and leave processes around. Either way,
it's not very clearly cut, and logging at error level would probably
be quite annoying.

But adjusting the log level is a very simple change, so we can start
at notice level (which by default will end up in logs, but will not be
too obnoxious), and adjust up (if in the common case we get no output)
or down (if in the common case we get too many logs).

Zbyszek
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


[Bug 1047282] SELinux is preventing /usr/bin/perl from 'append' accesses on the file .

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1047282

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 16:27:47



--- Comment #14 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Re: RFC: Fixing the "nobody" user?

2016-07-19 Thread Oron Peled
On יום שלישי, 19 ביולי 2016 15:23:25 IDT Matthew Miller wrote:
> ...
> I remember when this came up before but can't find it now. I think it
> was changed to 99 when UIDs went to 32 bit and it suddenly started
> being 65535 on some systems and 4294967295 on others. * I was trying to
> figure out why 99 was eventually chosen, but can't find it now.

I believe the uid 99 come from trying not to overlap regular users.
Back then (end of 90's), regular users uid's were:
 * On old RedHat Linux >= 500
 * On some other Linux systems >= 1000
 * On many legacy Unices >= 100 (except on Irix >= 1000)

It was very common to have NFS mounted /home across all servers (with different 
*NIX vendors/versions).
So '99' was the "last" uid that was assured not to collide with uid's of 
regular users on NFS.

-- 
Oron Peled Voice: +972-4-8228492
o...@actcom.co.il  http://users.actcom.co.il/~oron

No, You Can't Have My Rights, I'm Still Using Them
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


[Bug 1335443] Net::SSLeay produces a warning on EOF

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1335443

Fedora End Of Life  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 16:16:43



--- Comment #2 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1101265] Add an LWP command line option and an environment variable to disable certificate validation

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1101265

Fedora End Of Life  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 16:20:13



--- Comment #3 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Re: Bodhi takes days to get something pushed to testing

2016-07-19 Thread Kevin Fenzi
On Tue, 19 Jul 2016 12:58:06 -0700
"Gerald B. Cox"  wrote:

> I guess that begs the question of what is happening that can't be
> automated.  Seems that if the build
> is successful and the packager then pushes to the testing repository,
> that should be something that
> could be automated.

Currently package signing is not fully automated. It takes an
authorized human who has been granted access and their passphrase(s) to
sign things. 

There is some work ongoing to setup an autosigner process, but we want
to make sure it's setup correctly and in such a way thats it's not
insecure or easy to subvert. 

kevin


pgpw0G3osVOeU.pgp
Description: OpenPGP digital signature
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: Bodhi takes days to get something pushed to testing

2016-07-19 Thread Gerald B. Cox
On Tue, Jul 19, 2016 at 12:15 PM, Dennis Gilmore  wrote:

> I never push updates on weekends. the person pushing may or may not push
> them
> on weekends I would say updates pushes on weekends are not expected and
> are a
> bonus if they do happen.
>

I guess that begs the question of what is happening that can't be
automated.  Seems that if the build
is successful and the packager then pushes to the testing repository, that
should be something that
could be automated.
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: RFC: Fixing the "nobody" user?

2016-07-19 Thread Matthew Miller
On Mon, Jul 18, 2016 at 10:18:49AM -0400, Stephen John Smoogen wrote:
> > I'd like to start a discussion regarding the "nobody" user on Fedora,
> > and propose that we change its definition sooner or later. I am not
> > proposing a feature according to the feature process for this yet, but
> > my hope is that these discussions will lead to one eventually.
> I am not against this proposal. It has been tried at least once before
> in the past but those failed due to a lot of programs secretly relying
> on the seperate uids and not a lot of people being able to fix it.
> 
> I am not 100% certain that it was mostly 99 due to issues with various
> network authentication systems from long ago. (ypbind/ldap/etc) where

I remember when this came up before but can't find it now. I think it
was changed to 99 when UIDs went to 32 bit and it suddenly started
being 65535 on some systems and 4294967295 on others. * I was trying to
figure out why 99 was eventually chosen, but can't find it now.

In any case, the regularization makes sense to me.









* At $formeruniversity, we had someone who was trying to back up
/var/log without any special handling for sparse files and they
suddenly got very surprised and upset when lastlog became "gigantic".
Ah, good times.

-- 
Matthew Miller

Fedora Project Leader
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: Bodhi takes days to get something pushed to testing

2016-07-19 Thread Dennis Gilmore
On Monday, July 18, 2016 4:47:40 PM CDT Kevin Fenzi wrote:
> On Mon, 18 Jul 2016 15:05:56 -0700
> 
> "Gerald B. Cox"  wrote:
> > On Mon, Jul 18, 2016 at 2:57 PM, Kevin Fenzi  wrote:
> > > I could tell you more about your specific updates if you list
> > > them...
> > 
> > https://bodhi.fedoraproject.org/updates/FEDORA-2016-db2fbe6854
> > https://bodhi.fedoraproject.org/updates/FEDORA-2016-579b837594
> > 
> > Thanks for the info I was wanting to make sure it wasn't
> > something I was doing wrong which
> > was holding things up...
> 
> Nope, nothing on your side. Looks like there was a push late saturday
> and your updates just missed that, and there wasn't one sunday for some
> reason so they went out in the one I started this morning.
> 
> It was a little less than 2 days there, not 3 or more though.
> 
> kevin

I never push updates on weekends. the person pushing may or may not push them 
on weekends I would say updates pushes on weekends are not expected and are a 
bonus if they do happen.

Dennis
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: notion of base or minimal image

2016-07-19 Thread Dennis Gilmore
On Tuesday, July 19, 2016 9:20:41 AM CDT Colin Walters wrote:
> On Tue, Jul 19, 2016, at 07:32 AM, Nikos Mavrogiannopoulos wrote:
> > Hi,
> >  Is there some notion or definition of a Fedora minimal or base image?
> 
> A lot depends on whether "image" is a container or OS, which mostly
> boils down to "contains a kernel".
> 
> For containers I would look at:
> 
> `docker run --rm -ti fedora:23 bash`
> as well as the rootfs produced by:
> yum install @buildsys-build

this is not a very useful case as it pulls in rpm-build, gcc, gcc-c++ and a 
bunch of tolols that are needed in teh minimal build environment but not the 
minimal runtime environmnet a better group to use would be core  so 
yum install @core however it is more than is in the docker base images.  you 
could look at the kickstarts https://pagure.io/fedora-kickstarts/  there is a 
minimal arm image thats fairly small and minimal, would not be hard to make a 
x86 version of it.

Dennis

> For OS images:
>  - The Anaconda ISO
>  - Atomic Host
> --
> devel mailing list
> devel@lists.fedoraproject.org
> https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org

--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


[Bug 1081559] perl-YAML-LibYAML bundles yaml-1.0.4

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1081559

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 15:01:35



--- Comment #2 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1281886] selinux causes RT to prevent httpd from starting

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1281886

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 14:28:08



--- Comment #1 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Re: releng's mlt-6.2.0-3.fc25 failed to build

2016-07-19 Thread Sérgio Basto
On Ter, 2016-07-19 at 11:12 -0600, Kevin Fenzi wrote:
> On Tue, 19 Jul 2016 11:05:38 -0600
> Kevin Fenzi  wrote:
> 
> > 
> > On Tue, 19 Jul 2016 16:10:06 +0100
> > Sérgio Basto  wrote:
> > 
> > > 
> > > DEBUG util.py:417:  Error: nothing provides
> > > libpoppler.so.60()(64bit) needed by gdal-libs-2.1.0-6.fc25.x86_64
> > > DEBUG util.py:417:  (try to add '--allowerasing' to command line
> > > to
> > > replace conflicting packages)
> > > DEBUG util.py:542:  Child return code was: 1  
> > Yes? Can you elaborate on what you are wanting or trying to say
> > here?
> > 
> > Whats the question?



> > mlt was rebuilt as part of
> > https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Pytho
> > n_RPM_Packages
> > but it failed due to gdal being broken by a recent poppler update. 

> > It looks like gdal is fixed now, so you could just resubmit this
> > build.
> Actually no, it's only been rebuilt/fixed in the f25-python side-
> tag. 
> Wait until thats pulled into the main rawhide (later today) before
> resubmitting. 

That is it , I got 2 releng's notifications that failed to build ,
though that I will receive much more ... , so I decide to warning you. 

Let us know when we should resubmit the packages ... or if you will
resubmit ? 

Thanks.

> kevin
> 
> --
> devel mailing list
> devel@lists.fedoraproject.org
> https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject
> .org
-- 
Sérgio M. B.

--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


[Test-Announce] Fedora 22 End Of Life

2016-07-19 Thread Mohan Boddu
As of the 19th of July 2016, Fedora 22 has reached its end of life for
updates and support. No further updates, including security updates,
will be available for Fedora 22. A previous reminder was sent on 22nd
of June [0]. Fedora 23 will continue to receive updates until
approximately one month after the release of Fedora 25. The
maintenance schedule of Fedora releases is documented on the Fedora
Project wiki [1]. The Fedora Project wiki also contains instructions
[2] on how to upgrade from a previous release of Fedora to a version
receiving updates.

Mohan Boddu.

[0] 
https://lists.fedoraproject.org/archives/list/annou...@lists.fedoraproject.org/thread/4FBGGXFXRMU5GHT6OSSNOYVPMONZDWSD/
[1] 
https://fedoraproject.org/wiki/Fedora_Release_Life_Cycle#Maintenance_Schedule
[2] https://fedoraproject.org/wiki/Upgrading?rd=DistributionUpgrades
___
test-announce mailing list
test-annou...@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/test-annou...@lists.fedoraproject.org
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Fedora 22 End Of Life

2016-07-19 Thread Mohan Boddu
As of the 19th of July 2016, Fedora 22 has reached its end of life for
updates and support. No further updates, including security updates,
will be available for Fedora 22. A previous reminder was sent on 22nd
of June [0]. Fedora 23 will continue to receive updates until
approximately one month after the release of Fedora 25. The
maintenance schedule of Fedora releases is documented on the Fedora
Project wiki [1]. The Fedora Project wiki also contains instructions
[2] on how to upgrade from a previous release of Fedora to a version
receiving updates.

Mohan Boddu.

[0] 
https://lists.fedoraproject.org/archives/list/annou...@lists.fedoraproject.org/thread/4FBGGXFXRMU5GHT6OSSNOYVPMONZDWSD/
[1] 
https://fedoraproject.org/wiki/Fedora_Release_Life_Cycle#Maintenance_Schedule
[2] https://fedoraproject.org/wiki/Upgrading?rd=DistributionUpgrades
___
devel-announce mailing list
devel-annou...@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel-annou...@lists.fedoraproject.org
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: releng's mlt-6.2.0-3.fc25 failed to build

2016-07-19 Thread Kevin Fenzi
On Tue, 19 Jul 2016 11:05:38 -0600
Kevin Fenzi  wrote:

> On Tue, 19 Jul 2016 16:10:06 +0100
> Sérgio Basto  wrote:
> 
> > DEBUG util.py:417:  Error: nothing provides
> > libpoppler.so.60()(64bit) needed by gdal-libs-2.1.0-6.fc25.x86_64
> > DEBUG util.py:417:  (try to add '--allowerasing' to command line to
> > replace conflicting packages)
> > DEBUG util.py:542:  Child return code was: 1  
> 
> Yes? Can you elaborate on what you are wanting or trying to say here?
> 
> Whats the question?
> 
> mlt was rebuilt as part of
> https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
> but it failed due to gdal being broken by a recent poppler update. 
> 
> It looks like gdal is fixed now, so you could just resubmit this
> build.

Actually no, it's only been rebuilt/fixed in the f25-python side-tag. 
Wait until thats pulled into the main rawhide (later today) before
resubmitting. 

kevin



pgpF8ct9pSDqZ.pgp
Description: OpenPGP digital signature
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: releng's mlt-6.2.0-3.fc25 failed to build

2016-07-19 Thread Kevin Fenzi
On Tue, 19 Jul 2016 16:10:06 +0100
Sérgio Basto  wrote:

> DEBUG util.py:417:  Error: nothing provides libpoppler.so.60()(64bit)
> needed by gdal-libs-2.1.0-6.fc25.x86_64
> DEBUG util.py:417:  (try to add '--allowerasing' to command line to
> replace conflicting packages)
> DEBUG util.py:542:  Child return code was: 1

Yes? Can you elaborate on what you are wanting or trying to say here?

Whats the question?

mlt was rebuilt as part of
https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
but it failed due to gdal being broken by a recent poppler update. 

It looks like gdal is fixed now, so you could just resubmit this build.

kevin
--
> 
> 
> On Ter, 2016-07-19 at 13:20 +, notificati...@fedoraproject.org
> wrote:
> > Package:mlt-6.2.0-3.fc25
> > Status: failed
> > Built by:   releng
> > ID: 781765
> > Started:Tue, 19 Jul 2016 08:45:59 UTC
> > Finished:   Tue, 19 Jul 2016 09:09:36 UTC
> > 
> > Closed tasks:
> > -
> > Task 14940864 on buildppc-02.phx2.fedoraproject.org
> > Task Type: build (noarch)
> > Link: https://koji.fedoraproject.org/koji/taskinfo?taskID=14940864
> > 
> > error building package (arch x86_64), mock exited with status 30;
> > see root.log for more information
> > 
> > Task 14941380 on arm04-builder06.arm.fedoraproject.org
> > Task Type: buildSRPMFromSCM (noarch)
> > Link: https://koji.fedoraproject.org/koji/taskinfo?taskID=14941380
> > logs:
> >   https://kojipkgs.fedoraproject.org/work/tasks/1380/14941380/root.lo
> > g
> >   https://kojipkgs.fedoraproject.org/work/tasks/1380/14941380/state.l
> > og
> >   https://kojipkgs.fedoraproject.org/work/tasks/1380/14941380/build.l
> > og
> > srpm:
> >   https://kojipkgs.fedoraproject.org/work/tasks/1380/14941380/mlt-6.2
> > .0-3.fc25.src.rpm
> > 
> > Task 14941915 on buildvm-24.phx2.fedoraproject.org
> > Task Type: buildArch (x86_64)
> > Link: https://koji.fedoraproject.org/koji/taskinfo?taskID=14941915
> > 
> > error building package (arch x86_64), mock exited with status 30;
> > see root.log for more information
> > 
> > Task 14941914 on arm02-builder10.arm.fedoraproject.org
> > Task Type: buildArch (armhfp)
> > Link: https://koji.fedoraproject.org/koji/taskinfo?taskID=14941914
> > 
> > Task 14941914 is canceled
> > 
> > Task 14941916 on buildhw-03.phx2.fedoraproject.org
> > Task Type: buildArch (i386)
> > Link: https://koji.fedoraproject.org/koji/taskinfo?taskID=14941916
> > 
> > Task 14941916 is canceled
> > 
> > http://koji.fedoraproject.org/koji/buildinfo?buildID=781765
> > 
> > --
> > You received this message due to your preference settings at
> > https://apps.fedoraproject.org/notifications/sergiomb.id.fedoraprojec
> > t.org/email/30349  



pgptV2n0swkOp.pgp
Description: OpenPGP digital signature
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: Bodhi takes days to get something pushed to testing

2016-07-19 Thread Kevin Fenzi
On Tue, 19 Jul 2016 11:30:30 +0200
Thomas Moschny  wrote:

> 2016-07-18 23:57 GMT+02:00 Kevin Fenzi :
> > I could tell you more about your specific updates if you list
> > them...  
> 
> This one took a bit more than 6 days from submission to testing:
> https://bodhi.fedoraproject.org/updates/FEDORA-2016-e5b5fbfa86

Yep. This is one of the other cases where something happened. :) 

So, when we first started doing atomic updates in bodhi composes we ran
into some problems with f22-updates-testing. Some were server (selinux,
etc), some were bodhi, some were rpm-ostree. In debugging and trying to
fix that we added a side repo with a newer rpm-ostree. This allowed us
to interate quickly without having to officially build and submit
rpm-ostree updates. We got everything composing and moved on. 

Last week however we were adding the f24-updates and
f24-updates-testing atomic updates and when doing so noticed we still
had the old side repo enabled for f22-updates-testing. This was
removed/disabled. However, things broke again there (only in
f22-updates-testing, which your update above was in). Making things
more difficult, many releng folks were on vacation that week (I was).

Finally we got it fixed up by unpushing a rpm-ostree update that was
sitting in f22-updates-testing for a year, re-enabling the side repo
and doing a compose, then disabling it again.

This took some of my saturday morning (to see what was going on), then
discussion in the releng meeting monday morning to come up with a plan
to fix things up, then the actual fix monday. 

kevin


pgpqZqqa_J1e5.pgp
Description: OpenPGP digital signature
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: RFC: Fixing the "nobody" user?

2016-07-19 Thread Simo Sorce
On Tue, 2016-07-19 at 07:39 -0400, Nico Kadel-Garcia wrote:
> Like I said, I'm thinking of "rsync", "tar", and "star". Also,
> people do some interesting scripting to detect things like failed
> NFS configurations. I'm not saying that's a blocker, but shifting it
> to overlap with the current "nfsnobody" is likely to break some
> people's tools in the field, especially if they run the latest Fedora
> alongside RHEL, CentOS,  or previous Fedora releases.

The breakage for some will be un-breakage for someone else, and being
consistent with the kernel point of view and other distributions, in
this case, is more important IMO.

Simo.
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: RFC: Fixing the "nobody" user?

2016-07-19 Thread Simo Sorce
On Mon, 2016-07-18 at 14:39 +0200, Lennart Poettering wrote:
> Heya!
> 
> I'd like to start a discussion regarding the "nobody" user on Fedora,
> and propose that we change its definition sooner or later. I am not
> proposing a feature according to the feature process for this yet,
> but
> my hope is that these discussions will lead to one eventually.
> 
> Most distributions (in particular Debian/Ubuntu-based ones) map the
> user "nobody" to UID 65534. I think we should change Fedora to do the
> same. Background:
> 
> On Linux two UIDs are special: that's UID 0 for root, which is the
> privileged user we all know. And then there's UID 65534
> (i.e. (uint16_t) -2), which is less well known. The Linux kernel
> calls
> it the "overflow" UID. It has four purposes:
> 
> 1. The kernel maps UIDs > 65535 to it when when some subsystem/API/fs
>    only supports 16bit UIDs, but a 32bit UID is passed to it.
> 
> 2. it's used by the kernel's user namespacing as a the internal UID
>    that external UIDs are mapped to that don't have any local
> mapping.
> 
> 3. It's used by NFS for all user IDs that cannot be mapped locally if
>    UID mapping is enabled.
> 
> 4. One upon a time some system daemons chose to run as the "nobody"
>    user, instead of a proper system user of their own. But this is
>    universally frowned upon, and isn't done on any current systems
>    afaics. In fact, to my knowledge Fedora even prohibits this
>    explicitly in its policy (?).
> 
> The uses 1-3 are relevant today, use 4 is clearly obsolete
> afaics. Uses 1-3 can be subsumed pretty nicely as "the UID something
> that cannot be mapped properly is mapped to".
> 
> On Fedora, we currently have a "nobody" user that is defined to UID
> 99. It's defined unconditionally like this. To my knowledge there's
> no
> actual use of this user at all in Fedora however. The UID 65514
> carries no name by default on Fedora, but as soon as you install the
> NFS utils it gets mapped to the "nfsnobody" user name, misleadingly
> indicating that it would be used only by NFS even though it's a much
> more general concept. I figure the NFS guys adopted the name
> "nfsnobody" for this, simply because "nobody" was already taken by
> UID
> 99 on Fedora, unlike on other distributions.
> 
> In the context of user namespacing the UID 65534 appears a lot more
> often as owner of various files. For example, if you turn on user
> namespacing in typical container managers you'll notice that a ton of
> files in /proc will then be owned by this user. Very confusingly, in
> a
> container that includes the NFS utils all those files actually show
> up
> as "nfsnobody"-owned now, even though there's no relation to NFS at
> all
> for them.
> 
> I'd like to propose that we clean this up, and just make Fedora work
> like all other distributions. After all the reason of having this
> special UID in the first place is to sidestep mapping problems
> between
> different UID "realms". Hence I think it would be wise to at least
> make the name of this very special UID somewhat more stable and
> well-defined between distributions.
> 
> I think this is of particular relevance as Debian/Ubuntu-based
> container images tend to be substantially more popular than
> Fedora-based ones, and hence I think we should try to unify at least
> the names and semantics of the two special UIDs all distros have, to
> minimize mapping problems and making user interaction in containers a
> bit more friendly.
> 
> You might ask of course, why Fedora should change to adopt
> Debian's/Ubuntu's definition, instead of conversely making them adopt
> Fedora's definition? Well, that's simple: Debian's definition makes a
> lot more sense than Fedora's. And nothing we ship actually makes use
> of FEdora's definition afaics, and we currently carry a workaround
> called "nfsnobody" in some cases to avoid having to fix this
> properly.
> 
> Another option would be to define an entirely new user name for
> 65534,
> for example "void" or so. But quite frankly, that sounds like a
> pointless bikeshedding excercise, and creates even more confusion,
> balkanization and political hassles if you'd try to convince other
> distros to adopt the same scheme too.
> 
> Hence, let's go for "nobody == 65534" on Fedora too! And let's unify
> the various dsitributions a tiny bit more, on this specific aspect.
> 
> How could a transition look like? I figure new installs should get
> "nobody" defined to 65534. Old installs should keep the old
> definitions in place instead. The NFS packages should be updated to
> not create the "nfsnobody" user if there's already another user
> mapped
> to 65534 (maybe it already does that?). Of course it's not pretty if
> old and new systems use different definitions for this user, but I
> think it's not too much of a real-life issue, as most code that
> refers
> to this group already does so by UID instead of name, simply because
> the name is not stable across distributions.
> 
> Opinions?

+1,

Re: releng's mlt-6.2.0-3.fc25 failed to build

2016-07-19 Thread Sérgio Basto
DEBUG util.py:417:  Error: nothing provides libpoppler.so.60()(64bit)
needed by gdal-libs-2.1.0-6.fc25.x86_64
DEBUG util.py:417:  (try to add '--allowerasing' to command line to
replace conflicting packages)
DEBUG util.py:542:  Child return code was: 1



On Ter, 2016-07-19 at 13:20 +, notificati...@fedoraproject.org
wrote:
> Package:mlt-6.2.0-3.fc25
> Status: failed
> Built by:   releng
> ID: 781765
> Started:Tue, 19 Jul 2016 08:45:59 UTC
> Finished:   Tue, 19 Jul 2016 09:09:36 UTC
> 
> Closed tasks:
> -
> Task 14940864 on buildppc-02.phx2.fedoraproject.org
> Task Type: build (noarch)
> Link: https://koji.fedoraproject.org/koji/taskinfo?taskID=14940864
> 
> error building package (arch x86_64), mock exited with status 30; see
> root.log for more information
> 
> Task 14941380 on arm04-builder06.arm.fedoraproject.org
> Task Type: buildSRPMFromSCM (noarch)
> Link: https://koji.fedoraproject.org/koji/taskinfo?taskID=14941380
> logs:
>   https://kojipkgs.fedoraproject.org/work/tasks/1380/14941380/root.lo
> g
>   https://kojipkgs.fedoraproject.org/work/tasks/1380/14941380/state.l
> og
>   https://kojipkgs.fedoraproject.org/work/tasks/1380/14941380/build.l
> og
> srpm:
>   https://kojipkgs.fedoraproject.org/work/tasks/1380/14941380/mlt-6.2
> .0-3.fc25.src.rpm
> 
> Task 14941915 on buildvm-24.phx2.fedoraproject.org
> Task Type: buildArch (x86_64)
> Link: https://koji.fedoraproject.org/koji/taskinfo?taskID=14941915
> 
> error building package (arch x86_64), mock exited with status 30; see
> root.log for more information
> 
> Task 14941914 on arm02-builder10.arm.fedoraproject.org
> Task Type: buildArch (armhfp)
> Link: https://koji.fedoraproject.org/koji/taskinfo?taskID=14941914
> 
> Task 14941914 is canceled
> 
> Task 14941916 on buildhw-03.phx2.fedoraproject.org
> Task Type: buildArch (i386)
> Link: https://koji.fedoraproject.org/koji/taskinfo?taskID=14941916
> 
> Task 14941916 is canceled
> 
>   http://koji.fedoraproject.org/koji/buildinfo?buildID=781765
> 
> --
> You received this message due to your preference settings at
> https://apps.fedoraproject.org/notifications/sergiomb.id.fedoraprojec
> t.org/email/30349
-- 
Sérgio M. B.

--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


pghmcfc pushed to perl-Test-Simple (perl-Test-Simple-1.302045-1.fc25). "Update to 1.302045 (..more)"

2016-07-19 Thread notifications
From bcb9a894af9979342470d1bd100888de742fa5a9 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Tue, 19 Jul 2016 10:28:47 +0100
Subject: Update to 1.302045

- New upstream release 1.302045
  - Work around IPC bug on windows
  - Fix IPC event ordering bug
  - Fix TODO in mixed T2/TB subtests
  - Fix test that segv'd on older perls
---
 perl-Test-Simple.spec | 9 -
 sources   | 2 +-
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/perl-Test-Simple.spec b/perl-Test-Simple.spec
index 6aa0d05..1578db2 100644
--- a/perl-Test-Simple.spec
+++ b/perl-Test-Simple.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Simple
 Summary:Basic utilities for writing tests
-Version:1.302040
+Version:1.302045
 Release:1%{?dist}
 # CC0: lib/ok.pm
 # Public Domain: lib/Test/Tutorial.pod
@@ -149,6 +149,13 @@ make test AUTHOR_TESTING=1
 %{_mandir}/man3/Test2::Util::Trace.3*
 
 %changelog
+* Tue Jul 19 2016 Paul Howarth  - 1.302045-1
+- Update to 1.302045
+  - Work around IPC bug on windows
+  - Fix IPC event ordering bug
+  - Fix TODO in mixed T2/TB subtests
+  - Fix test that segv'd on older perls
+
 * Sun Jul 10 2016 Paul Howarth  - 1.302040-1
 - Update to 1.302040
   - Fix broken MANIFEST.SKIP entries (#689)
diff --git a/sources b/sources
index 2cebeda..0780b6a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a228959d58c2105d858518a12605ac15  Test-Simple-1.302040.tar.gz
+3763d5858569ff7b2f3d4e285479050f  Test-Simple-1.302045.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Test-Simple.git/commit/?h=perl-Test-Simple-1.302045-1.fc25=bcb9a894af9979342470d1bd100888de742fa5a9
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

pghmcfc pushed to perl-Test-Simple (master). "Update to 1.302045 (..more)"

2016-07-19 Thread notifications
From bcb9a894af9979342470d1bd100888de742fa5a9 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Tue, 19 Jul 2016 10:28:47 +0100
Subject: Update to 1.302045

- New upstream release 1.302045
  - Work around IPC bug on windows
  - Fix IPC event ordering bug
  - Fix TODO in mixed T2/TB subtests
  - Fix test that segv'd on older perls
---
 perl-Test-Simple.spec | 9 -
 sources   | 2 +-
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/perl-Test-Simple.spec b/perl-Test-Simple.spec
index 6aa0d05..1578db2 100644
--- a/perl-Test-Simple.spec
+++ b/perl-Test-Simple.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Simple
 Summary:Basic utilities for writing tests
-Version:1.302040
+Version:1.302045
 Release:1%{?dist}
 # CC0: lib/ok.pm
 # Public Domain: lib/Test/Tutorial.pod
@@ -149,6 +149,13 @@ make test AUTHOR_TESTING=1
 %{_mandir}/man3/Test2::Util::Trace.3*
 
 %changelog
+* Tue Jul 19 2016 Paul Howarth  - 1.302045-1
+- Update to 1.302045
+  - Work around IPC bug on windows
+  - Fix IPC event ordering bug
+  - Fix TODO in mixed T2/TB subtests
+  - Fix test that segv'd on older perls
+
 * Sun Jul 10 2016 Paul Howarth  - 1.302040-1
 - Update to 1.302040
   - Fix broken MANIFEST.SKIP entries (#689)
diff --git a/sources b/sources
index 2cebeda..0780b6a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a228959d58c2105d858518a12605ac15  Test-Simple-1.302040.tar.gz
+3763d5858569ff7b2f3d4e285479050f  Test-Simple-1.302045.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Test-Simple.git/commit/?h=master=bcb9a894af9979342470d1bd100888de742fa5a9
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

pghmcfc uploaded Test-Simple-1.302045.tar.gz for perl-Test-Simple

2016-07-19 Thread notifications
3763d5858569ff7b2f3d4e285479050f  Test-Simple-1.302045.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Test-Simple/Test-Simple-1.302045.tar.gz/md5/3763d5858569ff7b2f3d4e285479050f/Test-Simple-1.302045.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1214130] Broken dependency perl-Carp-1.36-1.fc21.noarch requires perl-4: 5.18.4-308.fc21.x86_64 on upgrade to F22

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1214130

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 09:49:15



--- Comment #6 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1352595] perl-Test-Dependencies-0.21 is available

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1352595

Jitka Plesnikova  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Test-Dependencies-0.21
   ||-1.fc25
 Resolution|--- |RAWHIDE
Last Closed||2016-07-19 09:47:41



-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1210614] Shell command injection in c2ph tool

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1210614

Petr Pisar  changed:

   What|Removed |Added

 Status|CLOSED  |ASSIGNED
Version|22  |23
 Resolution|EOL |---
   Keywords||Reopened



--- Comment #4 from Petr Pisar  ---
Still issue in F23 (perl-5.22.2-353.fc23.x86_64).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1210614] Shell command injection in c2ph tool

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1210614

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 09:41:04



--- Comment #3 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Re: notion of base or minimal image

2016-07-19 Thread Richard W.M. Jones
On Tue, Jul 19, 2016 at 01:32:36PM +0200, Nikos Mavrogiannopoulos wrote:
> Hi,
>  Is there some notion or definition of a Fedora minimal or base image?
> I couldn't find some documentation on that. I would like to modify some
> script which a package on the critical path depends on, from bash to
> perl and I would like to understand whether that could affect any
> fedora images.

When making virt-builder templates we install only packages from @core
(and their dependencies obviously).  Here is the script we use:

https://github.com/libguestfs/libguestfs/blob/master/builder/website/fedora.sh#L65

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
Fedora Windows cross-compiler. Compile Windows programs, test, and
build Windows installers. Over 100 libraries supported.
http://fedoraproject.org/wiki/MinGW
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: notion of base or minimal image

2016-07-19 Thread Stephen Gallagher
On 07/19/2016 07:32 AM, Nikos Mavrogiannopoulos wrote:
> Hi,
>  Is there some notion or definition of a Fedora minimal or base image?
> I couldn't find some documentation on that. I would like to modify some
> script which a package on the critical path depends on, from bash to
> perl and I would like to understand whether that could affect any
> fedora images.
> 

This definition is supposed to be one of the direct deliverables of the
Modularity WG, so I'd direct you to talk to them (CCing Langdon from that team).




signature.asc
Description: OpenPGP digital signature
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: notion of base or minimal image

2016-07-19 Thread Colin Walters


On Tue, Jul 19, 2016, at 07:32 AM, Nikos Mavrogiannopoulos wrote:
> Hi,
>  Is there some notion or definition of a Fedora minimal or base image?

A lot depends on whether "image" is a container or OS, which mostly
boils down to "contains a kernel".

For containers I would look at:

`docker run --rm -ti fedora:23 bash`
as well as the rootfs produced by:
yum install @buildsys-build

For OS images:
 - The Anaconda ISO
 - Atomic Host
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


[Bug 1206915] Segfault during upgrade; Segmentation fault ( core dumped) perl -MXML::SAX -e "XML::SAX->add_parser(q($p))->save_parsers ()" 2> /dev/null

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1206915

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 09:16:01



--- Comment #5 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar pushed to perl-Test2-Suite (master). "0.000052 bump"

2016-07-19 Thread notifications
From 6141abd360e8b939a0a6b0309c35f2496329b10c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Tue, 19 Jul 2016 10:59:18 +0200
Subject: 0.52 bump

---
 .gitignore| 1 +
 perl-Test2-Suite.spec | 9 +++--
 sources   | 2 +-
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index b155a8c..a87f65b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,3 +14,4 @@
 /Test2-Suite-0.42.tar.gz
 /Test2-Suite-0.48.tar.gz
 /Test2-Suite-0.50.tar.gz
+/Test2-Suite-0.52.tar.gz
diff --git a/perl-Test2-Suite.spec b/perl-Test2-Suite.spec
index 3fc6eca..1f3f07b 100644
--- a/perl-Test2-Suite.spec
+++ b/perl-Test2-Suite.spec
@@ -1,5 +1,5 @@
 Name:   perl-Test2-Suite
-Version:0.50
+Version:0.52
 Release:1%{?dist}
 Summary:Set of tools built upon the Test2 framework
 License:GPL+ or Artistic
@@ -19,6 +19,7 @@ BuildRequires:  perl(B)
 BuildRequires:  perl(base)
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(Exporter)
+BuildRequires:  perl(Importer) >= 0.010
 BuildRequires:  perl(List::Util)
 BuildRequires:  perl(overload)
 BuildRequires:  perl(Scalar::Util)
@@ -36,6 +37,7 @@ BuildRequires:  perl(Unicode::GCString)
 BuildRequires:  perl(File::Temp)
 BuildRequires:  perl(PerlIO)
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:   perl(Importer) >= 0.010
 # Test2 not used in any useful way
 # Test2::API version from Test2 in META
 Requires:   perl(Test2::API) >= 1.302032
@@ -46,7 +48,7 @@ Recommends: perl(Term::ReadKey)
 Recommends: perl(Unicode::GCString)
 
 # Remove under-specified dependencies
-%global __requires_exclude 
%{?__requires_exclude:%{__requires_exclude}|}^perl\\(Test2::API\\)$
+%global __requires_exclude 
%{?__requires_exclude:%{__requires_exclude}|}^perl\\((Importer|Test2::API)\\)$
 
 %description
 Rich set of tools, plugins, bundles, etc. built upon the Test2 testing
@@ -75,6 +77,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Jul 19 2016 Petr Pisar  - 0.52-1
+- 0.52 bump
+
 * Mon Jul 11 2016 Petr Pisar  - 0.50-1
 - 0.50 bump
 
diff --git a/sources b/sources
index 245226d..96de68c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d21b20df32402d9b9afa027ed19f8d82  Test2-Suite-0.50.tar.gz
+532de7994265011d5ae9c0e7fee7d727  Test2-Suite-0.52.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Test2-Suite.git/commit/?h=master=6141abd360e8b939a0a6b0309c35f2496329b10c
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar uploaded Test2-Suite-0.000052.tar.gz for perl-Test2-Suite

2016-07-19 Thread notifications
532de7994265011d5ae9c0e7fee7d727  Test2-Suite-0.52.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Test2-Suite/Test2-Suite-0.52.tar.gz/md5/532de7994265011d5ae9c0e7fee7d727/Test2-Suite-0.52.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Fedora Rawhide-20160719.n.0 compose check report

2016-07-19 Thread Fedora compose checker
Missing expected images:

Kde live i386
Workstation live i386
Kde live x86_64
Cloud_base raw-xz x86_64
Cloud_base raw-xz i386
Atomic raw-xz x86_64
Kde raw-xz armhfp
Minimal raw-xz armhfp
Workstation live x86_64

Failed openQA tests: 26/74 (x86_64), 15/15 (i386)

ID: 25632   Test: x86_64 Everything-boot-iso install_default@uefi
URL: https://openqa.fedoraproject.org/tests/25632
ID: 25633   Test: i386 Everything-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/25633
ID: 25634   Test: x86_64 Workstation-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/25634
ID: 25635   Test: x86_64 Workstation-boot-iso install_default@uefi
URL: https://openqa.fedoraproject.org/tests/25635
ID: 25636   Test: i386 Workstation-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/25636
ID: 25637   Test: x86_64 Atomic-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/25637
ID: 25639   Test: x86_64 Server-boot-iso install_default@uefi
URL: https://openqa.fedoraproject.org/tests/25639
ID: 25641   Test: x86_64 Server-dvd-iso install_default@uefi
URL: https://openqa.fedoraproject.org/tests/25641
ID: 25647   Test: x86_64 Server-dvd-iso install_repository_nfs_graphical
URL: https://openqa.fedoraproject.org/tests/25647
ID: 25648   Test: x86_64 Server-dvd-iso server_role_deploy_domain_controller
URL: https://openqa.fedoraproject.org/tests/25648
ID: 25655   Test: i386 Server-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/25655
ID: 25656   Test: i386 Server-dvd-iso install_default
URL: https://openqa.fedoraproject.org/tests/25656
ID: 25659   Test: x86_64 universal install_delete_pata@uefi
URL: https://openqa.fedoraproject.org/tests/25659
ID: 25663   Test: x86_64 universal install_multi@uefi
URL: https://openqa.fedoraproject.org/tests/25663
ID: 25674   Test: x86_64 universal install_package_set_kde
URL: https://openqa.fedoraproject.org/tests/25674
ID: 25675   Test: x86_64 universal install_simple_encrypted@uefi
URL: https://openqa.fedoraproject.org/tests/25675
ID: 25676   Test: x86_64 universal install_simple_free_space@uefi
URL: https://openqa.fedoraproject.org/tests/25676
ID: 25677   Test: x86_64 universal install_multi_empty@uefi
URL: https://openqa.fedoraproject.org/tests/25677
ID: 25678   Test: x86_64 universal install_software_raid@uefi
URL: https://openqa.fedoraproject.org/tests/25678
ID: 25679   Test: x86_64 universal install_delete_partial@uefi
URL: https://openqa.fedoraproject.org/tests/25679
ID: 25684   Test: x86_64 universal install_btrfs@uefi
URL: https://openqa.fedoraproject.org/tests/25684
ID: 25685   Test: x86_64 universal install_ext3@uefi
URL: https://openqa.fedoraproject.org/tests/25685
ID: 25686   Test: x86_64 universal install_xfs@uefi
URL: https://openqa.fedoraproject.org/tests/25686
ID: 25687   Test: x86_64 universal install_lvmthin@uefi
URL: https://openqa.fedoraproject.org/tests/25687
ID: 25688   Test: x86_64 universal install_no_swap@uefi
URL: https://openqa.fedoraproject.org/tests/25688
ID: 25691   Test: x86_64 universal upgrade_desktop_64bit
URL: https://openqa.fedoraproject.org/tests/25691
ID: 25693   Test: x86_64 universal upgrade_kde_64bit
URL: https://openqa.fedoraproject.org/tests/25693
ID: 25698   Test: x86_64 universal upgrade_2_kde_64bit
URL: https://openqa.fedoraproject.org/tests/25698
ID: 25707   Test: x86_64 universal install_kickstart_nfs
URL: https://openqa.fedoraproject.org/tests/25707
ID: 25708   Test: x86_64 universal install_iscsi
URL: https://openqa.fedoraproject.org/tests/25708
ID: 25709   Test: i386 universal install_lvmthin
URL: https://openqa.fedoraproject.org/tests/25709
ID: 25710   Test: i386 universal upgrade_desktop_32bit
URL: https://openqa.fedoraproject.org/tests/25710
ID: 25711   Test: i386 universal upgrade_2_desktop_32bit
URL: https://openqa.fedoraproject.org/tests/25711
ID: 25712   Test: i386 universal install_package_set_kde
URL: https://openqa.fedoraproject.org/tests/25712
ID: 25713   Test: i386 universal install_package_set_minimal
URL: https://openqa.fedoraproject.org/tests/25713
ID: 25714   Test: i386 universal install_repository_http_graphical
URL: https://openqa.fedoraproject.org/tests/25714
ID: 25715   Test: i386 universal install_scsi_updates_img
URL: https://openqa.fedoraproject.org/tests/25715
ID: 25716   Test: i386 universal install_simple_encrypted
URL: https://openqa.fedoraproject.org/tests/25716
ID: 25717   Test: i386 universal install_software_raid
URL: https://openqa.fedoraproject.org/tests/25717
ID: 25718   Test: i386 universal install_btrfs
URL: https://openqa.fedoraproject.org/tests/25718
ID: 25719   Test: i386 universal install_ext3
URL: https://openqa.fedoraproject.org/tests/25719

Soft failed openQA tests: 3/74 (x86_64)
(Tests completed, but using a workaround for a known bug)

ID: 25690   Test: 

Re: Fixing the "nobody" user?

2016-07-19 Thread Benjamin Coddington
On 18 Jul 2016, at 8:39, Lennart Poettering wrote:

> Heya!
>
> I'd like to start a discussion regarding the "nobody" user on Fedora,
> and propose that we change its definition sooner or later. I am not
> proposing a feature according to the feature process for this yet, but
> my hope is that these discussions will lead to one eventually.
>
> Most distributions (in particular Debian/Ubuntu-based ones) map the
> user "nobody" to UID 65534. I think we should change Fedora to do the
> same. Background:
>
> On Linux two UIDs are special: that's UID 0 for root, which is the
> privileged user we all know. And then there's UID 65534
> (i.e. (uint16_t) -2), which is less well known. The Linux kernel calls
> it the "overflow" UID. It has four purposes:
>
> 1. The kernel maps UIDs > 65535 to it when when some subsystem/API/fs
>only supports 16bit UIDs, but a 32bit UID is passed to it.
>
> 2. it's used by the kernel's user namespacing as a the internal UID
>that external UIDs are mapped to that don't have any local mapping.
>
> 3. It's used by NFS for all user IDs that cannot be mapped locally if
>UID mapping is enabled.
>
> 4. One upon a time some system daemons chose to run as the "nobody"
>user, instead of a proper system user of their own. But this is
>universally frowned upon, and isn't done on any current systems
>afaics. In fact, to my knowledge Fedora even prohibits this
>explicitly in its policy (?).
>
> The uses 1-3 are relevant today, use 4 is clearly obsolete
> afaics. Uses 1-3 can be subsumed pretty nicely as "the UID something
> that cannot be mapped properly is mapped to".

I think this is a good proposal, but the work would be in making sure use 4
really is obsolete since the big change here would be redefining what
that "nobody" means.  Right now, "nobody" is a real local account that scripts
and daemons have used to sandbox themselves, and sometimes we can even find
stuff like uid == 99 in conditionals.

It's important to NFS that when passing file owner name strings between
clients and servers the string "nobody" means the unmappable user, and not a
real user of lowest privilege.  If we make the change to redefine what the
local user "nobody" means, we should make sure use 4 is obsolete.

Otherwise, NFS is pretty flexible about being able to configure uid/name
mappings, and I don't see a problem for NFS in changing -2 from nfsnobody to
nobody.

> On Fedora, we currently have a "nobody" user that is defined to UID
> 99. It's defined unconditionally like this. To my knowledge there's no
> actual use of this user at all in Fedora however.

After a quick grep, Lustre has a
#define NOBODY_UID  99

I don't know how that's used..

> The UID 65514 carries no name by default on Fedora, but as soon as you
> install the NFS utils it gets mapped to the "nfsnobody" user name,
> misleadingly indicating that it would be used only by NFS even though it's
> a much more general concept. I figure the NFS guys adopted the name
> "nfsnobody" for this, simply because "nobody" was already taken by UID 99
> on Fedora, unlike on other distributions.

Likely, yes -- but maybe some of the other NFS people know more of the
history.

> In the context of user namespacing the UID 65534 appears a lot more
> often as owner of various files. For example, if you turn on user
> namespacing in typical container managers you'll notice that a ton of
> files in /proc will then be owned by this user. Very confusingly, in a
> container that includes the NFS utils all those files actually show up
> as "nfsnobody"-owned now, even though there's no relation to NFS at all
> for them.
>
> I'd like to propose that we clean this up, and just make Fedora work
> like all other distributions. After all the reason of having this
> special UID in the first place is to sidestep mapping problems between
> different UID "realms". Hence I think it would be wise to at least
> make the name of this very special UID somewhat more stable and
> well-defined between distributions.
>
> I think this is of particular relevance as Debian/Ubuntu-based
> container images tend to be substantially more popular than
> Fedora-based ones, and hence I think we should try to unify at least
> the names and semantics of the two special UIDs all distros have, to
> minimize mapping problems and making user interaction in containers a
> bit more friendly.
>
> You might ask of course, why Fedora should change to adopt
> Debian's/Ubuntu's definition, instead of conversely making them adopt
> Fedora's definition? Well, that's simple: Debian's definition makes a
> lot more sense than Fedora's. And nothing we ship actually makes use
> of FEdora's definition afaics, and we currently carry a workaround
> called "nfsnobody" in some cases to avoid having to fix this properly.
>
> Another option would be to define an entirely new user name for 65534,
> for example "void" or so. But quite frankly, that sounds like a
> pointless bikeshedding excercise, and 

[Bug 1139141] perl-Dumbbench-BoxPlot does not support ARM

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1139141

Petr Pisar  changed:

   What|Removed |Added

 Status|CLOSED  |NEW
Version|22  |23
 Resolution|EOL |---
   Keywords||Reopened



-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1158860] Please drop dependency on perl-generators from rpm-build

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1158860

Petr Pisar  changed:

   What|Removed |Added

   Keywords||FutureFeature, Reopened
 Status|CLOSED  |ON_QA
Version|22  |rawhide
 Resolution|EOL |---



-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Re: Removing perl from build root

2016-07-19 Thread Petr Pisar
On Thu, Mar 31, 2016 at 03:10:26PM +0200, Petr Pisar wrote:
> Fedora's minimal build root contains perl. There is a reasonable request
>  to
> remove the perl in order to minimize the build root. (The x86_64 F25 build
> root occupies 527 MB now, 20 MB of that are perl packages.)
> 
I removed perl from the minimal build root today. This is effective since
rpm-build-4.13.0-0.rc1.40.fc25 reached build root.

Because perl is not in the build root for creating source packages, spec
constructions like:

%if %(perl ...)
BuildRequires: ...
Requires: ...
%endif

will not work. rpmbuild will complain about invalid condition expression
(because it will be empty).

If you use it for controlling run-time dependencies, simply build-require
"perl" and change the condition so that it always returns a valid expreesion,
e.g.:

%if 0%(perl ...)
Requires: ...
%endif

If you use it for controlling build-time dependencies, you are out of luck and
you have to change the condition to depend on Fedora release:

%if 0%{?fedora} >= ...
BuildRequires: ...
%endif

Although perl-libs provides some useful RPM symbols (perl(:VERSION) etc.),
querying RPM database from rpm-build is considered harmful and you should
not do that.

I was thinking about exporting them as SRPM macros, but I'm not fully
persuaded it's worth doing it. Especially because it would impose keeping
perl-srpm-macros in synchronization to perl-libs. I can imagine the perl
version could be handy. Any opinions?

-- Petr


signature.asc
Description: PGP signature
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1165555] Request to retire perl-ZMQ-LibZMQ2

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=116

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 08:25:37



--- Comment #2 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1165554] Request to retire perl-ZMQ-LibZMQ3

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1165554

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 08:25:22



--- Comment #5 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1158860] Please drop dependency on perl-generators from rpm-build

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1158860

Fedora End Of Life  changed:

   What|Removed |Added

 Status|MODIFIED|CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 08:20:18



--- Comment #17 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1155218] Possible precedence issue with control flow operator

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1155218

Fedora End Of Life  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 08:15:52



--- Comment #2 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1139141] perl-Dumbbench-BoxPlot does not support ARM

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1139141

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 08:06:29



--- Comment #3 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1136865] perl-CHI-0.58-2.fc22 FTBFS randomly: 40 is not between 59 and 99

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1136865

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 08:05:46



--- Comment #2 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Test-Announce] 2016-07-20 @ 16:00 UTC - Fedora 25 Blocker Review

2016-07-19 Thread Petr Schindler
# F25 Blocker Review meeting
# Date: 2016-07-20
# Time: 16:00 UTC
# Location: #fedora-blocker-review on irc.freenode.net

Hi folks! We have currently few blockers proposed for future Fedora 25
so it would be great to look at them now when they aren't overpopulated
yet. There are 3 proposed Beta blockers, 1 Beta blocker and 1 Final
blocker.

If you have some time, you can take a look at the proposed or
accepted blockers before the meeting -  the full lists can be found
here: https://qa.fedoraproject.org/blockerbugs/ . Remember to check
each outstanding milestone (Alpha, Beta and Final).

We'll be evaluating these bugs to see if they violate any of the 
Release Criteria and warrant the blocking of a release if they're not 
fixed. Information on the release criteria for F25 can be found on the 
wiki [0].

For more information about the Blocker and Freeze exception process, 
check out these links:
 - https://fedoraproject.org/wiki/QA:SOP_blocker_bug_process
 - https://fedoraproject.org/wiki/QA:SOP_freeze_exception_bug_process

And for those of you who are curious how a Blocker Review Meeting 
works - or how it's supposed to go and you want to run one - check out 
the SOP on the wiki:
 - https://fedoraproject.org/wiki/QA:SOP_Blocker_Bug_Meeting

[0] https://fedoraproject.org/wiki/Fedora_Release_Criteria

Have a nice day,
Petr Schindler, Fedora QA
___
test-announce mailing list
test-annou...@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/test-annou...@lists.fedoraproject.org
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


[Bug 1122498] Missing perl-Time-HiRes requirement

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1122498

Fedora End Of Life  changed:

   What|Removed |Added

 Status|MODIFIED|CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 07:57:33



--- Comment #2 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1119427] Could not get SMIL playlist

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1119427

Fedora End Of Life  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 07:55:37



--- Comment #5 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1118240] puic4 is broken: fix provided

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1118240

Fedora End Of Life  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 07:55:04



--- Comment #31 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1110326] perl-Time-Mock-0.0.2-5.fc21 FTBFS on heavily loaded machine

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1110326

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 07:48:58



--- Comment #2 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1110292] perl-Text-Xslate-3.1.2-3.fc21 FTBFS under heavy load:

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1110292

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 07:48:43



--- Comment #4 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Re: RFC: Fixing the "nobody" user?

2016-07-19 Thread Nico Kadel-Garcia
On Mon, Jul 18, 2016 at 8:39 AM, Lennart Poettering
 wrote:

> On Fedora, we currently have a "nobody" user that is defined to UID
> 99. It's defined unconditionally like this. To my knowledge there's no
> actual use of this user at all in Fedora however. The UID 65514
> carries no name by default on Fedora, but as soon as you install the
> NFS utils it gets mapped to the "nfsnobody" user name, misleadingly
> indicating that it would be used only by NFS even though it's a much
> more general concept. I figure the NFS guys adopted the name
> "nfsnobody" for this, simply because "nobody" was already taken by UID
> 99 on Fedora, unlike on other distributions.

At first glance it makes some sense. 2^32-2 doesn't force it into
64-bit space, it's tested on other operating systems, I'm concerned
that overlapping "nobody" with the working "nfsnobody" is going to
break tools. I'm also cncerned that it will change behavior for "tar",
"rsync", "star", and other programs that can be configured to store
and extract usernames *or* uids, or a mix of both.

> In the context of user namespacing the UID 65534 appears a lot more
> often as owner of various files. For example, if you turn on user
> namespacing in typical container managers you'll notice that a ton of
> files in /proc will then be owned by this user. Very confusingly, in a
> container that includes the NFS utils all those files actually show up
> as "nfsnobody"-owned now, even though there's no relation to NFS at all
> for them.

And this is where the shift in behavior would get confusing.

> How could a transition look like? I figure new installs should get
> "nobody" defined to 65534. Old installs should keep the old
> definitions in place instead. The NFS packages should be updated to
> not create the "nfsnobody" user if there's already another user mapped
> to 65534 (maybe it already does that?). Of course it's not pretty if
> old and new systems use different definitions for this user, but I
> think it's not too much of a real-life issue, as most code that refers
> to this group already does so by UID instead of name, simply because
> the name is not stable across distributions.

Like I said, I'm thinking of "rsync", "tar", and "star". Also,
people do some interesting scripting to detect things like failed
NFS configurations. I'm not saying that's a blocker, but shifting it
to overlap with the current "nfsnobody" is likely to break some
people's tools in the field, especially if they run the latest Fedora
alongside RHEL, CentOS,  or previous Fedora releases.

> Opinions?
>
> Lennart
>
> --
> Lennart Poettering, Red Hat
> --
> devel mailing list
> devel@lists.fedoraproject.org
> https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


[Bug 1106166] perl-OpenOffice-UNO: FTBFS in rawhide: tests fail randomly

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1106166

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 07:39:19



--- Comment #7 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

notion of base or minimal image

2016-07-19 Thread Nikos Mavrogiannopoulos
Hi,
 Is there some notion or definition of a Fedora minimal or base image?
I couldn't find some documentation on that. I would like to modify some
script which a package on the critical path depends on, from bash to
perl and I would like to understand whether that could affect any
fedora images.

regards,
Nikos
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


[Bug 1098012] autoclass has been replaced by Class-AutoClass

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1098012

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 07:31:19



--- Comment #2 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

jplesnik pushed to perl-PAR-Packer (master). "1.034 bump"

2016-07-19 Thread notifications
From 1dea343192be8b04e6045e7569678372c9dfee45 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Tue, 19 Jul 2016 10:00:37 +0200
Subject: 1.034 bump

---
 .gitignore   | 1 +
 perl-PAR-Packer.spec | 5 -
 sources  | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index bdb11f7..c15db8f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,3 +23,4 @@ PAR-Packer-1.005.tar.gz
 /PAR-Packer-1.031.tar.gz
 /PAR-Packer-1.032.tar.gz
 /PAR-Packer-1.033.tar.gz
+/PAR-Packer-1.034.tar.gz
diff --git a/perl-PAR-Packer.spec b/perl-PAR-Packer.spec
index dd3bcfc..3f58ba6 100644
--- a/perl-PAR-Packer.spec
+++ b/perl-PAR-Packer.spec
@@ -1,5 +1,5 @@
 Name:   perl-PAR-Packer
-Version:1.033
+Version:1.034
 Release:1%{?dist}
 Summary:PAR Packager
 License:GPL+ or Artistic
@@ -148,6 +148,9 @@ fi
 %{_datadir}/icons/hicolor/32x32/apps/tkpp.gif
 
 %changelog
+* Tue Jul 19 2016 Jitka Plesnikova  - 1.034-1
+- 1.034 bump
+
 * Mon May 23 2016 Jitka Plesnikova  - 1.033-1
 - 1.033 bump
 
diff --git a/sources b/sources
index f4e2648..52b6fef 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-11609d22a95347598958ab7d93ad08e2  PAR-Packer-1.033.tar.gz
+7c8f7a389b10d398e07a080c78f8784c  PAR-Packer-1.034.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-PAR-Packer.git/commit/?h=master=1dea343192be8b04e6045e7569678372c9dfee45
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

jplesnik uploaded PAR-Packer-1.034.tar.gz for perl-PAR-Packer

2016-07-19 Thread notifications
7c8f7a389b10d398e07a080c78f8784c  PAR-Packer-1.034.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-PAR-Packer/PAR-Packer-1.034.tar.gz/md5/7c8f7a389b10d398e07a080c78f8784c/PAR-Packer-1.034.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar pushed to perl-MongoDB (master). "Adapt perl detection for SRPM build root without perl"

2016-07-19 Thread notifications
From 75acea4a2421e10826d206c23cfa8cfcff4b5610 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Tue, 19 Jul 2016 09:25:04 +0200
Subject: Adapt perl detection for SRPM build root without perl

---
 perl-MongoDB.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/perl-MongoDB.spec b/perl-MongoDB.spec
index 55d47b6..b848cc6 100644
--- a/perl-MongoDB.spec
+++ b/perl-MongoDB.spec
@@ -118,7 +118,7 @@ Recommends: perl(Class::XSAccessor)
 # Prefer IO::Socket::IP over IO::Socket::INET
 Requires:   perl(IO::Socket::IP) >= 0.25
 Requires:   perl(IO::Socket::SSL) >= 1.42
-%if %(perl -MConfig -e 'print defined $Config{use64bitint} ? 0 : 1')
+%if 0%(perl -MConfig -e 'print defined $Config{use64bitint} ? 0 : 1')
 Requires:   perl(Math::BigInt)
 %endif
 Requires:   perl(Moo) >= 2
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-MongoDB.git/commit/?h=master=75acea4a2421e10826d206c23cfa8cfcff4b5610
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Re: RFC: Fixing the "nobody" user?

2016-07-19 Thread Lennart Poettering
On Tue, 19.07.16 11:17, James Hogarth (james.hoga...@gmail.com) wrote:

> On 19 July 2016 at 10:59, Lennart Poettering  wrote:
> 
> > On Mon, 18.07.16 17:45, Sam Varshavchik (mr...@courier-mta.com) wrote:
> >
> > > Lennart Poettering writes:
> > >
> > > >On Fedora, we currently have a "nobody" user that is defined to UID
> > > >99. It's defined unconditionally like this. To my knowledge there's no
> > > >actual use of this user at all in Fedora however.
> > >
> > > I see distccd running as the nobody user.
> > >
> > > I also see dnsmasq running as the nobody user.
> >
> > Urks, this looks broken. Don't our package guidelines prohibit this?
> >
> >
> >
> I don't see anything in the overall guidelines[1], the users_and_groups
> guidelines[2] or the systemd_unit guidelines[3]
> 
> A quick search of FPC tickets doesn't show any discussion there either.
> 
> [1] https://fedoraproject.org/wiki/Packaging:Guidelines
> [2] https://fedoraproject.org/wiki/Packaging:UsersAndGroups
> [3] https://fedoraproject.org/wiki/Packaging:Systemd

Hmm, OK. I filed an FPC ticket about this now:

https://fedorahosted.org/fpc/ticket/642

Lennart

-- 
Lennart Poettering, Red Hat
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


jplesnik pushed to perl-GraphViz (master). "2.22 bump"

2016-07-19 Thread notifications
From a6f0cbb1f81e28773f01a57e3aad5b4ba9de63df Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Tue, 19 Jul 2016 09:22:32 +0200
Subject: 2.22 bump

---
 .gitignore | 1 +
 perl-GraphViz.spec | 6 --
 sources| 2 +-
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index 29b776b..a88ce2b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@
 /GraphViz-2.19.tgz
 /GraphViz-2.20.tgz
 /GraphViz-2.21.tgz
+/GraphViz-2.22.tgz
diff --git a/perl-GraphViz.spec b/perl-GraphViz.spec
index d585bbe..a2f4bcb 100644
--- a/perl-GraphViz.spec
+++ b/perl-GraphViz.spec
@@ -1,5 +1,5 @@
 Name:   perl-GraphViz
-Version:2.21
+Version:2.22
 Release:1%{?dist}
 Summary:Interface to the GraphViz graphing tool
 License:GPL+ or Artistic
@@ -28,7 +28,6 @@ BuildRequires:  perl(LWP::Simple) >= 6
 BuildRequires:  perl(Parse::RecDescent) >= 1.965001
 BuildRequires:  perl(Pod::Usage) >= 1.16
 BuildRequires:  perl(strict)
-BuildRequires:  perl(Test2::Bundle::Extended) >= 0.30
 BuildRequires:  perl(Test::More) >= 1.302019
 BuildRequires:  perl(Time::HiRes) >= 1.51
 BuildRequires:  perl(vars)
@@ -78,6 +77,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Jul 19 2016 Jitka Plesnikova  - 2.22-1
+- 2.22 bump
+
 * Mon May 23 2016 Jitka Plesnikova  - 2.21-1
 - 2.21 bump
 
diff --git a/sources b/sources
index 0747a8b..dadeacc 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bd5834fe41ace5e0ea5c24dd434cbeef  GraphViz-2.21.tgz
+8711db245c84d2e15b8c344bd8bebad0  GraphViz-2.22.tgz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-GraphViz.git/commit/?h=master=a6f0cbb1f81e28773f01a57e3aad5b4ba9de63df
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1027305] pTk/ *.t files in debuginfo package differ in mode on each architecture

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1027305

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 06:34:05



--- Comment #2 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Broken dependencies: perl-Data-Alias

2016-07-19 Thread buildsys


perl-Data-Alias has broken dependencies in the rawhide tree:
On x86_64:
perl-Data-Alias-1.20-2.fc24.x86_64 requires libperl.so.5.22()(64bit)
perl-Data-Alias-1.20-2.fc24.x86_64 requires perl(:MODULE_COMPAT_5.22.1)
On i386:
perl-Data-Alias-1.20-2.fc24.i686 requires libperl.so.5.22
perl-Data-Alias-1.20-2.fc24.i686 requires perl(:MODULE_COMPAT_5.22.1)
On armhfp:
perl-Data-Alias-1.20-2.fc24.armv7hl requires libperl.so.5.22
perl-Data-Alias-1.20-2.fc24.armv7hl requires perl(:MODULE_COMPAT_5.22.1)
Please resolve this as soon as possible.

--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Broken dependencies: perl-Algorithm-Permute

2016-07-19 Thread buildsys


perl-Algorithm-Permute has broken dependencies in the rawhide tree:
On x86_64:
perl-Algorithm-Permute-0.12-21.fc24.x86_64 requires 
libperl.so.5.22()(64bit)
perl-Algorithm-Permute-0.12-21.fc24.x86_64 requires 
perl(:MODULE_COMPAT_5.22.1)
On i386:
perl-Algorithm-Permute-0.12-21.fc24.i686 requires libperl.so.5.22
perl-Algorithm-Permute-0.12-21.fc24.i686 requires 
perl(:MODULE_COMPAT_5.22.1)
On armhfp:
perl-Algorithm-Permute-0.12-21.fc24.armv7hl requires libperl.so.5.22
perl-Algorithm-Permute-0.12-21.fc24.armv7hl requires 
perl(:MODULE_COMPAT_5.22.1)
Please resolve this as soon as possible.

--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

jplesnik uploaded GraphViz-2.22.tgz for perl-GraphViz

2016-07-19 Thread notifications
8711db245c84d2e15b8c344bd8bebad0  GraphViz-2.22.tgz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-GraphViz/GraphViz-2.22.tgz/md5/8711db245c84d2e15b8c344bd8bebad0/GraphViz-2.22.tgz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1003471] Manual pages generated from POD have almost all Unicode characters mangled to X

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1003471

Fedora End Of Life  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 06:20:38



--- Comment #2 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Test-Announce] Fedora 25 Rawhide 20160719.n.0 nightly compose nominated for testing

2016-07-19 Thread rawhide
Announcing the creation of a new nightly release validation test event
for Fedora 25 Rawhide 20160719.n.0. Please help run some tests for this
nightly compose if you have time. For more information on nightly
release validation testing, see:
https://fedoraproject.org/wiki/QA:Release_validation_test_plan

Test coverage information for the current release can be seen at:
https://www.happyassassin.net/testcase_stats/25

You can see all results, find testing instructions and image download
locations, and enter results on the Summary page:

https://fedoraproject.org/wiki/Test_Results:Fedora_25_Rawhide_20160719.n.0_Summary

The individual test result pages are:

https://fedoraproject.org/wiki/Test_Results:Fedora_25_Rawhide_20160719.n.0_Installation
https://fedoraproject.org/wiki/Test_Results:Fedora_25_Rawhide_20160719.n.0_Base
https://fedoraproject.org/wiki/Test_Results:Fedora_25_Rawhide_20160719.n.0_Server
https://fedoraproject.org/wiki/Test_Results:Fedora_25_Rawhide_20160719.n.0_Cloud
https://fedoraproject.org/wiki/Test_Results:Fedora_25_Rawhide_20160719.n.0_Desktop
https://fedoraproject.org/wiki/Test_Results:Fedora_25_Rawhide_20160719.n.0_Security_Lab

Thank you for testing!
-- 
Mail generated by relval: https://www.happyassassin.net/relval/
___
test-announce mailing list
test-annou...@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/test-annou...@lists.fedoraproject.org
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


Re: RFC: Fixing the "nobody" user?

2016-07-19 Thread James Hogarth
On 19 July 2016 at 10:59, Lennart Poettering  wrote:

> On Mon, 18.07.16 17:45, Sam Varshavchik (mr...@courier-mta.com) wrote:
>
> > Lennart Poettering writes:
> >
> > >On Fedora, we currently have a "nobody" user that is defined to UID
> > >99. It's defined unconditionally like this. To my knowledge there's no
> > >actual use of this user at all in Fedora however.
> >
> > I see distccd running as the nobody user.
> >
> > I also see dnsmasq running as the nobody user.
>
> Urks, this looks broken. Don't our package guidelines prohibit this?
>
>
>
I don't see anything in the overall guidelines[1], the users_and_groups
guidelines[2] or the systemd_unit guidelines[3]

A quick search of FPC tickets doesn't show any discussion there either.

[1] https://fedoraproject.org/wiki/Packaging:Guidelines
[2] https://fedoraproject.org/wiki/Packaging:UsersAndGroups
[3] https://fedoraproject.org/wiki/Packaging:Systemd
--
devel mailing list
devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org


[Bug 981243] SDLx::App->new() does not work on frame buffer console

2016-07-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=981243

Fedora End Of Life  changed:

   What|Removed |Added

 Status|POST|CLOSED
 Resolution|--- |EOL
Last Closed||2016-07-19 06:15:47



--- Comment #12 from Fedora End Of Life  ---
Fedora 22 changed to end-of-life (EOL) status on 2016-07-19. Fedora 22 is
no longer maintained, which means that it will not receive any further
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of
Fedora please feel free to reopen this bug against that version. If you
are unable to reopen this bug, please file a new report against the
current release. If you experience problems, please add a comment to this
bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

  1   2   >