psabata pushed to bucardo (master). Fix the FTBFS issue (#1158368) (..more)

2015-05-26 Thread notifications
From 6bddc10e9960a2fd4478bfe7c6fa16398dd5e4c9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20=C5=A0abata?= con...@redhat.com
Date: Tue, 26 May 2015 08:57:49 +0200
Subject: Fix the FTBFS issue (#1158368)

- Install the missing database schema
- Clean and modernize the spec file
- Drop the unused signature file
- Fix the dep list
- Install the LICENSE file with %license
- Enable test suite

diff --git a/Bucardo-4.5.0.tar.gz.asc b/Bucardo-4.5.0.tar.gz.asc
deleted file mode 100644
index 376780d..000
--- a/Bucardo-4.5.0.tar.gz.asc
+++ /dev/null
@@ -1,6 +0,0 @@
--BEGIN PGP SIGNATURE-
-
-iEYEABEDAAYFAk/+/h8ACgkQvJuQZxSWSsgc6gCfYqJCFPT7vxYpXxRWcgFx2SmT
-8LoAnjQ+kJMukyZKSHGF/++f6TF3lhQL
-=Qcuh
--END PGP SIGNATURE-
diff --git a/bucardo.spec b/bucardo.spec
index ad8467c..b9f6eb7 100644
--- a/bucardo.spec
+++ b/bucardo.spec
@@ -1,46 +1,45 @@
 %define realname Bucardo
 Name:   bucardo
 Version:4.5.0
-Release:8%{?dist}
+Release:9%{?dist}
 Summary:Postgres replication system for both multi-master and 
multi-slave operations
-
 Group:  Applications/Databases
+# The README file says `same as Perl', however, I don't think it's
+# what they meant.  Reported as github#95.
 License:BSD
 URL:http://bucardo.org/
 Source0:http://bucardo.org/downloads/Bucardo-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
-Source1: Bucardo-%{version}.tar.gz.asc
-Source2: master-master-replication-example.txt
-
-
-BuildArch: noarch
-
-BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(DBI)
-BuildRequires:  perl(DBD::Pg)
+Source1:master-master-replication-example.txt
+BuildArch:  noarch
+BuildRequires:  postgresql-plperl
+# Build
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker) = 6.76
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Runtime
+BuildRequires:  perl(Config)
+BuildRequires:  perl(Data::Dumper)
+BuildRequires:  perl(DBD::Pg) = 2.0
+BuildRequires:  perl(DBI) = 1.51
+BuildRequires:  perl(DBIx::Safe)
+BuildRequires:  perl(Getopt::Long)
 BuildRequires:  perl(IO::Handle)
+BuildRequires:  perl(Net::SMTP)
+BuildRequires:  perl(POSIX)
+BuildRequires:  perl(sigtrap)
 BuildRequires:  perl(Sys::Hostname)
 BuildRequires:  perl(Sys::Syslog)
-BuildRequires:  perl(Net::SMTP)
-# available from fedora 10
-BuildRequires:  perl(DBIx::Safe)
-
-Requires:  perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo $version))
-Requires:  perl(ExtUtils::MakeMaker)
-Requires:  postgresql-plperl
-
-Requires:  perl(DBI)
-Requires:  perl(DBD::Pg)
-Requires:  perl(DBIx::Safe)
-Requires:  perl(IO::Handle)
-Requires:  perl(Sys::Hostname)
-Requires:  perl(Sys::Syslog)
-Requires:  perl(Net::SMTP)
-
-#testsuite
-Requires:  perl(Test::Simple)
-Requires:  perl(Test::Harness)
+BuildRequires:  perl(Time::HiRes)
+BuildRequires:  perl(vars)
+# Tests only
+BuildRequires:  perl(base)
+BuildRequires:  perl(Cwd)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(lib)
+BuildRequires:  perl(Test::More)
+Requires:   perl(:MODULE_COMPAT_%(eval $(perl -V:version); echo 
$version))
+Requires:   postgresql-plperl
 
 %description
 Bucardo is an asynchronous PostgreSQL replication system, allowing for both
@@ -50,51 +49,48 @@ primarily by Greg Sabino Mullane of End Point Corporation.
 %prep
 %setup -q -n %{realname}-%{version}
 
-
 %build
-
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
 make %{?_smp_mflags}
 
-
 %install
-rm -rf $RPM_BUILD_ROOT
-
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
-
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} +
-find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2/dev/null \;
-
-sed -i -e '1d;2i#!/usr/bin/perl' bucardo_ctl
-
-rm -f $RPM_BUILD_ROOT/%{_bindir}/bucardo_ctl
-install -Dp -m 755 bucardo_ctl $RPM_BUILD_ROOT/%{_sbindir}/bucardo_ctl
-mkdir -p $RPM_BUILD_ROOT/%{_localstatedir}/run/bucardo
-
-install -Dp -m 644 %{SOURCE2} .
-
-
-
-%{_fixperms} %{buildroot}
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
+make pure_install DESTDIR=%{buildroot}
+sed -i -e '1d;2i#!%{__perl}' %{name}_ctl
+rm -f %{buildroot}/%{_bindir}/%{name}_ctl
+install -Dp -m755 bucardo_ctl %{buildroot}/%{_sbindir}/%{name}_ctl
+install -Dp -m644 %{name}.schema 
%{buildroot}/%{_datadir}/%{name}/%{name}.schema
+mkdir -p %{buildroot}/%{_localstatedir}/run/%{name}
+install -Dp -m644 %{SOURCE1} .
+%{_fixperms} %{buildroot}/
+
+%check
+# This test runs forever, it'd be nice to figure out why,
+# fix it and re-enable it.  For now, run the rest of the
+# test suite at least.
+rm -f t/15-star.t
+make test
 
 %files
-%defattr(-,root,root,-)
-%doc bucardo_ctl.html Bucardo.pm.html Changes
-%doc INSTALL LICENSE README SIGNATURE TODO
+%license LICENSE
+%doc *.html Changes INSTALL README TODO
 %doc master-master-replication-example.txt
 %{perl_vendorlib}/*
 %{_mandir}/man1/*
 %{_mandir}/man3/*
-%{_sbindir}/bucardo_ctl

[Bug 1224841] perl-Term-UI-0.46 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1224841



--- Comment #3 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
ppisar's perl-Term-UI-0.46-1.fc23 completed
http://koji.fedoraproject.org/koji/buildinfo?buildID=638982

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1224841] perl-Term-UI-0.46 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1224841

Petr Pisar ppi...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-Term-UI-0.46-1.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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1224733] perl-Term-UI-0.44 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1224733



--- Comment #8 from Fedora Update System upda...@fedoraproject.org ---
perl-Term-UI-0.46-1.fc21 has been submitted as an update for Fedora 21.
https://admin.fedoraproject.org/updates/perl-Term-UI-0.46-1.fc21

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1224841] perl-Term-UI-0.46 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1224841



--- Comment #4 from Fedora Update System upda...@fedoraproject.org ---
perl-Term-UI-0.46-1.fc22 has been submitted as an update for Fedora 22.
https://admin.fedoraproject.org/updates/perl-Term-UI-0.46-1.fc22

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1224841] perl-Term-UI-0.46 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1224841



--- Comment #5 from Fedora Update System upda...@fedoraproject.org ---
perl-Term-UI-0.46-1.fc21 has been submitted as an update for Fedora 21.
https://admin.fedoraproject.org/updates/perl-Term-UI-0.46-1.fc21

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1224733] perl-Term-UI-0.44 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1224733



--- Comment #7 from Fedora Update System upda...@fedoraproject.org ---
perl-Term-UI-0.46-1.fc22 has been submitted as an update for Fedora 22.
https://admin.fedoraproject.org/updates/perl-Term-UI-0.46-1.fc22

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar uploaded Term-UI-0.46.tar.gz for perl-Term-UI

2015-05-26 Thread notifications
eaa9240bc44e18dfe558286eb1f3c592  Term-UI-0.46.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Term-UI/Term-UI-0.46.tar.gz/eaa9240bc44e18dfe558286eb1f3c592/Term-UI-0.46.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar pushed to perl-Term-UI (master). 0.46 bump

2015-05-26 Thread notifications
From 15f46d52fe352693630b875565f87b6e702e9fbb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
Date: Tue, 26 May 2015 08:03:11 +0200
Subject: 0.46 bump


diff --git a/.gitignore b/.gitignore
index 8ad84d1..32e35f3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@ Term-UI-0.18.tar.gz
 /Term-UI-0.38.tar.gz
 /Term-UI-0.42.tar.gz
 /Term-UI-0.44.tar.gz
+/Term-UI-0.46.tar.gz
diff --git a/Term-UI-0.44-Correct-number-of-tests-to-skip-in-t-02_ui.t.patch 
b/Term-UI-0.44-Correct-number-of-tests-to-skip-in-t-02_ui.t.patch
deleted file mode 100644
index b1c149c..000
--- a/Term-UI-0.44-Correct-number-of-tests-to-skip-in-t-02_ui.t.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 136bc1a7ab0672248aa5f87b033ccd9012e8a56a Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
-Date: Mon, 25 May 2015 16:04:39 +0200
-Subject: [PATCH] Correct number of tests to skip in t/02_ui.t
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Running tests without terminal causes a failure because adding a new
-test for multiple choice forgot to increase the number of tests to
-skip when no terminal is available.
-
-CPAN RT#104688
-
-Signed-off-by: Petr Písař ppi...@redhat.com

- t/02_ui.t | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/t/02_ui.t b/t/02_ui.t
-index c2afb35..4e80afc 100644
 a/t/02_ui.t
-+++ b/t/02_ui.t
-@@ -14,7 +14,7 @@ $Term::UI::VERBOSE  = $Term::UI::VERBOSE= 0;
- # SKIP tests if we aren't on a terminal
- SKIP: {
- 
--skip 'not on a terminal', 20 unless -t;
-+skip 'not on a terminal', 21 unless -t;
- 
- ### enable warnings
- $^W = 1;
--- 
-2.1.0
-
diff --git a/perl-Term-UI.spec b/perl-Term-UI.spec
index 658b566..0b327cf 100644
--- a/perl-Term-UI.spec
+++ b/perl-Term-UI.spec
@@ -1,13 +1,11 @@
 Name:   perl-Term-UI
-Version:0.44
+Version:0.46
 Release:1%{?dist}
 Summary:Term::ReadLine user interface made easy
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Term-UI/
 Source0:
http://www.cpan.org/authors/id/B/BI/BINGOS/Term-UI-%{version}.tar.gz
-# Fix test plan, bug #1224733, CPAN RT#104688
-Patch0: Term-UI-0.44-Correct-number-of-tests-to-skip-in-t-02_ui.t.patch
 BuildArch:  noarch
 BuildRequires:  perl
 BuildRequires:  perl(ExtUtils::MakeMaker)
@@ -42,7 +40,6 @@ answer was not proper and re-issuing the question.
 
 %prep
 %setup -q -n Term-UI-%{version}
-%patch0 -p1
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor
@@ -62,6 +59,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue May 26 2015 Petr Pisar ppi...@redhat.com - 0.46-1
+- 0.46 bump
+
 * Mon May 25 2015 Petr Pisar ppi...@redhat.com - 0.44-1
 - 0.44 bump
 
diff --git a/sources b/sources
index 43f9ad8..81cbeb2 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-27a8d044cce0ebf1c137e9dd959d89c9  Term-UI-0.44.tar.gz
+eaa9240bc44e18dfe558286eb1f3c592  Term-UI-0.46.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Term-UI.git/commit/?h=masterid=15f46d52fe352693630b875565f87b6e702e9fbb
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar pushed to perl-Term-UI (f22). 0.46 bump

2015-05-26 Thread notifications
From 15f46d52fe352693630b875565f87b6e702e9fbb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
Date: Tue, 26 May 2015 08:03:11 +0200
Subject: 0.46 bump


diff --git a/.gitignore b/.gitignore
index 8ad84d1..32e35f3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@ Term-UI-0.18.tar.gz
 /Term-UI-0.38.tar.gz
 /Term-UI-0.42.tar.gz
 /Term-UI-0.44.tar.gz
+/Term-UI-0.46.tar.gz
diff --git a/Term-UI-0.44-Correct-number-of-tests-to-skip-in-t-02_ui.t.patch 
b/Term-UI-0.44-Correct-number-of-tests-to-skip-in-t-02_ui.t.patch
deleted file mode 100644
index b1c149c..000
--- a/Term-UI-0.44-Correct-number-of-tests-to-skip-in-t-02_ui.t.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 136bc1a7ab0672248aa5f87b033ccd9012e8a56a Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
-Date: Mon, 25 May 2015 16:04:39 +0200
-Subject: [PATCH] Correct number of tests to skip in t/02_ui.t
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Running tests without terminal causes a failure because adding a new
-test for multiple choice forgot to increase the number of tests to
-skip when no terminal is available.
-
-CPAN RT#104688
-
-Signed-off-by: Petr Písař ppi...@redhat.com

- t/02_ui.t | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/t/02_ui.t b/t/02_ui.t
-index c2afb35..4e80afc 100644
 a/t/02_ui.t
-+++ b/t/02_ui.t
-@@ -14,7 +14,7 @@ $Term::UI::VERBOSE  = $Term::UI::VERBOSE= 0;
- # SKIP tests if we aren't on a terminal
- SKIP: {
- 
--skip 'not on a terminal', 20 unless -t;
-+skip 'not on a terminal', 21 unless -t;
- 
- ### enable warnings
- $^W = 1;
--- 
-2.1.0
-
diff --git a/perl-Term-UI.spec b/perl-Term-UI.spec
index 658b566..0b327cf 100644
--- a/perl-Term-UI.spec
+++ b/perl-Term-UI.spec
@@ -1,13 +1,11 @@
 Name:   perl-Term-UI
-Version:0.44
+Version:0.46
 Release:1%{?dist}
 Summary:Term::ReadLine user interface made easy
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Term-UI/
 Source0:
http://www.cpan.org/authors/id/B/BI/BINGOS/Term-UI-%{version}.tar.gz
-# Fix test plan, bug #1224733, CPAN RT#104688
-Patch0: Term-UI-0.44-Correct-number-of-tests-to-skip-in-t-02_ui.t.patch
 BuildArch:  noarch
 BuildRequires:  perl
 BuildRequires:  perl(ExtUtils::MakeMaker)
@@ -42,7 +40,6 @@ answer was not proper and re-issuing the question.
 
 %prep
 %setup -q -n Term-UI-%{version}
-%patch0 -p1
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor
@@ -62,6 +59,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue May 26 2015 Petr Pisar ppi...@redhat.com - 0.46-1
+- 0.46 bump
+
 * Mon May 25 2015 Petr Pisar ppi...@redhat.com - 0.44-1
 - 0.44 bump
 
diff --git a/sources b/sources
index 43f9ad8..81cbeb2 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-27a8d044cce0ebf1c137e9dd959d89c9  Term-UI-0.44.tar.gz
+eaa9240bc44e18dfe558286eb1f3c592  Term-UI-0.46.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Term-UI.git/commit/?h=f22id=15f46d52fe352693630b875565f87b6e702e9fbb
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar pushed to perl-Term-UI (f21). 0.46 bump

2015-05-26 Thread notifications
From af18f93d037bd43d4719975e5360e25bc06eb321 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
Date: Tue, 26 May 2015 08:03:11 +0200
Subject: 0.46 bump


diff --git a/.gitignore b/.gitignore
index 8ad84d1..32e35f3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@ Term-UI-0.18.tar.gz
 /Term-UI-0.38.tar.gz
 /Term-UI-0.42.tar.gz
 /Term-UI-0.44.tar.gz
+/Term-UI-0.46.tar.gz
diff --git a/Term-UI-0.44-Correct-number-of-tests-to-skip-in-t-02_ui.t.patch 
b/Term-UI-0.44-Correct-number-of-tests-to-skip-in-t-02_ui.t.patch
deleted file mode 100644
index b1c149c..000
--- a/Term-UI-0.44-Correct-number-of-tests-to-skip-in-t-02_ui.t.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 136bc1a7ab0672248aa5f87b033ccd9012e8a56a Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
-Date: Mon, 25 May 2015 16:04:39 +0200
-Subject: [PATCH] Correct number of tests to skip in t/02_ui.t
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Running tests without terminal causes a failure because adding a new
-test for multiple choice forgot to increase the number of tests to
-skip when no terminal is available.
-
-CPAN RT#104688
-
-Signed-off-by: Petr Písař ppi...@redhat.com

- t/02_ui.t | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/t/02_ui.t b/t/02_ui.t
-index c2afb35..4e80afc 100644
 a/t/02_ui.t
-+++ b/t/02_ui.t
-@@ -14,7 +14,7 @@ $Term::UI::VERBOSE  = $Term::UI::VERBOSE= 0;
- # SKIP tests if we aren't on a terminal
- SKIP: {
- 
--skip 'not on a terminal', 20 unless -t;
-+skip 'not on a terminal', 21 unless -t;
- 
- ### enable warnings
- $^W = 1;
--- 
-2.1.0
-
diff --git a/perl-Term-UI.spec b/perl-Term-UI.spec
index 55ed3fc..48e1753 100644
--- a/perl-Term-UI.spec
+++ b/perl-Term-UI.spec
@@ -1,13 +1,11 @@
 Name:   perl-Term-UI
-Version:0.44
+Version:0.46
 Release:1%{?dist}
 Summary:Term::ReadLine user interface made easy
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Term-UI/
 Source0:
http://www.cpan.org/authors/id/B/BI/BINGOS/Term-UI-%{version}.tar.gz
-# Fix test plan, bug #1224733, CPAN RT#104688
-Patch0: Term-UI-0.44-Correct-number-of-tests-to-skip-in-t-02_ui.t.patch
 BuildArch:  noarch
 BuildRequires:  perl
 BuildRequires:  perl(ExtUtils::MakeMaker)
@@ -42,7 +40,6 @@ answer was not proper and re-issuing the question.
 
 %prep
 %setup -q -n Term-UI-%{version}
-%patch0 -p1
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor
@@ -62,6 +59,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue May 26 2015 Petr Pisar ppi...@redhat.com - 0.46-1
+- 0.46 bump
+
 * Mon May 25 2015 Petr Pisar ppi...@redhat.com - 0.44-1
 - 0.44 bump
 
diff --git a/sources b/sources
index 43f9ad8..81cbeb2 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-27a8d044cce0ebf1c137e9dd959d89c9  Term-UI-0.44.tar.gz
+eaa9240bc44e18dfe558286eb1f3c592  Term-UI-0.46.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Term-UI.git/commit/?h=f21id=af18f93d037bd43d4719975e5360e25bc06eb321
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Review Swap: orocos-kdl

2015-05-26 Thread Till Hofmann
Hi everyone,

I'm looking for a reviewer for orocos-kdl:
https://bugzilla.redhat.com/show_bug.cgi?id=1076517

I'll be happy to review a package in return.

Thanks,
Till
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Review Swap: orocos-kdl

2015-05-26 Thread gil

Hi
Taken!
can you take this https://bugzilla.redhat.com/show_bug.cgi?id=826038 ?
thanks in advance
gil

Il 26/05/2015 09:16, Till Hofmann ha scritto:

Hi everyone,

I'm looking for a reviewer for orocos-kdl:
https://bugzilla.redhat.com/show_bug.cgi?id=1076517

I'll be happy to review a package in return.

Thanks,
Till


--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[Bug 1158368] bucardo-4.5.0-8.fc22 FTBFS: File not found: /builddir/build/BUILDROOT/bucardo-4.5.0-8.fc22.noarch/usr/share/bucardo/bucardo.schema

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1158368

Petr Šabata psab...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||bucardo-4.5.0-9.fc23
 Resolution|--- |RAWHIDE
Last Closed||2015-05-26 05:16:36



-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

rawhide report: 20150526 changes

2015-05-26 Thread Fedora Rawhide Report
Compose started at Tue May 26 05:15:04 UTC 2015
Broken deps for i386
--
[OpenTK]
OpenTK-1.1-1.4c.fc22.noarch requires mono(mscorlib) = 0:2.0.0.0
OpenTK-1.1-1.4c.fc22.noarch requires mono(System.Xml) = 0:2.0.0.0
OpenTK-1.1-1.4c.fc22.noarch requires mono(System.Windows.Forms) = 
0:2.0.0.0
OpenTK-1.1-1.4c.fc22.noarch requires mono(System.Drawing) = 0:2.0.0.0
OpenTK-1.1-1.4c.fc22.noarch requires mono(System) = 0:2.0.0.0
[RepetierHost]
RepetierHost-0.90D-2.fc21.noarch requires mono(mscorlib) = 0:2.0.0.0
RepetierHost-0.90D-2.fc21.noarch requires mono(System.Xml) = 0:2.0.0.0
RepetierHost-0.90D-2.fc21.noarch requires mono(System.Windows.Forms) = 
0:2.0.0.0
RepetierHost-0.90D-2.fc21.noarch requires mono(System.Drawing) = 
0:2.0.0.0
RepetierHost-0.90D-2.fc21.noarch requires mono(System.Core) = 0:3.5.0.0
RepetierHost-0.90D-2.fc21.noarch requires mono(System) = 0:2.0.0.0
[banshee]
banshee-2.6.2-9.fc23.i686 requires mono(mscorlib) = 0:2.0.0.0
banshee-2.6.2-9.fc23.i686 requires mono(System.Xml) = 0:2.0.0.0
banshee-2.6.2-9.fc23.i686 requires mono(System.Core) = 0:3.5.0.0
banshee-2.6.2-9.fc23.i686 requires mono(System) = 0:2.0.0.0
banshee-2.6.2-9.fc23.i686 requires mono(Mono.Posix) = 0:2.0.0.0
banshee-2.6.2-9.fc23.i686 requires mono(Mono.Cairo) = 0:2.0.0.0
banshee-2.6.2-9.fc23.i686 requires mono(ICSharpCode.SharpZipLib) = 
0:2.84.0.0
[bless]
bless-0.6.0-14.fc22.i686 requires mono(mscorlib) = 0:2.0.0.0
bless-0.6.0-14.fc22.i686 requires mono(System.Xml) = 0:2.0.0.0
bless-0.6.0-14.fc22.i686 requires mono(System) = 0:2.0.0.0
bless-0.6.0-14.fc22.i686 requires mono(Mono.Posix) = 0:2.0.0.0
[boo]
boo-0.9.4.9-11.fc22.i686 requires mono(mscorlib) = 0:2.0.0.0
boo-0.9.4.9-11.fc22.i686 requires mono(System.Xml) = 0:2.0.0.0
boo-0.9.4.9-11.fc22.i686 requires mono(System.Core) = 0:3.5.0.0
boo-0.9.4.9-11.fc22.i686 requires mono(System) = 0:2.0.0.0
boo-0.9.4.9-11.fc22.i686 requires mono(Microsoft.Build.Utilities) = 
0:2.0.0.0
boo-0.9.4.9-11.fc22.i686 requires mono(Microsoft.Build.Tasks) = 
0:2.0.0.0
boo-0.9.4.9-11.fc22.i686 requires mono(Microsoft.Build.Framework) = 
0:2.0.0.0
boo-devel-0.9.4.9-11.fc22.i686 requires mono(mscorlib) = 0:2.0.0.0
boo-devel-0.9.4.9-11.fc22.i686 requires mono(System.Xml) = 0:2.0.0.0
boo-devel-0.9.4.9-11.fc22.i686 requires mono(System.Core) = 0:3.5.0.0
boo-devel-0.9.4.9-11.fc22.i686 requires mono(System) = 0:2.0.0.0
boo-devel-0.9.4.9-11.fc22.i686 requires mono(NAnt.DotNetTasks) = 
0:0.90.3780.0
boo-devel-0.9.4.9-11.fc22.i686 requires mono(NAnt.Core) = 0:0.90.3780.0
[dmlite-plugins-memcache]
dmlite-plugins-memcache-0.5.0-7.fc20.i686 requires libprotobuf.so.8
[gnome-do]
gnome-do-0.95.1-3.fc22.i686 requires mono(mscorlib) = 0:2.0.0.0
gnome-do-0.95.1-3.fc22.i686 requires mono(System) = 0:2.0.0.0
[julia]
julia-0.3.7-2.fc23.i686 requires libLLVM-3.5.so
julia-devel-0.3.7-2.fc23.i686 requires libLLVM-3.5.so
[mesos]
mesos-0.22.0-SNAPSHOT.1.c513126.fc22.1.i686 requires libprotobuf.so.8
python-mesos-0.22.0-SNAPSHOT.1.c513126.fc22.1.i686 requires 
libprotobuf.so.8
[mojarra]
mojarra-2.1.7-8.fc20.noarch requires tomcat-servlet-3.0-api
mojarra-2.1.7-8.fc20.noarch requires tomcat-jsp-2.2-api
mojarra-2.1.7-8.fc20.noarch requires tomcat-el-2.2-api
[mono-tools]
mono-tools-2.10-12.fc22.i686 requires mono(mscorlib) = 0:2.0.0.0
mono-tools-2.10-12.fc22.i686 requires mono(System.Xml) = 0:2.0.0.0
mono-tools-2.10-12.fc22.i686 requires mono(System.Core) = 0:3.5.0.0
mono-tools-2.10-12.fc22.i686 requires mono(System) = 0:2.0.0.0
mono-tools-2.10-12.fc22.i686 requires mono(Mono.Posix) = 0:2.0.0.0
mono-tools-2.10-12.fc22.i686 requires mono(Mono.Cairo) = 0:2.0.0.0
mono-tools-gendarme-2.10-12.fc22.i686 requires mono(mscorlib) = 
0:2.0.0.0
mono-tools-gendarme-2.10-12.fc22.i686 requires mono(System.Xml) = 
0:2.0.0.0
mono-tools-gendarme-2.10-12.fc22.i686 requires 
mono(System.Windows.Forms) = 0:2.0.0.0
mono-tools-gendarme-2.10-12.fc22.i686 requires 
mono(System.Web.Services) = 0:2.0.0.0
mono-tools-gendarme-2.10-12.fc22.i686 requires mono(System.Drawing) = 
0:2.0.0.0
mono-tools-gendarme-2.10-12.fc22.i686 requires mono(System.Core) = 
0:3.5.0.0
mono-tools-gendarme-2.10-12.fc22.i686 requires mono(System) = 0:2.0.0.0
mono-tools-gendarme-2.10-12.fc22.i686 requires 
mono(ICSharpCode.SharpZipLib) = 0:2.84.0.0
mono-tools-ilcontrast-2.10-12.fc22.i686 requires mono(mscorlib) = 
0:2.0.0.0
mono-tools-ilcontrast-2.10-12.fc22.i686 requires mono(System.Xml) = 
0:2.0.0.0
mono-tools-ilcontrast-2.10-12.fc22.i686 requires 

pghmcfc pushed to perl-Sysadm-Install (perl-Sysadm-Install-0.45-1.fc23). Update to 0.45 (..more)

2015-05-26 Thread notifications
From 95395bdcbee921d5fdf6d8ebf63568fe4b7ee717 Mon Sep 17 00:00:00 2001
From: Paul Howarth p...@city-fan.org
Date: Tue, 26 May 2015 12:36:00 +0100
Subject: Update to 0.45

- New upstream release 0.45
  - Fixed manifest and tests for the Windows platform
- Classify buildreqs by usage

diff --git a/perl-Sysadm-Install.spec b/perl-Sysadm-Install.spec
index 87b287f..4b538a7 100644
--- a/perl-Sysadm-Install.spec
+++ b/perl-Sysadm-Install.spec
@@ -1,34 +1,42 @@
 Summary:   Typical installation tasks for system administrators
 Name:  perl-Sysadm-Install
-Version:   0.44
-Release:   3%{?dist}
+Version:   0.45
+Release:   1%{?dist}
 License:   GPL+ or Artistic
 Group: Development/Libraries
 URL:   http://search.cpan.org/dist/Sysadm-Install/
 Source0:   
http://search.cpan.org/CPAN/authors/id/M/MS/MSCHILLI/Sysadm-Install-%{version}.tar.gz
 BuildArch: noarch
+# Module Build
+BuildRequires: perl
+BuildRequires: perl(ExtUtils::MakeMaker)
+# Module Runtime
 BuildRequires: perl(Archive::Tar)
-BuildRequires: perl(Config)
 BuildRequires: perl(Cwd)
 BuildRequires: perl(Encode)
 BuildRequires: perl(Expect)
-BuildRequires: perl(ExtUtils::MakeMaker)
 BuildRequires: perl(File::Basename)
 BuildRequires: perl(File::Copy)
 BuildRequires: perl(File::Path)
+BuildRequires: perl(File::Spec::Functions)
 BuildRequires: perl(File::Temp) = 0.16
 BuildRequires: perl(File::Which) = 1.09
 BuildRequires: perl(HTTP::Request)
 BuildRequires: perl(HTTP::Status)
 BuildRequires: perl(Log::Log4perl) = 1.00
+BuildRequires: perl(Log::Log4perl::Util)
 BuildRequires: perl(LWP::UserAgent)
+BuildRequires: perl(strict)
 BuildRequires: perl(Term::ReadKey)
-# For test suite
+BuildRequires: perl(warnings)
+# Test Suite
+BuildRequires: perl(Carp)
+BuildRequires: perl(File::Spec)
 BuildRequires: perl(Test::More)
-# Runtime deps not automatically picked up by RPM
+BuildRequires: perl(utf8)
+# Runtime
 Requires:  perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 Requires:  perl(Archive::Tar)
-Requires:  perl(Config)
 Requires:  perl(Encode)
 Requires:  perl(Expect)
 Requires:  perl(HTTP::Request)
@@ -67,14 +75,19 @@ find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
 %{_fixperms} %{buildroot}
 
 %files
-%doc Changes README eg
+%doc Changes README eg/
 # one-liner is an overly-generic name to include in %%{_bindir} and is included
 # as %%doc if needed
 %exclude %{_bindir}/one-liner
 %{perl_vendorlib}/Sysadm/
-%{_mandir}/man3/Sysadm::Install.3pm*
+%{_mandir}/man3/Sysadm::Install.3*
 
 %changelog
+* Tue May 26 2015 Paul Howarth p...@city-fan.org - 0.45-1
+- Update to 0.45
+  - Fixed manifest and tests for the Windows platform
+- Classify buildreqs by usage
+
 * Fri Aug 29 2014 Jitka Plesnikova jples...@redhat.com - 0.44-3
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index 0bd7a47..cb92437 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-889528d25c3be2554861040e38fd7229  Sysadm-Install-0.44.tar.gz
+fe364ef1bc081d85183d99ec07e77141  Sysadm-Install-0.45.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Sysadm-Install.git/commit/?h=perl-Sysadm-Install-0.45-1.fc23id=95395bdcbee921d5fdf6d8ebf63568fe4b7ee717
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc uploaded Sysadm-Install-0.45.tar.gz for perl-Sysadm-Install

2015-05-26 Thread notifications
fe364ef1bc081d85183d99ec07e77141  Sysadm-Install-0.45.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Sysadm-Install/Sysadm-Install-0.45.tar.gz/fe364ef1bc081d85183d99ec07e77141/Sysadm-Install-0.45.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: Rapid release for security updates

2015-05-26 Thread Andrew Haley
On 19/05/15 16:20, Kevin Kofler wrote:
 Martin Stransky wrote:
 is there any mechanism how to speed up release of critical security
 fixes by Fedora update system?

 For instance Firefox packages are released *week* after official Mozilla
 release which is really bad.

 Any idea here?
 
 The update stability policies enforced by Bodhi simply need to be 
 repealed. This problem simply did not exist when maintainers were still 
 trusted to be able to do their job.

Or maybe we should modify them for urgent security updates rather than
repeal them totally.  We certainly have delays with Java security
updates on Fedora.  Something needs to be done, but I'm not sure
exactly what.

Andrew.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Rapid release for security updates

2015-05-26 Thread Jiri Eischmann
Reindl Harald píše v Út 19. 05. 2015 v 10:45 +0200:
 
 Am 19.05.2015 um 10:38 schrieb Martin Stransky:
  Hi guys,
  
  is there any mechanism how to speed up release of critical security
  fixes by Fedora update system?
  
  For instance Firefox packages are released *week* after official 
  Mozilla
  release which is really bad.
  
  Any idea here?
 
 and that is *really* a Fedora problem because for CentOS you get 
 critical security updates instantly while the same packages are 
 waiting 
 for days in Fedora

I don't think it's a fair comparison. CentOS gets updates from RHEL
which has an army of paid testers.

Jiri
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: F23 System Wide Change: Mono 4

2015-05-26 Thread than

Hello Timotheus,

the mono crashes during build process on ppc64. For more details please 
take a look

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

Than

Am 18.05.2015 um 13:50 schrieb Timotheus Pokorra:

Hello Dan,


first update
srpm builds fine on f22/s390x
mono segfaults when running monolite on f22/ppc64
build runs well on f22/ppc64le (new arch) after adding ppc64le to the
ExclusiveArch list

Thanks for trying it!
I have added ppc64le in the spec file to the ExclusiveArch list.

I wonder how we should go about the segfault.
Can you fpaste the details please?
Is the segfault reproducible? How can I reproduce this?

Thanks,
   Timotheus


--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[Bug 1225047] New: Upgrade perl-Curses

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225047

Bug ID: 1225047
   Summary: Upgrade perl-Curses
   Product: Fedora
   Version: rawhide
 Component: perl-Curses
  Keywords: FutureFeature
  Assignee: steve.tray...@cern.ch
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
steve.tray...@cern.ch



Latest Fedora delivers 1.28, while upstream released 1.32. Please upgrade the
pacakge.

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc uploaded CPAN-Changes-0.400001.tar.gz for perl-CPAN-Changes

2015-05-26 Thread notifications
ab9cd5a03a505f010469a813801d2e18  CPAN-Changes-0.41.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-CPAN-Changes/CPAN-Changes-0.41.tar.gz/ab9cd5a03a505f010469a813801d2e18/CPAN-Changes-0.41.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc pushed to perl-CPAN-Changes (master). Update to 0.400001 (..more)

2015-05-26 Thread notifications
From 965f9e59a6d3afaed75bdf3e34f588f6605ab01b Mon Sep 17 00:00:00 2001
From: Paul Howarth p...@city-fan.org
Date: Tue, 26 May 2015 14:29:09 +0100
Subject: Update to 0.41
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

- New upstream release 0.41
  - Accept either UTF-8 or ISO-8859-1 files and decode them
  - Only treat bracketed text if it is on its own line with no other brackets
  - Bump version.pm prereq to make sure it works properly
  - Let long tokens (like URLs) overflow rather than splitting them into
multiple lines
  - Don't wrap on non-breaking spaces
  - Clean up packaging
  - Return undef for dates or notes that don't exist
  - Quote meta chars to fix a problem that clobbered dates with timezones due
to the '+' char (GH #20)
- This release by HAARG → update source URL
- Classify buildreqs by usage

diff --git a/perl-CPAN-Changes.spec b/perl-CPAN-Changes.spec
index ac1b90c..06f1b88 100644
--- a/perl-CPAN-Changes.spec
+++ b/perl-CPAN-Changes.spec
@@ -1,28 +1,36 @@
 Name:  perl-CPAN-Changes
 Summary:   Read and write Changes files
-Version:   0.30
-Release:   2%{?dist}
+Version:   0.41
+Release:   1%{?dist}
 License:   GPL+ or Artistic
 Group: Development/Libraries
 URL:   http://search.cpan.org/dist/CPAN-Changes/
-Source0:   
http://search.cpan.org/CPAN/authors/id/B/BR/BRICAS/CPAN-Changes-%{version}.tar.gz
 
+Source0:   
http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/CPAN-Changes-%{version}.tar.gz
 
 BuildArch: noarch
+# Module Build
 BuildRequires: perl
-BuildRequires: perl(Cwd)
 BuildRequires: perl(ExtUtils::MakeMaker)
-BuildRequires: perl(File::Path)
-BuildRequires: perl(Moo)
-BuildRequires: perl(Pod::Usage)
+# Module Runtime
+BuildRequires: perl(Encode)
 BuildRequires: perl(Scalar::Util)
 BuildRequires: perl(strict)
 BuildRequires: perl(Test::Builder)
+BuildRequires: perl(Text::Wrap)
+BuildRequires: perl(version) = 0.99.06
+BuildRequires: perl(warnings)
+# Script Runtime
+BuildRequires: perl(Getopt::Long)
+BuildRequires: perl(Pod::Usage)
+# Test Suite
 BuildRequires: perl(Test::More) = 0.96
+# Optional Tests
+BuildRequires: perl(Moo)
+# Extra Tests
 BuildRequires: perl(Test::Pod) = 1.00
 BuildRequires: perl(Test::Pod::Coverage) = 1.00
-BuildRequires: perl(Text::Wrap)
-BuildRequires: perl(version) = 0.79
-BuildRequires: perl(warnings)
+# Runtime
 Requires:  perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+Requires:  perl(version) = 0.99.06
 
 %description
 It is standard practice to include a Changes file in your distribution. The
@@ -58,13 +66,28 @@ make test TEST_FILES=$(echo $(find xt/ -name '*.t'))
 %{perl_vendorlib}/CPAN/
 %{perl_vendorlib}/Test/
 %{_mandir}/man1/tidy_changelog.1*
-%{_mandir}/man3/CPAN::Changes.3pm*
-%{_mandir}/man3/CPAN::Changes::Group.3pm*
-%{_mandir}/man3/CPAN::Changes::Release.3pm*
-%{_mandir}/man3/CPAN::Changes::Spec.3pm*
-%{_mandir}/man3/Test::CPAN::Changes.3pm*
+%{_mandir}/man3/CPAN::Changes.3*
+%{_mandir}/man3/CPAN::Changes::Group.3*
+%{_mandir}/man3/CPAN::Changes::Release.3*
+%{_mandir}/man3/CPAN::Changes::Spec.3*
+%{_mandir}/man3/Test::CPAN::Changes.3*
 
 %changelog
+* Tue May 26 2015 Paul Howarth p...@city-fan.org - 0.41-1
+- Update to 0.41
+  - Accept either UTF-8 or ISO-8859-1 files and decode them
+  - Only treat bracketed text if it is on its own line with no other brackets
+  - Bump version.pm prereq to make sure it works properly
+  - Let long tokens (like URLs) overflow rather than splitting them into
+multiple lines
+  - Don't wrap on non-breaking spaces
+  - Clean up packaging
+  - Return undef for dates or notes that don't exist
+  - Quote meta chars to fix a problem that clobbered dates with timezones due
+to the '+' char (GH #20)
+- This release by HAARG → update source URL
+- Classify buildreqs by usage
+
 * Fri Aug 29 2014 Jitka Plesnikova jples...@redhat.com - 0.30-2
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index f8af43f..f889dbb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-7e4fe1e341f58a760059a34510ba1766  CPAN-Changes-0.30.tar.gz
+ab9cd5a03a505f010469a813801d2e18  CPAN-Changes-0.41.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-CPAN-Changes.git/commit/?h=masterid=965f9e59a6d3afaed75bdf3e34f588f6605ab01b
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225049] New: perl-SQL-Statement-1.407 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225049

Bug ID: 1225049
   Summary: perl-SQL-Statement-1.407 is available
   Product: Fedora
   Version: rawhide
 Component: perl-SQL-Statement
  Keywords: FutureFeature, Triaged
  Assignee: psab...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, psab...@redhat.com



Latest upstream release: 1.407
Current version/release in rawhide: 1.405-9.fc22
URL: http://search.cpan.org/dist/SQL-Statement/

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.

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225050] New: perl-DateTime-Locale-0.46 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225050

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



Latest upstream release: 0.46
Current version/release in rawhide: 0.45-11.fc22
URL: http://search.cpan.org/dist/DateTime-Locale/

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.

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225050] perl-DateTime-Locale-0.46 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225050



--- Comment #1 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Created attachment 1029939
  -- https://bugzilla.redhat.com/attachment.cgi?id=1029939action=edit
[patch] Update to 0.46 (#1225050)

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225049] perl-SQL-Statement-1.407 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225049



--- Comment #1 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Created attachment 1029938
  -- https://bugzilla.redhat.com/attachment.cgi?id=1029938action=edit
[patch] Update to 1.407 (#1225049)

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225049] perl-SQL-Statement-1.407 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225049



--- Comment #2 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Scratch build failed http://koji.fedoraproject.org/koji/taskinfo?taskID=9851756

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225050] perl-DateTime-Locale-0.46 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225050



--- Comment #2 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Scratch build succeeded
http://koji.fedoraproject.org/koji/taskinfo?taskID=9851759

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: Rapid release for security updates

2015-05-26 Thread Ralf Corsepius

On 05/26/2015 12:10 PM, Andrew Haley wrote:

 Something needs to be done, but I'm not sure
exactly what.


IMO, all this should not be a problem, if collaborative maintenance works.

What I mean, IMO, critical packages should have a sufficient number of 
co-maintainers, who should be presumed to be sufficiently familiar with 
a package to provide enough karma, which would allow such packages to 
pass quickly.


Ralf




--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

pghmcfc pushed to perl-CPAN-Changes (perl-CPAN-Changes-0.400001-1.fc23). Update to 0.400001 (..more)

2015-05-26 Thread notifications
From 965f9e59a6d3afaed75bdf3e34f588f6605ab01b Mon Sep 17 00:00:00 2001
From: Paul Howarth p...@city-fan.org
Date: Tue, 26 May 2015 14:29:09 +0100
Subject: Update to 0.41
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

- New upstream release 0.41
  - Accept either UTF-8 or ISO-8859-1 files and decode them
  - Only treat bracketed text if it is on its own line with no other brackets
  - Bump version.pm prereq to make sure it works properly
  - Let long tokens (like URLs) overflow rather than splitting them into
multiple lines
  - Don't wrap on non-breaking spaces
  - Clean up packaging
  - Return undef for dates or notes that don't exist
  - Quote meta chars to fix a problem that clobbered dates with timezones due
to the '+' char (GH #20)
- This release by HAARG → update source URL
- Classify buildreqs by usage

diff --git a/perl-CPAN-Changes.spec b/perl-CPAN-Changes.spec
index ac1b90c..06f1b88 100644
--- a/perl-CPAN-Changes.spec
+++ b/perl-CPAN-Changes.spec
@@ -1,28 +1,36 @@
 Name:  perl-CPAN-Changes
 Summary:   Read and write Changes files
-Version:   0.30
-Release:   2%{?dist}
+Version:   0.41
+Release:   1%{?dist}
 License:   GPL+ or Artistic
 Group: Development/Libraries
 URL:   http://search.cpan.org/dist/CPAN-Changes/
-Source0:   
http://search.cpan.org/CPAN/authors/id/B/BR/BRICAS/CPAN-Changes-%{version}.tar.gz
 
+Source0:   
http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/CPAN-Changes-%{version}.tar.gz
 
 BuildArch: noarch
+# Module Build
 BuildRequires: perl
-BuildRequires: perl(Cwd)
 BuildRequires: perl(ExtUtils::MakeMaker)
-BuildRequires: perl(File::Path)
-BuildRequires: perl(Moo)
-BuildRequires: perl(Pod::Usage)
+# Module Runtime
+BuildRequires: perl(Encode)
 BuildRequires: perl(Scalar::Util)
 BuildRequires: perl(strict)
 BuildRequires: perl(Test::Builder)
+BuildRequires: perl(Text::Wrap)
+BuildRequires: perl(version) = 0.99.06
+BuildRequires: perl(warnings)
+# Script Runtime
+BuildRequires: perl(Getopt::Long)
+BuildRequires: perl(Pod::Usage)
+# Test Suite
 BuildRequires: perl(Test::More) = 0.96
+# Optional Tests
+BuildRequires: perl(Moo)
+# Extra Tests
 BuildRequires: perl(Test::Pod) = 1.00
 BuildRequires: perl(Test::Pod::Coverage) = 1.00
-BuildRequires: perl(Text::Wrap)
-BuildRequires: perl(version) = 0.79
-BuildRequires: perl(warnings)
+# Runtime
 Requires:  perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+Requires:  perl(version) = 0.99.06
 
 %description
 It is standard practice to include a Changes file in your distribution. The
@@ -58,13 +66,28 @@ make test TEST_FILES=$(echo $(find xt/ -name '*.t'))
 %{perl_vendorlib}/CPAN/
 %{perl_vendorlib}/Test/
 %{_mandir}/man1/tidy_changelog.1*
-%{_mandir}/man3/CPAN::Changes.3pm*
-%{_mandir}/man3/CPAN::Changes::Group.3pm*
-%{_mandir}/man3/CPAN::Changes::Release.3pm*
-%{_mandir}/man3/CPAN::Changes::Spec.3pm*
-%{_mandir}/man3/Test::CPAN::Changes.3pm*
+%{_mandir}/man3/CPAN::Changes.3*
+%{_mandir}/man3/CPAN::Changes::Group.3*
+%{_mandir}/man3/CPAN::Changes::Release.3*
+%{_mandir}/man3/CPAN::Changes::Spec.3*
+%{_mandir}/man3/Test::CPAN::Changes.3*
 
 %changelog
+* Tue May 26 2015 Paul Howarth p...@city-fan.org - 0.41-1
+- Update to 0.41
+  - Accept either UTF-8 or ISO-8859-1 files and decode them
+  - Only treat bracketed text if it is on its own line with no other brackets
+  - Bump version.pm prereq to make sure it works properly
+  - Let long tokens (like URLs) overflow rather than splitting them into
+multiple lines
+  - Don't wrap on non-breaking spaces
+  - Clean up packaging
+  - Return undef for dates or notes that don't exist
+  - Quote meta chars to fix a problem that clobbered dates with timezones due
+to the '+' char (GH #20)
+- This release by HAARG → update source URL
+- Classify buildreqs by usage
+
 * Fri Aug 29 2014 Jitka Plesnikova jples...@redhat.com - 0.30-2
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index f8af43f..f889dbb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-7e4fe1e341f58a760059a34510ba1766  CPAN-Changes-0.30.tar.gz
+ab9cd5a03a505f010469a813801d2e18  CPAN-Changes-0.41.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-CPAN-Changes.git/commit/?h=perl-CPAN-Changes-0.41-1.fc23id=965f9e59a6d3afaed75bdf3e34f588f6605ab01b
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: [Guidelines change] Changes to the packaging guidelines

2015-05-26 Thread Miloslav Trmač
 Yes, that's the way I understand it too. The distinction between local
 and remote is that remote attacks are in general more likely and thus
 dangerous.
 This is a good assumption - I'm sure that on most installations of Fedora
 there's just one or a few trusted users, and they outnumber installations
 with a large list of potentially rogue accounts.

Note that with the recent-ish push towards having not-quite-trusted or even 
not-at-all-trusted applications running in local containers, local attacks over 
the network are more of a threat than in the past. (Not in the sense that 
running untrusted software locally any more of a threat with containers, but in 
the sense that we used to just say “don’t do that” and now some are promising 
that this is, or will be, safe.)
Mirek
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: [Guidelines change] Changes to the packaging guidelines

2015-05-26 Thread Miloslav Trmač
Hello,
  Nevertheless, you raise an interesting question in general.  The way
  I understand the motivation for the restriction is to avoid any
  chance of attack or unexpected access over the network.  [...]
 
 OK, so the question is - are we (still) trying to preclude -local-
 escalation-of-privileges type problems?

Hopefully not just trying to: 
http://fedoraproject.org/wiki/Privilege_escalation_policy .

I.e. there should be no known unrestricted privilege escalation paths.

 If not, then many more
 services can be enabled by default - as long as they bind only to
 unix-domain sockets and/or localhost.

As for restricted/authenticated privilege escalation: the default choice should 
be “switched off”, i.e. never install and enable a service just because someone 
wrote it if there is no actual need to keep it installed and enabled by 
default. (This is the case we’ve been burned with in the 1990’s—“Internet 
server” Linux distributions and UNIX products: package all available servers, 
install and enable all of them by default, they were supposedly either harmless 
or properly authenticated—except that the implementations, not the design 
intent, were insecure.)

Obviously some services are much less, if at all, useful if not enabled by 
default, so this is obviously a balancing act; but I do want to stress that 
“services can be enabled by default” should be viewed more as a responsibility 
and a burden, rather than as a freedom to be celebrated and gleefully used to 
the maximum extent.

 (I guess we're not supposed to
 count on the default firewalls?)

The firewall that allows most incoming connections on Workstation? No.
Mirek
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

psabata pushed to perl-Log-Any (f22). 1.032 bump

2015-05-26 Thread notifications
From c0ec5c314a4dfaa9fec2597df50b5683a71dd1c7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20=C5=A0abata?= con...@redhat.com
Date: Tue, 26 May 2015 17:33:11 +0200
Subject: 1.032 bump


diff --git a/perl-Log-Any.spec b/perl-Log-Any.spec
index b2a90fb..33ebbaf 100644
--- a/perl-Log-Any.spec
+++ b/perl-Log-Any.spec
@@ -1,6 +1,6 @@
 Name:   perl-Log-Any
-Version:1.03
-Release:2%{?dist}
+Version:1.032
+Release:1%{?dist}
 Summary:Bringing loggers and listeners together
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/Log-Any/
@@ -14,20 +14,21 @@ BuildRequires:  perl(warnings)
 # Runtime
 BuildRequires:  perl(B)
 BuildRequires:  perl(base)
-BuildRequires:  perl(Carp)
-# Unused BuildRequires:  perl(Config)
+# XXX: BuildRequires:  perl(Carp)
+# XXX: BuildRequires:  perl(Config)
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(Exporter)
-# Unused BuildRequires:  perl(Fcntl)
-# Unused BuildRequires:  perl(IO::File)
-# Unused BuildRequires:  perl(Test::Builder)
+# XXX: BuildRequires:  perl(Fcntl)
+# XXX: BuildRequires:  perl(IO::File)
+# XXX: BuildRequires:  perl(Test::Builder)
 # Tests only
 BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(File::Temp)
 BuildRequires:  perl(Test::More)
 Requires:   perl(:MODULE_COMPAT_%(eval $(perl -V:version); echo 
$version))
 Requires:   perl(B)
+Requires:   perl(Carp)
 
 # Log::Any::Adapter* merged into Log::Any in 1.00
 Obsoletes:  perl-Log-Any-Adapter  0.11-7
@@ -59,6 +60,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue May 26 2015 Petr Šabata con...@redhat.com - 1.032-1
+- 1.032 bump
+
 * Mon Jan 05 2015 Petr Šabata con...@redhat.com - 1.03-2
 - Obsolete/provide Log::Any::Adapter as it is included in
   this distribution now
diff --git a/sources b/sources
index a449664..3555f6b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-1a43f418fa351d231cbb1c22b55a46e4  Log-Any-1.03.tar.gz
+f4ddf4eaf28c2eb2f4b87d36a10c383d  Log-Any-1.032.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Log-Any.git/commit/?h=f22id=c0ec5c314a4dfaa9fec2597df50b5683a71dd1c7
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: [Guidelines change] Changes to the packaging guidelines

2015-05-26 Thread Stephen Gallagher
On Sun, 2015-05-24 at 14:46 +, Zbigniew Jędrzejewski-Szmek wrote:
 On Sat, May 23, 2015 at 07:24:07AM -0400, Frank Ch. Eigler wrote:
  
  zbyszek wrote:
  
   [...]
   Clarification: this change did not touch this part of the policy: 
   that
   definition got copied over from the guidelines [1]. [...]
  
  (The previous wording said a package that ...does not listen on a
  network socket... can be enabled by default, which was a broader
  restriction and thus more secure.)
 Hm, you're right. I can't say for certain why sgallagh made that 
 rewording,
 but I think it was intended as a clarification, not a change.
 

Yes, I thought my new phrasing was more clearly expressing the original
intent of the statement as I understood it. It appears that I may have
inadvertently raised new questions. I think we should perhaps discuss
this at the weekly FESCo meeting.

This is what I get for trying to improve clarity!


   Nevertheless, you raise an interesting question in general.  The 
   way
   I understand the motivation for the restriction is to avoid any
   chance of attack or unexpected access over the network.  [...]
  
  OK, so the question is - are we (still) trying to preclude -local-
  escalation-of-privileges type problems?  If not, then many more
  services can be enabled by default - as long as they bind only to
  unix-domain sockets and/or localhost.  (I guess we're not supposed 
  to
  count on the default firewalls?)
 Yes, that's the way I understand it too. The distinction between 
 local
 and remote is that remote attacks are in general more likely and thus 
 dangerous.
 This is a good assumption - I'm sure that on most installations of 
 Fedora
 there's just one or a few trusted users, and they outnumber 
 installations
 with a large list of potentially rogue accounts. So it makes sense
 to treat remotely-accessible services more carefully. Nevertheless,
 even though those rules don't spell this out, it would be considered 
 a
 serious bug if a package allowed unexpected privilege escalation by
 the mere fact of being installed, be it through a local network
 socket, a unix socket, setuid binary, or any other mechanism. I think
 this is an implicit shared understanding. Coming back to network
 services: even though packagers don't expect a service to allow
 unexpected privilege escalation, the base of attackers is bigger in
 case of remote services, so those rules disallow running by default 
 as
 an additional safety precaution.
 
 Zbyszek


These are very reasonable arguments. As noted above, I think it's
reasonable for FESCo to make (or reiterate) a stance on this, which we
will then use to update the guidelines.


signature.asc
Description: This is a digitally signed message part
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Rapid release for security updates

2015-05-26 Thread Stephen Gallagher
On Tue, 2015-05-26 at 15:33 +0200, Ralf Corsepius wrote:
 On 05/26/2015 12:10 PM, Andrew Haley wrote:
   Something needs to be done, but I'm not sure
  exactly what.
 
 IMO, all this should not be a problem, if collaborative maintenance 
 works.
 
 What I mean, IMO, critical packages should have a sufficient number 
 of 
 co-maintainers, who should be presumed to be sufficiently familiar 
 with 
 a package to provide enough karma, which would allow such packages to 
 
 pass quickly.
 


That might work for comparatively simple packages, but what about the
kernel? Kernel updates have the potential to completely break things
(particularly if the security patch comes along with a point release).
I'm not trying to disparage the kernel maintainers, but there's
absolutely no way they can test all possible hardware before releasing
an update.

There's still value to the updates-testing repo, even for security
updates.

I agree we need to figure out ways to grease the wheels so that
important updates get out faster, though.

signature.asc
Description: This is a digitally signed message part
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

psabata pushed to perl-Log-Any (master). 1.032 bump

2015-05-26 Thread notifications
From c0ec5c314a4dfaa9fec2597df50b5683a71dd1c7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20=C5=A0abata?= con...@redhat.com
Date: Tue, 26 May 2015 17:33:11 +0200
Subject: 1.032 bump


diff --git a/perl-Log-Any.spec b/perl-Log-Any.spec
index b2a90fb..33ebbaf 100644
--- a/perl-Log-Any.spec
+++ b/perl-Log-Any.spec
@@ -1,6 +1,6 @@
 Name:   perl-Log-Any
-Version:1.03
-Release:2%{?dist}
+Version:1.032
+Release:1%{?dist}
 Summary:Bringing loggers and listeners together
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/Log-Any/
@@ -14,20 +14,21 @@ BuildRequires:  perl(warnings)
 # Runtime
 BuildRequires:  perl(B)
 BuildRequires:  perl(base)
-BuildRequires:  perl(Carp)
-# Unused BuildRequires:  perl(Config)
+# XXX: BuildRequires:  perl(Carp)
+# XXX: BuildRequires:  perl(Config)
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(Exporter)
-# Unused BuildRequires:  perl(Fcntl)
-# Unused BuildRequires:  perl(IO::File)
-# Unused BuildRequires:  perl(Test::Builder)
+# XXX: BuildRequires:  perl(Fcntl)
+# XXX: BuildRequires:  perl(IO::File)
+# XXX: BuildRequires:  perl(Test::Builder)
 # Tests only
 BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(File::Temp)
 BuildRequires:  perl(Test::More)
 Requires:   perl(:MODULE_COMPAT_%(eval $(perl -V:version); echo 
$version))
 Requires:   perl(B)
+Requires:   perl(Carp)
 
 # Log::Any::Adapter* merged into Log::Any in 1.00
 Obsoletes:  perl-Log-Any-Adapter  0.11-7
@@ -59,6 +60,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue May 26 2015 Petr Šabata con...@redhat.com - 1.032-1
+- 1.032 bump
+
 * Mon Jan 05 2015 Petr Šabata con...@redhat.com - 1.03-2
 - Obsolete/provide Log::Any::Adapter as it is included in
   this distribution now
diff --git a/sources b/sources
index a449664..3555f6b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-1a43f418fa351d231cbb1c22b55a46e4  Log-Any-1.03.tar.gz
+f4ddf4eaf28c2eb2f4b87d36a10c383d  Log-Any-1.032.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Log-Any.git/commit/?h=masterid=c0ec5c314a4dfaa9fec2597df50b5683a71dd1c7
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Fedora 22 and missing applications

2015-05-26 Thread Richard Hughes
Quite a few people are going to be installing Fedora 22 in the coming
days, searching for things in the software center and not finding
their esoteric GUI tool. This is because some applications still don’t
ship AppData files, which have become compulsory in the workstation
spin for this release. Luckily, the vast majority of applications that
don't include AppData are not popular and most have little-to-no
upstream activity.

If you want to check an application without installing F22 you can use
this link http://alt.fedoraproject.org/pub/alt/screenshots/f22/matrix.html
-- if you fix an application I'll be regenerating that status page
every 48 hours and shipping new a metadata release in a couple of
weeks.

Richard
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[Bug 1225056] perl-Log-Any-1.032 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225056



--- Comment #3 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
psabata's perl-Log-Any-1.032-1.fc23 completed
http://koji.fedoraproject.org/koji/buildinfo?buildID=639135

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225056] perl-Log-Any-1.032 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225056



--- Comment #4 from Fedora Update System upda...@fedoraproject.org ---
perl-Log-Any-1.032-1.fc22 has been submitted as an update for Fedora 22.
https://admin.fedoraproject.org/updates/perl-Log-Any-1.032-1.fc22

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

psabata uploaded Log-Any-1.032.tar.gz for perl-Log-Any

2015-05-26 Thread notifications
f4ddf4eaf28c2eb2f4b87d36a10c383d  Log-Any-1.032.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Log-Any/Log-Any-1.032.tar.gz/f4ddf4eaf28c2eb2f4b87d36a10c383d/Log-Any-1.032.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

rubygem-logging license change

2015-05-26 Thread Vít Ondruch
FYI,

The rubygem-logging license changed from MIT and (GPLv2 or Ruby or
BSD) to MIT


Vít
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

pghmcfc changed pghmcfc's 'watchcommits' permission on perl-Digest-SHA (el5) to 'Approved'

2015-05-26 Thread notifications
pghmcfc changed pghmcfc's 'watchcommits' permission on perl-Digest-SHA (el5) to 
'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-Digest-SHA/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc changed owner of perl-Digest-SHA (el6) to 'pghmcfc'

2015-05-26 Thread notifications
pghmcfc changed owner of perl-Digest-SHA (el6) to 'pghmcfc'
https://admin.fedoraproject.org/pkgdb/package/perl-Digest-SHA/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc changed pghmcfc's 'watchcommits' permission on perl-Digest-SHA (el6) to 'Approved'

2015-05-26 Thread notifications
pghmcfc changed pghmcfc's 'watchcommits' permission on perl-Digest-SHA (el6) to 
'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-Digest-SHA/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc changed pghmcfc's 'commit' permission on perl-Digest-SHA (el6) to 'Approved'

2015-05-26 Thread notifications
pghmcfc changed pghmcfc's 'commit' permission on perl-Digest-SHA (el6) to 
'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-Digest-SHA/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: Rapid release for security updates

2015-05-26 Thread Reindl Harald



Am 26.05.2015 um 13:26 schrieb Jiri Eischmann:

Reindl Harald píše v Út 19. 05. 2015 v 10:45 +0200:


Am 19.05.2015 um 10:38 schrieb Martin Stransky:

Hi guys,

is there any mechanism how to speed up release of critical security
fixes by Fedora update system?

For instance Firefox packages are released *week* after official
Mozilla
release which is really bad.

Any idea here?


and that is *really* a Fedora problem because for CentOS you get
critical security updates instantly while the same packages are
waiting
for days in Fedora


I don't think it's a fair comparison. CentOS gets updates from RHEL
which has an army of paid testers


it's not a matter of fair and paid testers when i don't get a update on 
machines with updates-testing enabled without going to the koji website 
and download it manually while it's already in CentOS 6/7 which needs to 
wait for RHEL updates and don't cook the packages independent


and especially in case of critical security updates it don't matter if 
something is fair and how it gets achievd, if there is a 0day exploit in 
the wild only the fact matters




signature.asc
Description: OpenPGP digital signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

spot uploaded Test-MockObject-1.20150521.tar.gz for perl-Test-MockObject

2015-05-26 Thread notifications
824d0e0ca23cec908b436db9d95fa457  Test-MockObject-1.20150521.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Test-MockObject/Test-MockObject-1.20150521.tar.gz/824d0e0ca23cec908b436db9d95fa457/Test-MockObject-1.20150521.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225049] perl-SQL-Statement-1.407 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225049

Petr Šabata psab...@redhat.com changed:

   What|Removed |Added

 Depends On||1225110




Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1225110
[Bug 1225110] Review Request: perl-Math-Base-Convert - Very fast base to
base conversion
-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

limb changed perl-sig's 'watchbugzilla' permission on perl-MouseX-StrictConstructor (master) to 'Approved'

2015-05-26 Thread notifications
limb changed perl-sig's 'watchbugzilla' permission on 
perl-MouseX-StrictConstructor (master) to 'Approved'

https://admin.fedoraproject.org/pkgdb/package/perl-MouseX-StrictConstructor/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

limb changed perl-sig's 'watchcommits' permission on perl-MouseX-StrictConstructor (master) to 'Approved'

2015-05-26 Thread notifications
limb changed perl-sig's 'watchcommits' permission on 
perl-MouseX-StrictConstructor (master) to 'Approved'

https://admin.fedoraproject.org/pkgdb/package/perl-MouseX-StrictConstructor/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Fedora 22 for aarch64 is here!

2015-05-26 Thread Peter Robinson
We are proud to announce the official release of Fedora 22 for aarch64,
the community-driven and community-built operating system now available
in Cloud, Server, and Workstation editions.

If that's all you need to hear, jump over to Get Fedora to download
-- or for current users, run the FedUp upgrade tool.

  * https://fedoraproject.org/wiki/Architectures/AArch64/F22/Installation
  * https://fedoraproject.org/wiki/FedUp

In addition to the latest versions of all your favorite free and
open source software, Fedora 22 marks our second release with
distinctly-targeted offerings for cloud computing, the server room,
and the desktops and laptops of software developers and creators
everywhere. Thanks to the hard work of developers, designers,
packagers, translators, testers, documentation writers, and
everyone else, we're incredibly confident in saying that this is
our best and most polished release yet.

Also with this release, we return to our traditional six-month
cadence -- we'll see you back here sometime around Halloween!


Highlights in the Fedora 22 release
===

Every Fedora release has its own character. If this release had a
human analogue, it'd be Fedora 21 after it'd been to college,
landed a good job, and kept its New Year's Resolution to go to the
gym on a regular basis. What we're saying is that Fedora 22 has
built on the foundation we laid with Fedora 21 and the work to
create distinct editions of Fedora focused on the desktop, server,
and cloud (respectively). It's not radically different, but there
are a fair amount of new features coupled with features we've
already introduced but have improved for Fedora 22.

Fedora Server
-

* Database Server Role -- The Fedora Server edition focuses on easy of
  different server roles. Fedora 21 debuted with an Domain Controller
  Role featuring FreeIPA. For this release, we've added a Database
  Server role, built around PostgreSQL.

* Default to XFS filesystem -- The default file system type for
  Fedora Server installs will be XFS running atop LVM for all
  partitions except /boot. The /boot partition will remain a non-LVM,
  ext4 partition due to technological limitations of the bootloader.

* Cockpit will be compatible between OS releases -- Cockpit is a
  server manager that makes it easy to administer your GNU/Linux
  servers via a web browser.

  - Easy to use. Cockpit is perfect for new sysadmins, allowing
them to easily perform simple tasks such as storage
administration, inspecting journals and starting and stopping
services.

  - No interference. Jumping between the terminal and the web
tool is no problem. A service started via Cockpit can be
stopped via the terminal. Likewise, if an error occurs in the
terminal, it can be seen in the Cockpit journal interface.

  - Multi-server. You can monitor and administer several servers
at the same time.


Other changes of note
=

Faster and better dependency management with DNF


With Fedora 22, we're introducing a major change under the hood.
Specifically, we're now using DNF and hawkey to manage packages.
DNF is much like the Yum software package manager (it's largely
command-line compatible), but re-written and re-engineered to
provide optimal performance and (along with Hawkey) provide a
strict API definition for plugins and extending projects. DNF also
makes use of the libsolv library initially pioneered by the
openSUSE Project to provide faster and better dependency
management.

It also boasts a better performance and memory footprint vs. Yum,
and is designed to have a cleaner codebase and be easier to
maintain.

If you're using the Fedora 22 Workstation edition, and managing
packages with the Software Application, odds are you won't notice a
difference. Server and Cloud users who fall back on Yum commands
will receive a reminder (courtesy of dnf-yum) that Yum is
deprecated and DNF is now the default package manager. DNF has been
in development for quite some time, so we're confident it's ready
for prime time. The classic Yum command line tool has been renamed
to yum-deprecated as a transitional step for tools still using it.
See Read The Docs for compatibility changes from Yum to DNF in
detail.

GNU Compiler Collection 5
-

Fedora 22 comes with GCC 5.1 as the primary compiler suite.


Downloads, upgrades, documentation, and common bugs
==

You can start by downloading Fedora 22:

* https://fedoraproject.org/wiki/Architectures/AArch64/F22/Installation

If you are upgrading from a previous release of Fedora, refer to:

* http://fedoraproject.org/wiki/Upgrading

Fedora's FedUp utility enables an easy upgrade to Fedora 22 from
previous releases. See the FedUp page on the Fedora wiki for more
information:

* https://fedoraproject.org/wiki/FedUp

Documentation
-

Read the full 

Re: Fedora 22 and missing applications

2015-05-26 Thread Hans de Goede

Hi,

On 05/26/2015 05:33 PM, Richard Hughes wrote:

Quite a few people are going to be installing Fedora 22 in the coming
days, searching for things in the software center and not finding
their esoteric GUI tool. This is because some applications still don’t
ship AppData files, which have become compulsory in the workstation
spin for this release. Luckily, the vast majority of applications that
don't include AppData are not popular and most have little-to-no
upstream activity.

If you want to check an application without installing F22 you can use
this link http://alt.fedoraproject.org/pub/alt/screenshots/f22/matrix.html


What does dead in that table mean? I see a lot of games marked this way,
and yes many games see little upstream activity, because once a game is
finished it typically really is finished.

If I add appdata files to packages marked dead, will that make them
available in the software center? Or ... ?

Regards,

Hans
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

limb changed psabata's 'approveacls' permission on perl-MouseX-StrictConstructor (master) to 'Approved'

2015-05-26 Thread notifications
limb changed psabata's 'approveacls' permission on 
perl-MouseX-StrictConstructor (master) to 'Approved'

https://admin.fedoraproject.org/pkgdb/package/perl-MouseX-StrictConstructor/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Fedora 22 for aarch64 is here!

2015-05-26 Thread Peter Robinson
We are proud to announce the official release of Fedora 22 for aarch64,
the community-driven and community-built operating system now available
in Cloud, Server, and Workstation editions.

If that's all you need to hear, jump over to Get Fedora to download
-- or for current users, run the FedUp upgrade tool.

  * https://fedoraproject.org/wiki/Architectures/AArch64/F22/Installation
  * https://fedoraproject.org/wiki/FedUp

In addition to the latest versions of all your favorite free and
open source software, Fedora 22 marks our second release with
distinctly-targeted offerings for cloud computing, the server room,
and the desktops and laptops of software developers and creators
everywhere. Thanks to the hard work of developers, designers,
packagers, translators, testers, documentation writers, and
everyone else, we're incredibly confident in saying that this is
our best and most polished release yet.

Also with this release, we return to our traditional six-month
cadence -- we'll see you back here sometime around Halloween!


Highlights in the Fedora 22 release
===

Every Fedora release has its own character. If this release had a
human analogue, it'd be Fedora 21 after it'd been to college,
landed a good job, and kept its New Year's Resolution to go to the
gym on a regular basis. What we're saying is that Fedora 22 has
built on the foundation we laid with Fedora 21 and the work to
create distinct editions of Fedora focused on the desktop, server,
and cloud (respectively). It's not radically different, but there
are a fair amount of new features coupled with features we've
already introduced but have improved for Fedora 22.

Fedora Server
-

* Database Server Role -- The Fedora Server edition focuses on easy of
  different server roles. Fedora 21 debuted with an Domain Controller
  Role featuring FreeIPA. For this release, we've added a Database
  Server role, built around PostgreSQL.

* Default to XFS filesystem -- The default file system type for
  Fedora Server installs will be XFS running atop LVM for all
  partitions except /boot. The /boot partition will remain a non-LVM,
  ext4 partition due to technological limitations of the bootloader.

* Cockpit will be compatible between OS releases -- Cockpit is a
  server manager that makes it easy to administer your GNU/Linux
  servers via a web browser.

  - Easy to use. Cockpit is perfect for new sysadmins, allowing
them to easily perform simple tasks such as storage
administration, inspecting journals and starting and stopping
services.

  - No interference. Jumping between the terminal and the web
tool is no problem. A service started via Cockpit can be
stopped via the terminal. Likewise, if an error occurs in the
terminal, it can be seen in the Cockpit journal interface.

  - Multi-server. You can monitor and administer several servers
at the same time.


Other changes of note
=

Faster and better dependency management with DNF


With Fedora 22, we're introducing a major change under the hood.
Specifically, we're now using DNF and hawkey to manage packages.
DNF is much like the Yum software package manager (it's largely
command-line compatible), but re-written and re-engineered to
provide optimal performance and (along with Hawkey) provide a
strict API definition for plugins and extending projects. DNF also
makes use of the libsolv library initially pioneered by the
openSUSE Project to provide faster and better dependency
management.

It also boasts a better performance and memory footprint vs. Yum,
and is designed to have a cleaner codebase and be easier to
maintain.

If you're using the Fedora 22 Workstation edition, and managing
packages with the Software Application, odds are you won't notice a
difference. Server and Cloud users who fall back on Yum commands
will receive a reminder (courtesy of dnf-yum) that Yum is
deprecated and DNF is now the default package manager. DNF has been
in development for quite some time, so we're confident it's ready
for prime time. The classic Yum command line tool has been renamed
to yum-deprecated as a transitional step for tools still using it.
See Read The Docs for compatibility changes from Yum to DNF in
detail.

GNU Compiler Collection 5
-

Fedora 22 comes with GCC 5.1 as the primary compiler suite.


Downloads, upgrades, documentation, and common bugs
==

You can start by downloading Fedora 22:

* https://fedoraproject.org/wiki/Architectures/AArch64/F22/Installation

If you are upgrading from a previous release of Fedora, refer to:

* http://fedoraproject.org/wiki/Upgrading

Fedora's FedUp utility enables an easy upgrade to Fedora 22 from
previous releases. See the FedUp page on the Fedora wiki for more
information:

* https://fedoraproject.org/wiki/FedUp

Documentation
-

Read the full 

Re: Fedora 22 and missing applications

2015-05-26 Thread Richard Hughes
On 26 May 2015 at 19:56, Hans de Goede hdego...@redhat.com wrote:
 What does dead in that table mean? I see a lot of games marked this way,
 and yes many games see little upstream activity, because once a game is
 finished it typically really is finished.

Dead means no upstream release in 5 years.

 If I add appdata files to packages marked dead, will that make them
 available in the software center? Or ... ?

Yes, that shows you care as a packager and allows you to rescue
otherwise unloved applications.

Richard
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Schedule for Wednesday's FESCo Meeting (2015-05-27)

2015-05-26 Thread Kevin Fenzi
Following is the list of topics that will be discussed in the FESCo
meeting tomorrow at 18:00UTC (1:00pm EST) in #fedora-meeting on
irc.freenode.net.

Links to all tickets below can be found at: 
https://fedorahosted.org/fesco/report/9

= Followups =

#topic #1441Packaging: Practices for Migration of cron jobs to systemd 
timer units
.fesco 1441
.fesco 1446

= New business =

#topic #1444 updates deliverables
.fesco 1444

#topic #1445 F23 Self Contained Changes
.fesco 1445

#topic #1435 Approving exceptions to the package review process
.fesco 1435

= Open Floor = 

For more complete details, please visit each individual ticket.  The
report of the agenda items can be found at
https://fedorahosted.org/fesco/report/9

If you would like to add something to this agenda, you can reply to
this e-mail, file a new ticket at https://fedorahosted.org/fesco,
e-mail me directly, or bring it up at the end of the meeting, during
the open floor topic. Note that added topics may be deferred until
the following meeting.


pgpx69vHiGkt1.pgp
Description: OpenPGP digital signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: [Guidelines change] Changes to the packaging guidelines

2015-05-26 Thread Frank Ch. Eigler

sgallagh wrote:

 [...]  Yes, I thought my new phrasing was more clearly expressing
 the original intent of the statement as I understood it. [...]  I
 think we should perhaps discuss this at the weekly FESCo meeting.

https://fedorahosted.org/fesco/ticket/1446

 This is what I get for trying to improve clarity!

No good deed goes unpunished! :-)

- FChE
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Fedora 22 and missing applications

2015-05-26 Thread Reindl Harald



Am 26.05.2015 um 22:48 schrieb Richard Hughes:

On 26 May 2015 at 19:56, Hans de Goede hdego...@redhat.com wrote:

What does dead in that table mean? I see a lot of games marked this way,
and yes many games see little upstream activity, because once a game is
finished it typically really is finished.


Dead means no upstream release in 5 years


that definition is simply broken
if it ain't broken don't fix it

no idea why people these days always think everything needs massive 
change sand new releases each week to be fresh (and buggy all the time)


you need learn to accept that software reaches the point where iot is 
just *read yand finished* just because it does what it is supposed to do 
and needs ntohing fixed or changed all the time



If I add appdata files to packages marked dead, will that make them
available in the software center? Or ... ?


Yes, that shows you care as a packager and allows you to rescue
otherwise unloved applications


who are you to define if an application is loved

there are likely users who love it longer than you appeared with the 
appdata idea at all and install, upgrade it with no need for any shiny 
interface




signature.asc
Description: OpenPGP digital signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Fedora 22 and missing applications

2015-05-26 Thread Matthew Miller
On Tue, May 26, 2015 at 11:10:55PM +0200, Reindl Harald wrote:
 Yes, that shows you care as a packager and allows you to rescue
 otherwise unloved applications
 who are you to define if an application is loved

I think there is a language / cultural barrier here — I don't think
Richard at all means to say that no one cares for these.



-- 
Matthew Miller
mat...@fedoraproject.org
Fedora Project Leader
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

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

2015-05-26 Thread updates
The following Fedora EPEL 6 Security updates need testing:
 Age  URL
 1130  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2012-5620/bugzilla-3.4.14-2.el6
 194  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-4008/cross-binutils-2.23.51.0.3-1.el6.1
  55  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-1501/strongswan-5.3.0-1.el6
  46  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-5742/asterisk-1.8.32.3-1.el6
  26  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6089/drupal7-views-3.11-1.el6
   6  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6299/zarafa-7.1.12-2.el6
   6  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6361/torque-4.2.10-3.el6
   6  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6294/hostapd-2.0-6.el6
   0  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6400/ntfs-3g-2015.3.14-2.el6
   0  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6421/php-ZendFramework-1.12.13-1.el6


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

csdiff-1.2.3-1.el6
csmock-1.8.1-1.el6
getdns-0.2.0-1.el6
libtorrent-0.13.4-3.el6
mozilla-requestpolicy-1.0-0.6.20150522git631b52.el6
nfs-ganesha-2.2.0-2.el6
ntfs-3g-2015.3.14-2.el6
php-ZendFramework-1.12.13-1.el6
php-google-apiclient-1.1.4-1.el6
php-horde-Horde-Crypt-Blowfish-1.1.0-1.el6
php-horde-Horde-Date-2.1.0-1.el6
php-horde-Horde-Mime-2.9.1-1.el6
php-horde-Horde-Share-2.0.7-1.el6
php-pimple1-1.1.1-4.el6
php-znerol-php-stringprep-0-0.1.20150519git804b0d5.el6
python-bugzilla-1.2.1-1.el6
python-regex-2015.05.10-1.el6
python-salttesting-2015.5.8-4.el6
rc-1.7.4-1.el6
tor-0.2.6.8-1.el6

Details about builds:



 csdiff-1.2.3-1.el6 (FEDORA-EPEL-2015-6398)
 Non-interactive tools for processing code scan results in plain-text

Update Information:

- update to latest upstream bugfix release (1.2.3)

ChangeLog:

* Tue May 26 2015 Kamil Dudka kdu...@redhat.com 1.2.3-1
- update to latest upstream release




 csmock-1.8.1-1.el6 (FEDORA-EPEL-2015-6409)
 A mock wrapper for Static Analysis tools

Update Information:

- update to latest upstream bugfix release (1.8.1)

ChangeLog:

* Tue May 26 2015 Kamil Dudka kdu...@redhat.com 1.8.1-1
- update to latest upstream




 getdns-0.2.0-1.el6 (FEDORA-EPEL-2015-6423)
 Modern asynchronous API to the DNS

Update Information:

Updated to 0.2.0 which includes full DNS over TLS support

ChangeLog:

* Mon May 25 2015 Paul Wouters pwout...@redhat.com - 0.2.0-1
- Updated to 0.2.0 which includes full DNS over TLS support
- Updated spurious execute bit fixes
- Added explicit --with-* lines to make dependancies clear




 libtorrent-0.13.4-3.el6 (FEDORA-EPEL-2015-6383)
 BitTorrent library with a focus on high performance  good code

Update Information:

Rebuild for rtorrent update

ChangeLog:

* Sun May 24 2015 Adam Huffman bl...@verdurin.com - 0.13.4-3
- Rebuild for rtorrent update
* Sat Jun  7 2014 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.13.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Sun May 25 2014 Ankur Sinha ankursinha AT fedoraproject DOT org 0.13.4-1
- Update to 0.13.4
- Drop patch - no longer needed
* Sat Aug  3 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.13.3-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Sat Mar 23 2013 Ankur Sinha ankursinha AT fedoraproject DOT org 0.13.3-4
- Bad patch name. Paste error
* Sat Mar 23 2013 Ankur Sinha ankursinha AT fedoraproject DOT org 0.13.3-3
- Add patch to support ARM 64 support
* Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.13.3-2
- Rebuilt for 

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

2015-05-26 Thread updates
The following Fedora EPEL 5 Security updates need testing:
 Age  URL
 1130  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2012-5630/bugzilla-3.2.10-5.el5
 584  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11893/libguestfs-1.20.12-1.el5
 348  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1626/puppet-2.7.26-1.el5
 198  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-3849/sblim-sfcb-1.3.8-2.el5
  26  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6090/drupal7-views-3.11-1.el5
  12  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6286/phpMyAdmin4-4.0.10.10-1.el5
   6  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6345/zarafa-7.1.12-2.el5,php53-mapi-7.1.12-2.el5
   6  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6319/torque-4.2.10-3.el5


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

rc-1.7.4-1.el5

Details about builds:



 rc-1.7.4-1.el5 (FEDORA-EPEL-2015-6401)
 Re-implementation for Unix of the Plan 9 shell

Update Information:

rc 1.7.4


  * Licensing: due to GPL compatibility concerns, the license is changed again 
to the zlib license. (N.B. This license change was agreed and approved by 
Byron Rakitzis, who is the copyright holder.)
  * Testing: swap arguments to mktemp to be kinder to NetBSD (thanks Piotr 
Meyer).

ChangeLog:

* Wed May 13 2015 Robert Scheck rob...@fedoraproject.org 1.7.4-1
- Upgrade to 1.7.4


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


Re: Fedora 22 and missing applications

2015-05-26 Thread Richard Hughes
On 26 May 2015 at 22:10, Reindl Harald h.rei...@thelounge.net wrote:
 you need learn to accept that software reaches the point where iot is just
 *read yand finished* just because it does what it is supposed to do and
 needs ntohing fixed or changed all the time

I assume you can point to several high-quality desktop GUI
applications with 100% translator coverage with no reported bugs
without a release in the last five years?

 who are you to define if an application is loved

I'm the upstream and downstream maintainer of libappstream-glib,
appstream-data, gnome-software, libhif, PackageKit and other software.
I've been working in open source software for over a decade, most of
that time working for Red Hat maintaining my packages in Fedora and
RHEL. I've put significant amounts of work and personal time into
making installing software easier. I like to believe software should
be managed as a meritocracy, where the people doing all the hard work
get to decide the direction a project gets to go.

 there are likely users who love it longer than you appeared with the appdata
 idea at all and install, upgrade it with no need for any shiny interface

Sure, I'm not taking applications away from users. I'm saying that we
need to raise the bar on application quality. If you want to be in the
club, you have to play by the rules[1].

Richard

[1] 
https://github.com/hughsie/appstream-glib/blob/master/README.md#guidelines-for-applications
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[Bug 1225066] New: perl-Test-MockObject-1.20150521 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225066

Bug ID: 1225066
   Summary: perl-Test-MockObject-1.20150521 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Test-MockObject
  Keywords: FutureFeature, Triaged
  Assignee: tcall...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
tcall...@redhat.com



Latest upstream release: 1.20150521
Current version/release in rawhide: 1.20140408-1.fc22
URL: http://search.cpan.org/dist/Test-MockObject/

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.

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225066] perl-Test-MockObject-1.20150521 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225066



--- Comment #1 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Created attachment 1029950
  -- https://bugzilla.redhat.com/attachment.cgi?id=1029950action=edit
[patch] Update to 1.20150521 (#1225066)

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: Rapid release for security updates

2015-05-26 Thread Alexander Ploumistos
We don't need to complicate things, whenever such critical updates come
along, the maintainers can post a message here and in the users ml or even
in the forum (somewhere it will be immediately visible). A template for a
message detailing the bodhi-karma process, with links to the relevant page
for each fedora version might come in handy, as a lot of people using
packages from the *-testing repositories are not aware of the update
internals.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

pghmcfc uploaded parent-0.233.tar.gz for perl-parent

2015-05-26 Thread notifications
fb2d4803c7c2423bae9403bb1cb48384  parent-0.233.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-parent/parent-0.233.tar.gz/fb2d4803c7c2423bae9403bb1cb48384/parent-0.233.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

psabata pushed to perl-Scalar-List-Utils (f22). 1.42 bump

2015-05-26 Thread notifications
From 9c0879e9ec1344c8f1befd77e2347430fbd9990e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20=C5=A0abata?= con...@redhat.com
Date: Tue, 26 May 2015 17:25:37 +0200
Subject: 1.42 bump


diff --git a/perl-Scalar-List-Utils.spec b/perl-Scalar-List-Utils.spec
index 8bf491b..05a772e 100644
--- a/perl-Scalar-List-Utils.spec
+++ b/perl-Scalar-List-Utils.spec
@@ -1,6 +1,6 @@
 Name:   perl-Scalar-List-Utils
 Epoch:  1
-Version:1.41
+Version:1.42
 Release:1%{?dist}
 Summary:A selection of general-utility scalar and list subroutines
 License:GPL+ or Artistic
@@ -69,6 +69,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue May 26 2015 Petr Šabata con...@redhat.com - 1:1.42-1
+- 1.42 bump
+
 * Mon Nov 24 2014 Petr Šabata con...@redhat.com - 1:1.41-1
 - 1.41 bump; various enhancements
 
diff --git a/sources b/sources
index 50e420b..b7b4bd9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-01fefd526d2e031efd0f78264c77eb7e  Scalar-List-Utils-1.41.tar.gz
+a76768c6e0f92eefb6d4b3b779469c3d  Scalar-List-Utils-1.42.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Scalar-List-Utils.git/commit/?h=f22id=9c0879e9ec1344c8f1befd77e2347430fbd9990e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc pushed to perl-parent (perl-parent-0.233-1.fc23). Update to 0.233 (..more)

2015-05-26 Thread notifications
From 2e61e65c47471c215d3aeefb1d86ca080dfb1687 Mon Sep 17 00:00:00 2001
From: Paul Howarth p...@city-fan.org
Date: Tue, 26 May 2015 15:09:34 +0100
Subject: Update to 0.233

- New upstream release 0.233
  - The diagnostic about inheriting from ourselves was removed; it served no
purpose as Perl already warns if we try to inherit in a circular way

diff --git a/perl-parent.spec b/perl-parent.spec
index 9d0a3a7..7171f3b 100644
--- a/perl-parent.spec
+++ b/perl-parent.spec
@@ -1,6 +1,6 @@
 Name:  perl-parent
 Epoch: 1
-Version:   0.232
+Version:   0.233
 Release:   1%{?dist}
 Summary:   Establish an ISA relationship with base classes at compile time
 License:   GPL+ or Artistic
@@ -61,6 +61,11 @@ rm -rf %{buildroot}
 %{_mandir}/man3/parent.3*
 
 %changelog
+* Tue May 26 2015 Paul Howarth p...@city-fan.org - 1:0.233-1
+- Update to 0.233
+  - The diagnostic about inheriting from ourselves was removed; it served no
+purpose as Perl already warns if we try to inherit in a circular way
+
 * Fri Mar 20 2015 Paul Howarth p...@city-fan.org - 1:0.232-1
 - Update to 0.232
   - Change line-endings in parent-pmc.t to unix EOLs so that bleadperl is happy
diff --git a/sources b/sources
index 7bb4dc5..992646e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-8f3da84be2318ad4a1e7ff2e60a10d68  parent-0.232.tar.gz
+fb2d4803c7c2423bae9403bb1cb48384  parent-0.233.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-parent.git/commit/?h=perl-parent-0.233-1.fc23id=2e61e65c47471c215d3aeefb1d86ca080dfb1687
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Orphaned Packages in rawhide (2015-05-26)

2015-05-26 Thread opensource
The following packages are orphaned and will be retired when they
are orphaned for six weeks, unless someone adopts them. If you know for sure
that the package should be retired, please do so now with a proper reason:
https://fedoraproject.org/wiki/How_to_remove_a_package_at_end_of_life

Note: If you received this mail directly you (co)maintain one of the affected
packages or a package that depends on one. Please adopt the affected package or
retire your depending package to avoid broken dependencies, otherwise your
package will be retired when the affected package gets retired.

  Package(co)maintainers  Status Change 
===
SFML   orphan, sonkun 0 weeks ago   
blahtexml  orphan 3 weeks ago   
gvrpcd orphan 3 weeks ago   
nss_compat_osslorphan, kdudka, mharmsen, rcritten,3 weeks ago   
   rrelyea  
obexftporphan, itamarjp   7 weeks ago   
ovirt-node orphan, apevec, fabiand, jboggs,   0 weeks ago   
   mburns72h, pmyers
python-sqlalchemy0.5   orphan 7 weeks ago   
python-sqlamp  orphan 7 weeks ago   

The following packages require above mentioned packages:
Depending on: SFML (1), status change: 2015-05-23 (0 weeks ago)
marsshooter (maintained by: martinkg)
marsshooter-0.7.5-7.20140507gitc855d04.fc23.i686 requires 
libsfml-audio.so.2, libsfml-graphics.so.2, libsfml-system.so.2, 
libsfml-window.so.2
marsshooter-0.7.5-7.20140507gitc855d04.fc23.src requires 
SFML-devel = 2.1-4.fc23


Depending on: nss_compat_ossl (1), status change: 2015-04-29 (3 weeks ago)
centerim (maintained by: lkundrak, awjb)
centerim-4.22.10-17.fc23.i686 requires libnss_compat_ossl.so.0
centerim-4.22.10-17.fc23.src requires nss_compat_ossl-devel = 
0.9.6-9.fc22


Depending on: python-sqlalchemy0.5 (1), status change: 2015-03-31 (7 weeks ago)
python-migrate0.5 (maintained by: lmacken, mbacovsk)
python-migrate0.5-0.5.4-7.fc21.noarch requires 
python-sqlalchemy0.5 = 0.5.8-11.fc19
python-migrate0.5-0.5.4-7.fc21.src requires 
python-sqlalchemy0.5 = 0.5.8-11.fc19


Affected (co)maintainers
apevec: ovirt-node
awjb: nss_compat_ossl
fabiand: ovirt-node
itamarjp: obexftp
jboggs: ovirt-node
kdudka: nss_compat_ossl
lkundrak: nss_compat_ossl
lmacken: python-sqlalchemy0.5
martinkg: SFML
mbacovsk: python-sqlalchemy0.5
mburns72h: ovirt-node
mharmsen: nss_compat_ossl
pmyers: ovirt-node
rcritten: nss_compat_ossl
rrelyea: nss_compat_ossl
sonkun: SFML

Orphans (8): SFML blahtexml gvrpcd nss_compat_ossl obexftp ovirt-node
python-sqlalchemy0.5 python-sqlamp


Orphans (dependend on) (3): SFML nss_compat_ossl python-sqlalchemy0.5


Orphans (rawhide) for at least 6 weeks (dependend on) (1):
python-sqlalchemy0.5


Orphans  (rawhide)(not depended on) (5): blahtexml gvrpcd obexftp
ovirt-node python-sqlamp


Orphans (rawhide) for at least 6 weeks (not dependend on) (2): obexftp
python-sqlamp


Depending packages (rawhide) (3): centerim marsshooter
python-migrate0.5


Packages depending on packages orphaned (rawhide) for more than 6
weeks (1): python-migrate0.5


Not found in repo (rawhide) (1): ovirt-node

-- 
The script creating this output is run and developed by Fedora
Release Engineering. Please report issues at its trac instance:
https://fedorahosted.org/rel-eng/
The sources of this script can be found at:
https://git.fedorahosted.org/cgit/releng/tree/scripts/find_unblocked_orphans.py
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Orphaned Packages in epel7 (2015-05-26)

2015-05-26 Thread opensource
The following packages are orphaned and will be retired when they
are orphaned for six weeks, unless someone adopts them. If you know for sure
that the package should be retired, please do so now with a proper reason:
https://fedoraproject.org/wiki/How_to_remove_a_package_at_end_of_life

Note: If you received this mail directly you (co)maintain one of the affected
packages or a package that depends on one. Please adopt the affected package or
retire your depending package to avoid broken dependencies, otherwise your
package will be retired when the affected package gets retired.

Package(co)maintainersStatus Change 
===
perl-Env-Path  orphan, georgiou   5 weeks ago   
perl-Net-Netmask   orphan, perl-sig   0 weeks ago   
qupzilla   orphan 0 weeks ago   

The following packages require above mentioned packages:
Depending on: perl-Net-Netmask (3), status change: 2015-05-21 (0 weeks ago)
dnsenum (maintained by: fab)
dnsenum-1.2.4.1-1.el7.noarch requires perl(Net::Netmask) = 
1.9015

perl-Net-NBName (maintained by: remi, perl-sig)
perl-Net-NBName-0.26-17.el7.noarch requires perl(Net::Netmask) 
= 1.9015

perl-Net-Pcap-Easy (maintained by: ddick, perl-sig)
perl-Net-Pcap-Easy-1.4210-1.el7.noarch requires 
perl(Net::Netmask) = 1.9015
perl-Net-Pcap-Easy-1.4210-1.el7.src requires perl(Net::Netmask) 
= 1.9015


Affected (co)maintainers
ddick: perl-Net-Netmask
fab: perl-Net-Netmask
georgiou: perl-Env-Path
perl-sig: perl-Net-Netmask
remi: perl-Net-Netmask

Orphans (3): perl-Env-Path perl-Net-Netmask qupzilla


Orphans (dependend on) (1): perl-Net-Netmask


Orphans (epel7) for at least 6 weeks (dependend on) (0):


Orphans  (epel7)(not depended on) (2): perl-Env-Path qupzilla


Orphans (epel7) for at least 6 weeks (not dependend on) (0):


Depending packages (epel7) (3): dnsenum perl-Net-NBName
perl-Net-Pcap-Easy


Packages depending on packages orphaned (epel7) for more than 6 weeks
(0):


Not found in repo (epel7) (2): perl-Env-Path qupzilla

-- 
The script creating this output is run and developed by Fedora
Release Engineering. Please report issues at its trac instance:
https://fedorahosted.org/rel-eng/
The sources of this script can be found at:
https://git.fedorahosted.org/cgit/releng/tree/scripts/find_unblocked_orphans.py
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

spot pushed to perl-Test-MockObject (master). update to 1.20150521

2015-05-26 Thread notifications
From 5041e1d33864b099b134dd584bf804cfa51e619d Mon Sep 17 00:00:00 2001
From: Tom Callaway s...@fedoraproject.org
Date: Tue, 26 May 2015 10:26:43 -0400
Subject: update to 1.20150521


diff --git a/.gitignore b/.gitignore
index b5eb0ff..0ae376e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 Test-MockObject-1.09.tar.gz
 /Test-MockObject-1.20120301.tar.gz
 /Test-MockObject-1.20140408.tar.gz
+/Test-MockObject-1.20150521.tar.gz
diff --git a/perl-Test-MockObject.spec b/perl-Test-MockObject.spec
index e939151..2ab144f 100644
--- a/perl-Test-MockObject.spec
+++ b/perl-Test-MockObject.spec
@@ -1,5 +1,5 @@
 Name:   perl-Test-MockObject
-Version:1.20140408
+Version:1.20150521
 Release:1%{?dist}
 Summary:Perl extension for emulating troublesome interfaces
 Group:  Development/Libraries
@@ -49,6 +49,9 @@ PERL_RUN_ALL_TESTS=1 make test
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Tue May 26 2015 Tom Callaway s...@fedoraproject.org - 1.20150521-1
+- update to 1.20150521
+
 * Tue Feb  3 2015 Tom Callaway s...@fedoraproject.org - 1.20140408-1
 - update to 1.20140408
 
diff --git a/sources b/sources
index 5b25685..82bd59d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-df25fe07981cf1a533bf9e4c65c130ec  Test-MockObject-1.20140408.tar.gz
+824d0e0ca23cec908b436db9d95fa457  Test-MockObject-1.20150521.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Test-MockObject.git/commit/?h=masterid=5041e1d33864b099b134dd584bf804cfa51e619d
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225066] perl-Test-MockObject-1.20150521 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225066



--- Comment #3 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
spot's perl-Test-MockObject-1.20150521-1.fc23 completed
http://koji.fedoraproject.org/koji/buildinfo?buildID=639116

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

spot pushed to perl-File-Which (master). 1.18

2015-05-26 Thread notifications
From 77dca7165f318b7b486d4ac2a1e862344d65b80f Mon Sep 17 00:00:00 2001
From: Tom Callaway s...@fedoraproject.org
Date: Tue, 26 May 2015 10:31:19 -0400
Subject: 1.18


diff --git a/.gitignore b/.gitignore
index 1f5b245..0a4bb76 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 File-Which-1.09.tar.gz
+/File-Which-1.18.tar.gz
diff --git a/perl-File-Which.spec b/perl-File-Which.spec
index 6b1a741..1d34f86 100644
--- a/perl-File-Which.spec
+++ b/perl-File-Which.spec
@@ -1,6 +1,6 @@
 Name:   perl-File-Which
-Version:1.09
-Release:19%{?dist}
+Version:1.18
+Release:1%{?dist}
 Summary:Portable implementation of the 'which' utility
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -54,13 +54,16 @@ make test
 
 %files
 %doc Changes README
-%{_bindir}/pwhich
+# %%{_bindir}/pwhich
 %{perl_vendorlib}/File/
-%{_mandir}/man1/*.1*
+# %%{_mandir}/man1/*.1*
 %{_mandir}/man3/*.3pm*
 
 
 %changelog
+* Tue May 26 2015 Tom Callaway s...@fedoraproject.org - 1.18-1
+- update to 1.18
+
 * Thu Jan 15 2015 Petr Pisar ppi...@redhat.com - 1.09-19
 - Specify all dependencies
 
diff --git a/sources b/sources
index e43437b..f6c2629 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b9429edaad7f45caafa4d458afcfd8af  File-Which-1.09.tar.gz
+554bfb36568d828fbeee64f4b9a9faa8  File-Which-1.18.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-File-Which.git/commit/?h=masterid=77dca7165f318b7b486d4ac2a1e862344d65b80f
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225070] perl-Scalar-List-Utils-1.42 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225070



--- Comment #3 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
psabata's perl-Scalar-List-Utils-1.42-1.fc23 completed
http://koji.fedoraproject.org/koji/buildinfo?buildID=639131

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225060] New: Upgrade perl-MooX-Types-MooseLike

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225060

Bug ID: 1225060
   Summary: Upgrade perl-MooX-Types-MooseLike
   Product: Fedora
   Version: rawhide
 Component: perl-MooX-Types-MooseLike
  Keywords: FutureFeature
  Assignee: negativ...@gmail.com
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: negativ...@gmail.com,
perl-devel@lists.fedoraproject.org



Latest Fedora delivers perl-MooX-Types-MooseLike 0.27, while upstream released
0.28. Please upgrade.

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[EPEL-devel] Orphaned Packages in epel6 (2015-05-26)

2015-05-26 Thread opensource
The following packages are orphaned and will be retired when they
are orphaned for six weeks, unless someone adopts them. If you know for sure
that the package should be retired, please do so now with a proper reason:
https://fedoraproject.org/wiki/How_to_remove_a_package_at_end_of_life

Note: If you received this mail directly you (co)maintain one of the affected
packages or a package that depends on one. Please adopt the affected package or
retire your depending package to avoid broken dependencies, otherwise your
package will be retired when the affected package gets retired.

   Package(co)maintainers Status Change 
===
R-carorphan   11 weeks ago  
ScientificPython orphan   17 weeks ago  
blahtexmlorphan   3 weeks ago   
fpc  orphan   12 weeks ago  
gvrpcd   orphan   3 weeks ago   
perl-Crypt-Blowfish_PP   orphan, georgiou 5 weeks ago   
perl-Digest-SHA  orphan   0 weeks ago   
perl-Env-Pathorphan, georgiou 5 weeks ago   
perl-File-SearchPath orphan, georgiou, perl-sig   5 weeks ago   
perl-Net-Netmask orphan, perl-sig 0 weeks ago   
perl-Term-Clui   orphan, georgiou, perl-sig   5 weeks ago   
perl-Term-Size   orphan, georgiou, perl-sig   5 weeks ago   
pyevent  orphan, lmacken  9 weeks ago   
pymongo  orphan, coolsvap, echevemaster,  9 weeks ago   
 jhn, silas 
python-mwlib orphan, prabindatta  3 weeks ago   
qupzilla orphan   0 weeks ago   
rubygem-fastthread   orphan, kanarip  53 weeks ago  
rubygem-mongrel  orphan, kanarip  53 weeks ago  
tetex-IEEEtran   orphan   53 weeks ago  
tiobench orphan, aquini   2 weeks ago   

The following packages require above mentioned packages:
Depending on: R-car (1), status change: 2015-03-04 (11 weeks ago)
R-sandwich (maintained by: pingou, spot)
R-sandwich-2.2.10-1.el6.noarch requires R-car = 2.0.16-1.el6
R-sandwich-2.2.10-1.el6.src requires R-car = 2.0.16-1.el6


Depending on: ScientificPython (1), status change: 2015-01-25 (17 weeks ago)
scitools (maintained by: sergiopr)
scitools-0.9.0-2.el6.noarch requires ScientificPython = 
2.8-15.el6


Depending on: fpc (1), status change: 2015-02-26 (12 weeks ago)
tuxcmd (maintained by: jcapik)
tuxcmd-0.6.70-2.el6.src requires fpc = 2.4.0-2.el6


Depending on: perl-Net-Netmask (5), status change: 2015-05-21 (0 weeks ago)
Perlbal (maintained by: lbazan)
Perlbal-1.80-12.el6.noarch requires perl(Net::Netmask) = 1.9015
Perlbal-1.80-12.el6.src requires perl(Net::Netmask) = 1.9015

dnsenum (maintained by: fab)
dnsenum-1.2.4.2-1.el6.noarch requires perl(Net::Netmask) = 
1.9015

perl-Net-NBName (maintained by: remi, perl-sig)
perl-Net-NBName-0.26-2.el6.noarch requires perl(Net::Netmask) = 
1.9015

perl-Net-Pcap-Easy (maintained by: ddick, perl-sig)
perl-Net-Pcap-Easy-1.4210-1.el6.noarch requires 
perl(Net::Netmask) = 1.9015
perl-Net-Pcap-Easy-1.4210-1.el6.src requires perl(Net::Netmask) 
= 1.9015

perl-FusionInventory-Agent-Task-NetDiscovery (maintained by: remi)
perl-FusionInventory-Agent-Task-NetDiscovery-1.5-2.el6.noarch 
requires perl(Net::NBName) = 0.26


Depending on: pymongo (8), status change: 2015-03-19 (9 weeks ago)
python-pymongo (maintained by: pbrady, amcnabb, jlaska)
python-pymongo-2.5.2-3.el6.x86_64 requires python-bson = 
2.1.1-1.el6

ipython (maintained by: dcantrel, group::python-sig, mrunge, orion, 
salimma, tomspur)
ipython-0.13.2-6.el6.src requires pymongo = 2.5.2-3.el6

python-anykeystore (maintained by: ralph)
python-anykeystore-0.2-3.el6.src requires pymongo = 2.5.2-3.el6

python-mongoengine (maintained by: yograterol, echevemaster)
python-mongoengine-0.7.10-2.el6.noarch requires python-pymongo 
= 2.5.2-3.el6
python-mongoengine-0.7.10-2.el6.src requires python-pymongo = 
2.5.2-3.el6

python-tahrir (maintained by: rossdylan, ralph)
python-tahrir-0.7.0-2.el6.noarch requires python-anykeystore = 
0.2-3.el6

python-velruse (maintained by: 

Orphaned Packages in epel6 (2015-05-26)

2015-05-26 Thread opensource
The following packages are orphaned and will be retired when they
are orphaned for six weeks, unless someone adopts them. If you know for sure
that the package should be retired, please do so now with a proper reason:
https://fedoraproject.org/wiki/How_to_remove_a_package_at_end_of_life

Note: If you received this mail directly you (co)maintain one of the affected
packages or a package that depends on one. Please adopt the affected package or
retire your depending package to avoid broken dependencies, otherwise your
package will be retired when the affected package gets retired.

   Package(co)maintainers Status Change 
===
R-carorphan   11 weeks ago  
ScientificPython orphan   17 weeks ago  
blahtexmlorphan   3 weeks ago   
fpc  orphan   12 weeks ago  
gvrpcd   orphan   3 weeks ago   
perl-Crypt-Blowfish_PP   orphan, georgiou 5 weeks ago   
perl-Digest-SHA  orphan   0 weeks ago   
perl-Env-Pathorphan, georgiou 5 weeks ago   
perl-File-SearchPath orphan, georgiou, perl-sig   5 weeks ago   
perl-Net-Netmask orphan, perl-sig 0 weeks ago   
perl-Term-Clui   orphan, georgiou, perl-sig   5 weeks ago   
perl-Term-Size   orphan, georgiou, perl-sig   5 weeks ago   
pyevent  orphan, lmacken  9 weeks ago   
pymongo  orphan, coolsvap, echevemaster,  9 weeks ago   
 jhn, silas 
python-mwlib orphan, prabindatta  3 weeks ago   
qupzilla orphan   0 weeks ago   
rubygem-fastthread   orphan, kanarip  53 weeks ago  
rubygem-mongrel  orphan, kanarip  53 weeks ago  
tetex-IEEEtran   orphan   53 weeks ago  
tiobench orphan, aquini   2 weeks ago   

The following packages require above mentioned packages:
Depending on: R-car (1), status change: 2015-03-04 (11 weeks ago)
R-sandwich (maintained by: pingou, spot)
R-sandwich-2.2.10-1.el6.noarch requires R-car = 2.0.16-1.el6
R-sandwich-2.2.10-1.el6.src requires R-car = 2.0.16-1.el6


Depending on: ScientificPython (1), status change: 2015-01-25 (17 weeks ago)
scitools (maintained by: sergiopr)
scitools-0.9.0-2.el6.noarch requires ScientificPython = 
2.8-15.el6


Depending on: fpc (1), status change: 2015-02-26 (12 weeks ago)
tuxcmd (maintained by: jcapik)
tuxcmd-0.6.70-2.el6.src requires fpc = 2.4.0-2.el6


Depending on: perl-Net-Netmask (5), status change: 2015-05-21 (0 weeks ago)
Perlbal (maintained by: lbazan)
Perlbal-1.80-12.el6.noarch requires perl(Net::Netmask) = 1.9015
Perlbal-1.80-12.el6.src requires perl(Net::Netmask) = 1.9015

dnsenum (maintained by: fab)
dnsenum-1.2.4.2-1.el6.noarch requires perl(Net::Netmask) = 
1.9015

perl-Net-NBName (maintained by: remi, perl-sig)
perl-Net-NBName-0.26-2.el6.noarch requires perl(Net::Netmask) = 
1.9015

perl-Net-Pcap-Easy (maintained by: ddick, perl-sig)
perl-Net-Pcap-Easy-1.4210-1.el6.noarch requires 
perl(Net::Netmask) = 1.9015
perl-Net-Pcap-Easy-1.4210-1.el6.src requires perl(Net::Netmask) 
= 1.9015

perl-FusionInventory-Agent-Task-NetDiscovery (maintained by: remi)
perl-FusionInventory-Agent-Task-NetDiscovery-1.5-2.el6.noarch 
requires perl(Net::NBName) = 0.26


Depending on: pymongo (8), status change: 2015-03-19 (9 weeks ago)
python-pymongo (maintained by: pbrady, amcnabb, jlaska)
python-pymongo-2.5.2-3.el6.x86_64 requires python-bson = 
2.1.1-1.el6

ipython (maintained by: dcantrel, group::python-sig, mrunge, orion, 
salimma, tomspur)
ipython-0.13.2-6.el6.src requires pymongo = 2.5.2-3.el6

python-anykeystore (maintained by: ralph)
python-anykeystore-0.2-3.el6.src requires pymongo = 2.5.2-3.el6

python-mongoengine (maintained by: yograterol, echevemaster)
python-mongoengine-0.7.10-2.el6.noarch requires python-pymongo 
= 2.5.2-3.el6
python-mongoengine-0.7.10-2.el6.src requires python-pymongo = 
2.5.2-3.el6

python-tahrir (maintained by: rossdylan, ralph)
python-tahrir-0.7.0-2.el6.noarch requires python-anykeystore = 
0.2-3.el6

python-velruse (maintained by: 

Orphaned Packages in epel5 (2015-05-26)

2015-05-26 Thread opensource
The following packages are orphaned and will be retired when they
are orphaned for six weeks, unless someone adopts them. If you know for sure
that the package should be retired, please do so now with a proper reason:
https://fedoraproject.org/wiki/How_to_remove_a_package_at_end_of_life

Note: If you received this mail directly you (co)maintain one of the affected
packages or a package that depends on one. Please adopt the affected package or
retire your depending package to avoid broken dependencies, otherwise your
package will be retired when the affected package gets retired.

Package  (co)maintainers  Status Change 
===
blahtexml  orphan 3 weeks ago   
gvrpcd orphan 3 weeks ago   
mozilla-noscript   orphan, ixs, tomspur   1 weeks ago   
perl-Digest-SHAorphan 0 weeks ago   
perl-Net-Netmask   orphan, perl-sig   0 weeks ago   
tiobench   orphan, aquini 2 weeks ago   
vecmathorphan 1 weeks ago   

The following packages require above mentioned packages:
Depending on: perl-Digest-SHA (16), status change: 2015-05-21 (0 weeks ago)
perl-Crypt-OpenSSL-DSA (maintained by: hardaker)
perl-Crypt-OpenSSL-DSA-0.15-1.el5.src requires 
perl(Digest::SHA) = 5.47

perl-Mail-DKIM (maintained by: kylev, nb, wtogami)
perl-Mail-DKIM-0.39-1.el5.noarch requires perl(Digest::SHA) = 
5.47
perl-Mail-DKIM-0.39-1.el5.src requires perl(Digest::SHA) = 5.47

perl-Module-Signature (maintained by: pghmcfc, pertusus)
perl-Module-Signature-0.78-1.el5.noarch requires 
perl(Digest::SHA) = 5.47
perl-Module-Signature-0.78-1.el5.src requires perl(Digest::SHA) 
= 5.47

swaks (maintained by: mmckinst)
swaks-20130209.0-3.el5.noarch requires perl(Digest::SHA) = 5.47

perl-Math-GMP (maintained by: pghmcfc, perl-sig)
perl-Math-GMP-2.05-2.el5.src requires perl(Module::Signature) = 
0.78

perl-Net-SSH-Perl (maintained by: pghmcfc, perl-sig)
perl-Net-SSH-Perl-1.34-2.el5.src requires 
perl(Module::Signature) = 0.78

perl-Test-Distribution (maintained by: pghmcfc, cweyl)
perl-Test-Distribution-2.00-11.el5.noarch requires 
perl(Module::Signature) = 0.78

perl-Test-Signature (maintained by: pghmcfc, iarnell, iburrell, 
perl-sig, psabata)
perl-Test-Signature-1.11-1.el5.noarch requires 
perl(Module::Signature) = 0.78
perl-Test-Signature-1.11-1.el5.src requires 
perl(Module::Signature) = 0.78

perl-Crypt-DH (maintained by: pghmcfc, perl-sig)
perl-Crypt-DH-0.06-9.el5.noarch requires perl(Math::GMP) = 2.05
perl-Crypt-DH-0.06-9.el5.src requires perl(Math::GMP) = 2.05

perl-Crypt-DSA (maintained by: pghmcfc, perl-sig)
perl-Crypt-DSA-0.14-8.el5.noarch requires perl(Math::GMP) = 2.05
perl-Crypt-DSA-0.14-8.el5.src requires perl(Math::GMP) = 2.05

perl-Net-SFTP (maintained by: psabata, perl-sig, steve, xavierb)
perl-Net-SFTP-0.10-1.el5.noarch requires perl(Net::SSH::Perl) = 
1.34, perl(Net::SSH::Perl::Buffer), perl(Net::SSH::Perl::Constants), 
perl(Net::SSH::Perl::Util)
perl-Net-SFTP-0.10-1.el5.src requires perl(Net::SSH::Perl) = 
1.34

perl-File-Read (maintained by: psabata, iarnell, perl-sig)
perl-File-Read-0.0801-2.el5.src requires 
perl(Test::Distribution) = 2.00

perl-Math-Symbolic (maintained by: jplesnik, perl-sig)
perl-Math-Symbolic-0.510-1.el5.src requires 
perl(Test::Distribution) = 2.00

perl-B-Utils (maintained by: pghmcfc, iarnell, iburrell, perl-sig, 
psabata)
perl-B-Utils-0.07-2.el5.src requires perl(Test::Signature) = 
1.11

perl-Config-Extend-MySQL (maintained by: psabata, iarnell)
perl-Config-Extend-MySQL-0.04-1.el5.noarch requires 
perl(File::Read) = 0.0801
perl-Config-Extend-MySQL-0.04-1.el5.src requires 
perl(File::Read) = 0.0801

perl-Algorithm-CurveFit (maintained by: jplesnik, perl-sig)
perl-Algorithm-CurveFit-1.03-1.el5.noarch requires 
perl(Math::Symbolic) = 0.510
perl-Algorithm-CurveFit-1.03-1.el5.src requires 
perl(Math::Symbolic) = 0.510


Depending on: perl-Net-Netmask (2), status change: 2015-05-21 (0 weeks ago)
perl-Net-NBName (maintained by: psabata)
perl-Net-NBName-0.26-2.el5.noarch requires perl(Net::Netmask) = 
1.9012

netdisco (maintained by: gouldwp)
netdisco-1.1-1.el5.noarch requires perl(Net::NBName) = 0.26


Affected (co)maintainers
aquini: tiobench
cweyl: perl-Digest-SHA
gouldwp: perl-Net-Netmask
hardaker: perl-Digest-SHA
iarnell: perl-Digest-SHA
iburrell: perl-Digest-SHA
ixs: 

[EPEL-devel] Orphaned Packages in epel7 (2015-05-26)

2015-05-26 Thread opensource
The following packages are orphaned and will be retired when they
are orphaned for six weeks, unless someone adopts them. If you know for sure
that the package should be retired, please do so now with a proper reason:
https://fedoraproject.org/wiki/How_to_remove_a_package_at_end_of_life

Note: If you received this mail directly you (co)maintain one of the affected
packages or a package that depends on one. Please adopt the affected package or
retire your depending package to avoid broken dependencies, otherwise your
package will be retired when the affected package gets retired.

Package(co)maintainersStatus Change 
===
perl-Env-Path  orphan, georgiou   5 weeks ago   
perl-Net-Netmask   orphan, perl-sig   0 weeks ago   
qupzilla   orphan 0 weeks ago   

The following packages require above mentioned packages:
Depending on: perl-Net-Netmask (3), status change: 2015-05-21 (0 weeks ago)
dnsenum (maintained by: fab)
dnsenum-1.2.4.1-1.el7.noarch requires perl(Net::Netmask) = 
1.9015

perl-Net-NBName (maintained by: remi, perl-sig)
perl-Net-NBName-0.26-17.el7.noarch requires perl(Net::Netmask) 
= 1.9015

perl-Net-Pcap-Easy (maintained by: ddick, perl-sig)
perl-Net-Pcap-Easy-1.4210-1.el7.noarch requires 
perl(Net::Netmask) = 1.9015
perl-Net-Pcap-Easy-1.4210-1.el7.src requires perl(Net::Netmask) 
= 1.9015


Affected (co)maintainers
ddick: perl-Net-Netmask
fab: perl-Net-Netmask
georgiou: perl-Env-Path
perl-sig: perl-Net-Netmask
remi: perl-Net-Netmask

Orphans (3): perl-Env-Path perl-Net-Netmask qupzilla


Orphans (dependend on) (1): perl-Net-Netmask


Orphans (epel7) for at least 6 weeks (dependend on) (0):


Orphans  (epel7)(not depended on) (2): perl-Env-Path qupzilla


Orphans (epel7) for at least 6 weeks (not dependend on) (0):


Depending packages (epel7) (3): dnsenum perl-Net-NBName
perl-Net-Pcap-Easy


Packages depending on packages orphaned (epel7) for more than 6 weeks
(0):


Not found in repo (epel7) (2): perl-Env-Path qupzilla

-- 
The script creating this output is run and developed by Fedora
Release Engineering. Please report issues at its trac instance:
https://fedorahosted.org/rel-eng/
The sources of this script can be found at:
https://git.fedorahosted.org/cgit/releng/tree/scripts/find_unblocked_orphans.py
___
epel-devel mailing list
epel-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/epel-devel


pghmcfc uploaded Test-RequiresInternet-0.05.tar.gz for perl-Test-RequiresInternet

2015-05-26 Thread notifications
0ba9f1cff4cf90ed2618c2eddfd525d8  Test-RequiresInternet-0.05.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Test-RequiresInternet/Test-RequiresInternet-0.05.tar.gz/0ba9f1cff4cf90ed2618c2eddfd525d8/Test-RequiresInternet-0.05.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

psabata pushed to perl-Scalar-List-Utils (f21). 1.42 bump

2015-05-26 Thread notifications
From 9c0879e9ec1344c8f1befd77e2347430fbd9990e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20=C5=A0abata?= con...@redhat.com
Date: Tue, 26 May 2015 17:25:37 +0200
Subject: 1.42 bump


diff --git a/perl-Scalar-List-Utils.spec b/perl-Scalar-List-Utils.spec
index 8bf491b..05a772e 100644
--- a/perl-Scalar-List-Utils.spec
+++ b/perl-Scalar-List-Utils.spec
@@ -1,6 +1,6 @@
 Name:   perl-Scalar-List-Utils
 Epoch:  1
-Version:1.41
+Version:1.42
 Release:1%{?dist}
 Summary:A selection of general-utility scalar and list subroutines
 License:GPL+ or Artistic
@@ -69,6 +69,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue May 26 2015 Petr Šabata con...@redhat.com - 1:1.42-1
+- 1.42 bump
+
 * Mon Nov 24 2014 Petr Šabata con...@redhat.com - 1:1.41-1
 - 1.41 bump; various enhancements
 
diff --git a/sources b/sources
index 50e420b..b7b4bd9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-01fefd526d2e031efd0f78264c77eb7e  Scalar-List-Utils-1.41.tar.gz
+a76768c6e0f92eefb6d4b3b779469c3d  Scalar-List-Utils-1.42.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Scalar-List-Utils.git/commit/?h=f21id=9c0879e9ec1344c8f1befd77e2347430fbd9990e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225056] New: perl-Log-Any-1.032 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225056

Bug ID: 1225056
   Summary: perl-Log-Any-1.032 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Log-Any
  Keywords: FutureFeature, Triaged
  Assignee: psab...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
psab...@redhat.com, st...@silug.org



Latest upstream release: 1.032
Current version/release in rawhide: 1.03-2.fc22
URL: http://search.cpan.org/dist/Log-Any/

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.

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225056] perl-Log-Any-1.032 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225056



--- Comment #1 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Created attachment 1029945
  -- https://bugzilla.redhat.com/attachment.cgi?id=1029945action=edit
[patch] Update to 1.032 (#1225056)

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225064] New: Upgrade perl-Net-Server

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225064

Bug ID: 1225064
   Summary: Upgrade perl-Net-Server
   Product: Fedora
   Version: rawhide
 Component: perl-Net-Server
  Keywords: FutureFeature
  Assignee: ke...@scrye.com
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: ke...@scrye.com, perl-devel@lists.fedoraproject.org



Latest Fedora delivers perl-Net-Server 2.007, while upstream released 2.008.
Please upgrade the package.

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225070] perl-Scalar-List-Utils-1.42 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225070



--- Comment #1 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Created attachment 1029954
  -- https://bugzilla.redhat.com/attachment.cgi?id=1029954action=edit
[patch] Update to 1.42 (#1225070)

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225070] New: perl-Scalar-List-Utils-1.42 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225070

Bug ID: 1225070
   Summary: perl-Scalar-List-Utils-1.42 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Scalar-List-Utils
  Keywords: FutureFeature, Triaged
  Assignee: psab...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: iarn...@gmail.com, perl-devel@lists.fedoraproject.org,
psab...@redhat.com



Latest upstream release: 1.42
Current version/release in rawhide: 1.41-1.fc22
URL: http://search.cpan.org/dist/Scalar-List-Utils/

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.

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc pushed to perl-Test-RequiresInternet (master). Update to 0.05 (..more)

2015-05-26 Thread notifications
From 3c4bb2c531f89eea9467db16b73eaccaa499e868 Mon Sep 17 00:00:00 2001
From: Paul Howarth p...@city-fan.org
Date: Tue, 26 May 2015 14:55:39 +0100
Subject: Update to 0.05

- New upstream release 0.05
  - Fix test error when NO_NETWORK_TESTING is set (CPAN RT#101996, GH#3)

diff --git a/perl-Test-RequiresInternet.spec b/perl-Test-RequiresInternet.spec
index 33fe809..e2133d2 100644
--- a/perl-Test-RequiresInternet.spec
+++ b/perl-Test-RequiresInternet.spec
@@ -1,5 +1,5 @@
 Name:  perl-Test-RequiresInternet
-Version:   0.04
+Version:   0.05
 Release:   1%{?dist}
 Summary:   Easily test network connectivity
 License:   GPL+ or Artistic
@@ -61,6 +61,10 @@ make test
 %{_mandir}/man3/Test::RequiresInternet.3*
 
 %changelog
+* Tue May 26 2015 Paul Howarth p...@city-fan.org - 0.05-1
+- Update to 0.05
+  - Fix test error when NO_NETWORK_TESTING is set (CPAN RT#101996, GH#3)
+
 * Thu Jan 29 2015 Paul Howarth p...@city-fan.org - 0.04-1
 - Update to 0.04
   - Test::More prior to 0.88 (included with perl 5.10.1) does not support the
diff --git a/sources b/sources
index efa1141..bf5515a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-2790138130c2b6afa4d55346d0fc8bcf  Test-RequiresInternet-0.04.tar.gz
+0ba9f1cff4cf90ed2618c2eddfd525d8  Test-RequiresInternet-0.05.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Test-RequiresInternet.git/commit/?h=masterid=3c4bb2c531f89eea9467db16b73eaccaa499e868
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc pushed to perl-parent (master). Update to 0.233 (..more)

2015-05-26 Thread notifications
From 2e61e65c47471c215d3aeefb1d86ca080dfb1687 Mon Sep 17 00:00:00 2001
From: Paul Howarth p...@city-fan.org
Date: Tue, 26 May 2015 15:09:34 +0100
Subject: Update to 0.233

- New upstream release 0.233
  - The diagnostic about inheriting from ourselves was removed; it served no
purpose as Perl already warns if we try to inherit in a circular way

diff --git a/perl-parent.spec b/perl-parent.spec
index 9d0a3a7..7171f3b 100644
--- a/perl-parent.spec
+++ b/perl-parent.spec
@@ -1,6 +1,6 @@
 Name:  perl-parent
 Epoch: 1
-Version:   0.232
+Version:   0.233
 Release:   1%{?dist}
 Summary:   Establish an ISA relationship with base classes at compile time
 License:   GPL+ or Artistic
@@ -61,6 +61,11 @@ rm -rf %{buildroot}
 %{_mandir}/man3/parent.3*
 
 %changelog
+* Tue May 26 2015 Paul Howarth p...@city-fan.org - 1:0.233-1
+- Update to 0.233
+  - The diagnostic about inheriting from ourselves was removed; it served no
+purpose as Perl already warns if we try to inherit in a circular way
+
 * Fri Mar 20 2015 Paul Howarth p...@city-fan.org - 1:0.232-1
 - Update to 0.232
   - Change line-endings in parent-pmc.t to unix EOLs so that bleadperl is happy
diff --git a/sources b/sources
index 7bb4dc5..992646e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-8f3da84be2318ad4a1e7ff2e60a10d68  parent-0.232.tar.gz
+fb2d4803c7c2423bae9403bb1cb48384  parent-0.233.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-parent.git/commit/?h=masterid=2e61e65c47471c215d3aeefb1d86ca080dfb1687
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc pushed to perl-parent (perl-parent-0.233-1.fc23). Update to 0.233 (..more)

2015-05-26 Thread notifications
From 2e61e65c47471c215d3aeefb1d86ca080dfb1687 Mon Sep 17 00:00:00 2001
From: Paul Howarth p...@city-fan.org
Date: Tue, 26 May 2015 15:09:34 +0100
Subject: Update to 0.233

- New upstream release 0.233
  - The diagnostic about inheriting from ourselves was removed; it served no
purpose as Perl already warns if we try to inherit in a circular way

diff --git a/perl-parent.spec b/perl-parent.spec
index 9d0a3a7..7171f3b 100644
--- a/perl-parent.spec
+++ b/perl-parent.spec
@@ -1,6 +1,6 @@
 Name:  perl-parent
 Epoch: 1
-Version:   0.232
+Version:   0.233
 Release:   1%{?dist}
 Summary:   Establish an ISA relationship with base classes at compile time
 License:   GPL+ or Artistic
@@ -61,6 +61,11 @@ rm -rf %{buildroot}
 %{_mandir}/man3/parent.3*
 
 %changelog
+* Tue May 26 2015 Paul Howarth p...@city-fan.org - 1:0.233-1
+- Update to 0.233
+  - The diagnostic about inheriting from ourselves was removed; it served no
+purpose as Perl already warns if we try to inherit in a circular way
+
 * Fri Mar 20 2015 Paul Howarth p...@city-fan.org - 1:0.232-1
 - Update to 0.232
   - Change line-endings in parent-pmc.t to unix EOLs so that bleadperl is happy
diff --git a/sources b/sources
index 7bb4dc5..992646e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-8f3da84be2318ad4a1e7ff2e60a10d68  parent-0.232.tar.gz
+fb2d4803c7c2423bae9403bb1cb48384  parent-0.233.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-parent.git/commit/?h=perl-parent-0.233-1.fc23id=2e61e65c47471c215d3aeefb1d86ca080dfb1687
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc uploaded parent-0.233.tar.gz for perl-parent

2015-05-26 Thread notifications
fb2d4803c7c2423bae9403bb1cb48384  parent-0.233.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-parent/parent-0.233.tar.gz/fb2d4803c7c2423bae9403bb1cb48384/parent-0.233.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

psabata uploaded Scalar-List-Utils-1.42.tar.gz for perl-Scalar-List-Utils

2015-05-26 Thread notifications
a76768c6e0f92eefb6d4b3b779469c3d  Scalar-List-Utils-1.42.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Scalar-List-Utils/Scalar-List-Utils-1.42.tar.gz/a76768c6e0f92eefb6d4b3b779469c3d/Scalar-List-Utils-1.42.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

psabata pushed to perl-Scalar-List-Utils (master). 1.42 bump

2015-05-26 Thread notifications
From 9c0879e9ec1344c8f1befd77e2347430fbd9990e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20=C5=A0abata?= con...@redhat.com
Date: Tue, 26 May 2015 17:25:37 +0200
Subject: 1.42 bump


diff --git a/perl-Scalar-List-Utils.spec b/perl-Scalar-List-Utils.spec
index 8bf491b..05a772e 100644
--- a/perl-Scalar-List-Utils.spec
+++ b/perl-Scalar-List-Utils.spec
@@ -1,6 +1,6 @@
 Name:   perl-Scalar-List-Utils
 Epoch:  1
-Version:1.41
+Version:1.42
 Release:1%{?dist}
 Summary:A selection of general-utility scalar and list subroutines
 License:GPL+ or Artistic
@@ -69,6 +69,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue May 26 2015 Petr Šabata con...@redhat.com - 1:1.42-1
+- 1.42 bump
+
 * Mon Nov 24 2014 Petr Šabata con...@redhat.com - 1:1.41-1
 - 1.41 bump; various enhancements
 
diff --git a/sources b/sources
index 50e420b..b7b4bd9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-01fefd526d2e031efd0f78264c77eb7e  Scalar-List-Utils-1.41.tar.gz
+a76768c6e0f92eefb6d4b3b779469c3d  Scalar-List-Utils-1.42.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Scalar-List-Utils.git/commit/?h=masterid=9c0879e9ec1344c8f1befd77e2347430fbd9990e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225056] perl-Log-Any-1.032 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225056



--- Comment #2 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Scratch build succeeded
http://koji.fedoraproject.org/koji/taskinfo?taskID=9851862

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225066] perl-Test-MockObject-1.20150521 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225066



--- Comment #2 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Scratch build succeeded
http://koji.fedoraproject.org/koji/taskinfo?taskID=9851963

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1225070] perl-Scalar-List-Utils-1.42 is available

2015-05-26 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1225070



--- Comment #2 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Scratch build succeeded
http://koji.fedoraproject.org/koji/taskinfo?taskID=9851989

-- 
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://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc pushed to perl-Test-RequiresInternet (perl-Test-RequiresInternet-0.05-1.fc23). Update to 0.05 (..more)

2015-05-26 Thread notifications
From 3c4bb2c531f89eea9467db16b73eaccaa499e868 Mon Sep 17 00:00:00 2001
From: Paul Howarth p...@city-fan.org
Date: Tue, 26 May 2015 14:55:39 +0100
Subject: Update to 0.05

- New upstream release 0.05
  - Fix test error when NO_NETWORK_TESTING is set (CPAN RT#101996, GH#3)

diff --git a/perl-Test-RequiresInternet.spec b/perl-Test-RequiresInternet.spec
index 33fe809..e2133d2 100644
--- a/perl-Test-RequiresInternet.spec
+++ b/perl-Test-RequiresInternet.spec
@@ -1,5 +1,5 @@
 Name:  perl-Test-RequiresInternet
-Version:   0.04
+Version:   0.05
 Release:   1%{?dist}
 Summary:   Easily test network connectivity
 License:   GPL+ or Artistic
@@ -61,6 +61,10 @@ make test
 %{_mandir}/man3/Test::RequiresInternet.3*
 
 %changelog
+* Tue May 26 2015 Paul Howarth p...@city-fan.org - 0.05-1
+- Update to 0.05
+  - Fix test error when NO_NETWORK_TESTING is set (CPAN RT#101996, GH#3)
+
 * Thu Jan 29 2015 Paul Howarth p...@city-fan.org - 0.04-1
 - Update to 0.04
   - Test::More prior to 0.88 (included with perl 5.10.1) does not support the
diff --git a/sources b/sources
index efa1141..bf5515a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-2790138130c2b6afa4d55346d0fc8bcf  Test-RequiresInternet-0.04.tar.gz
+0ba9f1cff4cf90ed2618c2eddfd525d8  Test-RequiresInternet-0.05.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Test-RequiresInternet.git/commit/?h=perl-Test-RequiresInternet-0.05-1.fc23id=3c4bb2c531f89eea9467db16b73eaccaa499e868
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

poppler soname bump in rawhide

2015-05-26 Thread Marek Kasik
Hi,

I plan to rebase poppler in rawhide to poppler-0.33.0 during the next week.

There are several API changes and soname bump of the base library
libpoppler.so.*.

I've prepared a scratch build of poppler-0.33.0 against which you can
test your packages. You can find the build here:

http://koji.fedoraproject.org/koji/taskinfo?taskID=9851480

or here:

http://mkasik.fedorapeople.org/poppler/


Poppler developers changed the model they use for releasing.
All releases should be considered stable from now so even the odd ones.

Also, if your package use the unstable API (headers from poppler-devel),
could you consider to change it to use a stable API (glib, qt, C++)?
This would allow us to not ship the headers and rebase to the newest
poppler versions whenever we want not just in Rawhide.


Regards

Marek
___
devel-announce mailing list
devel-announce@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel-announce

poppler soname bump in rawhide

2015-05-26 Thread Marek Kasik
Hi,

I plan to rebase poppler in rawhide to poppler-0.33.0 during the next week.

There are several API changes and soname bump of the base library
libpoppler.so.*.

I've prepared a scratch build of poppler-0.33.0 against which you can
test your packages. You can find the build here:

http://koji.fedoraproject.org/koji/taskinfo?taskID=9851480

or here:

http://mkasik.fedorapeople.org/poppler/


Poppler developers changed the model they use for releasing.
All releases should be considered stable from now so even the odd ones.

Also, if your package use the unstable API (headers from poppler-devel),
could you consider to change it to use a stable API (glib, qt, C++)?
This would allow us to not ship the headers and rebase to the newest
poppler versions whenever we want not just in Rawhide.


Regards

Marek
___
devel-announce mailing list
devel-annou...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel-announce
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

pghmcfc changed pghmcfc's 'approveacls' permission on perl-Digest-SHA (el5) to 'Approved'

2015-05-26 Thread notifications
pghmcfc changed pghmcfc's 'approveacls' permission on perl-Digest-SHA (el5) to 
'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-Digest-SHA/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

  1   2   >