releng pushed to ctstream (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild"

2017-02-10 Thread notifications
From d39ca8f928c7cff6aefbc429da3c0acf58412fc6 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Fri, 10 Feb 2017 08:03:18 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild

---
 ctstream.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/ctstream.spec b/ctstream.spec
index 5aec962..6331101 100644
--- a/ctstream.spec
+++ b/ctstream.spec
@@ -1,6 +1,6 @@
 Name:   ctstream
 Version:25
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Get URLs of Czech Television video streams
 Group:  Applications/Internet
 License:GPL+
@@ -24,6 +24,9 @@ install %{SOURCE0} %{buildroot}%{_bindir}/%{name}
 %{_bindir}/*
 
 %changelog
+* Fri Feb 10 2017 Fedora Release Engineering  - 25-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
 * Wed Nov 23 2016 Petr Pisar  - 25-1
 - Version 25 bump
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/ctstream.git/commit/?h=master&id=d39ca8f928c7cff6aefbc429da3c0acf58412fc6
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


On new zlib breaking perl

2017-02-10 Thread Petr Pisar
Hello,

you could notice that after Rawhide upgraded zlib from 1.2.8 to 1.2.11 perl
(bug #1420326), perl-Compress-Raw-Zlib (bug #1419841), and perl-IO-Compress
(bug #1420012) started failing tests.

The reason is zlib-1.2.9 changed behavior of deflateParams() function and this
change propagates to all zlib users. Because perl-Compress-Raw-Zlib tests
a Perl wrapper for deflateParams(), perl-Compress-Raw-Zlib build fails. Because
perl-IO-Compress is built on top of Compress::Raw::Zlib and it does the same
tests, it fails. And perl bundles both of the distributions and thus fails
either.

I prepared test adjustements, posted them to upstreams, and applied to
perl-Compress-Raw-Zlib. But then Paul reported the new tests do not work
with ancient zlib version that exist in RHELs. So I looked again at the
Compress-Raw-Zlib code and found out there is a deficiency in deflateParams()
wrapper. Correct fix that could hide the zlib behavior change for Perl
programs and thus eliminite need for patching tests in all the three packages
will require more work
.

Because upstream is working on it I believe there will bw proper fix once day.
In the mean time, I will patch the tests in Fedora packages because we need
buildable perl (we have Fedora mass rebuild, new GCC, some perl bug fixes
ahead). I believe patching the tests does not make things worse because the
current binary packages are already affected by the new zlib that is already
in use. When proper fix is available I will revert the patches.

-- Petr


signature.asc
Description: PGP signature
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


trasher pushed to fusioninventory-agent (f25). "Change systemd configuration files (..more)"

2017-02-10 Thread notifications
From 640827efd60363a37e80b898e631652b5ca76cde Mon Sep 17 00:00:00 2001
From: Johan Cwiklinski 
Date: Thu, 9 Feb 2017 14:08:20 +0100
Subject: Change systemd configuration files

Re-add comments and default options to get cron mode working
Use new service file
Deprecate using EnvironmentFile for service extra config
---
 fusioninventory-agent.cron |  2 +-
 fusioninventory-agent.service  | 20 
 fusioninventory-agent.service.conf |  9 +
 fusioninventory-agent.spec | 37 +++--
 4 files changed, 61 insertions(+), 7 deletions(-)
 create mode 100644 fusioninventory-agent.service
 create mode 100644 fusioninventory-agent.service.conf

diff --git a/fusioninventory-agent.cron b/fusioninventory-agent.cron
index 8b4b99f..8129715 100644
--- a/fusioninventory-agent.cron
+++ b/fusioninventory-agent.cron
@@ -29,7 +29,7 @@ do
 OPTS="$OPTS --lazy --server=${OCSSERVER[$i]}"
 fi
 echo "[$(date '+%c')] Running $NAME $OPTS"
-/usr/bin/$NAME $FUSINVOPT --logfile=$LOG $OPTS
+/usr/bin/$NAME $OPTIONS --logfile=$LOG $OPTS
 fi
 ((i++))
 done
diff --git a/fusioninventory-agent.service b/fusioninventory-agent.service
new file mode 100644
index 000..2e220d4
--- /dev/null
+++ b/fusioninventory-agent.service
@@ -0,0 +1,20 @@
+# It is not recommended to modify this file in-place, because it will be
+# overwritten during package upgrades.  If you want to customize, the best
+# way is to use the "systemctl edit" command to create an override unit.
+
+# For example, to pass additional options (for instance,
+# --no-category=software) to the agent at startup, create an override unit
+# (as is done by systemctl edit) and enter the following:
+
+# [Service]
+# Environment="OPTIONS=--no-category=software"
+
+[Unit]
+Description=FusionInventory agent
+After=syslog.target network.target
+
+[Service]
+ExecStart=/usr/bin/fusioninventory-agent --daemon --no-fork $OPTIONS
+
+[Install]
+WantedBy=multi-user.target
diff --git a/fusioninventory-agent.service.conf 
b/fusioninventory-agent.service.conf
new file mode 100644
index 000..77ee066
--- /dev/null
+++ b/fusioninventory-agent.service.conf
@@ -0,0 +1,9 @@
+# Extra configuration file for fusioninventory-agent unit
+[Service]
+#Deprecated: will be removed in a future version
+EnvironmentFile=-/etc/sysconfig/fusioninventory-agent
+#New way to declare values
+#Commented right now, because it will be overriden from EnvironmentFile
+#Will be enabled in a future version
+#Environment="OPTIONS=--debug"
+#Environment="PATH=/sbin:/bin:/usr/sbin:/usr/bin"
diff --git a/fusioninventory-agent.spec b/fusioninventory-agent.spec
index e8e786c..cd62ec3 100644
--- a/fusioninventory-agent.spec
+++ b/fusioninventory-agent.spec
@@ -10,9 +10,12 @@ License: GPLv2+
 URL: http://fusioninventory.org/
 
 Version: 2.3.18
-Release: 2%{?dist}
+Release: 3%{?dist}
 Source0: 
https://github.com/fusioninventory/%{name}/releases/download/%{version}/FusionInventory-Agent-%{version}.tar.gz
 Source1: %{name}.cron
+#Use systemd override capabilities
+Source10:%{name}.service
+Source11:%{name}.service.conf
 #Apply 
https://github.com/fusioninventory/fusioninventory-agent/commit/25404f038f99bd091e0fb2368879e848500f5082
 Patch0:  %{name}-useless-module-cleaning
 
@@ -60,7 +63,6 @@ You can add additional packages for optional tasks:
 * fusioninventory-agent-task-wakeonlan
 not included due to a licensing issue for perl-Net-Write
 
-Edit the /etc/sysconfig/%{name} file for service configuration.
 
 %package -n perl-FusionInventory-Agent
 Summary:Libraries for Fusioninventory agent
@@ -176,15 +178,32 @@ EOF
 cat 

[Bug 1420012] perl-IO-Compress-2.070-1.fc26 FTBS: tests fail with zlib ≥ 1.2.9

2017-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1420012

Petr Pisar  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|jples...@redhat.com |ppi...@redhat.com



--- Comment #1 from Petr Pisar  ---
I will adjust the tests. After fixing perl-Compress-Raw-Zlib properly, the
patch will be removed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


trasher pushed to fusioninventory-agent (f24). "Change systemd configuration files (..more)"

2017-02-10 Thread notifications
From 3f5a3d232c4e38d3684c98805f603a0e76f6f4eb Mon Sep 17 00:00:00 2001
From: Johan Cwiklinski 
Date: Thu, 9 Feb 2017 14:08:20 +0100
Subject: Change systemd configuration files

Re-add comments and default options to get cron mode working
Use new service file
Deprecate using EnvironmentFile for service extra config
---
 fusioninventory-agent.cron |  2 +-
 fusioninventory-agent.service  | 20 
 fusioninventory-agent.service.conf |  9 +
 fusioninventory-agent.spec | 37 +++--
 4 files changed, 61 insertions(+), 7 deletions(-)
 create mode 100644 fusioninventory-agent.service
 create mode 100644 fusioninventory-agent.service.conf

diff --git a/fusioninventory-agent.cron b/fusioninventory-agent.cron
index 8b4b99f..8129715 100644
--- a/fusioninventory-agent.cron
+++ b/fusioninventory-agent.cron
@@ -29,7 +29,7 @@ do
 OPTS="$OPTS --lazy --server=${OCSSERVER[$i]}"
 fi
 echo "[$(date '+%c')] Running $NAME $OPTS"
-/usr/bin/$NAME $FUSINVOPT --logfile=$LOG $OPTS
+/usr/bin/$NAME $OPTIONS --logfile=$LOG $OPTS
 fi
 ((i++))
 done
diff --git a/fusioninventory-agent.service b/fusioninventory-agent.service
new file mode 100644
index 000..2e220d4
--- /dev/null
+++ b/fusioninventory-agent.service
@@ -0,0 +1,20 @@
+# It is not recommended to modify this file in-place, because it will be
+# overwritten during package upgrades.  If you want to customize, the best
+# way is to use the "systemctl edit" command to create an override unit.
+
+# For example, to pass additional options (for instance,
+# --no-category=software) to the agent at startup, create an override unit
+# (as is done by systemctl edit) and enter the following:
+
+# [Service]
+# Environment="OPTIONS=--no-category=software"
+
+[Unit]
+Description=FusionInventory agent
+After=syslog.target network.target
+
+[Service]
+ExecStart=/usr/bin/fusioninventory-agent --daemon --no-fork $OPTIONS
+
+[Install]
+WantedBy=multi-user.target
diff --git a/fusioninventory-agent.service.conf 
b/fusioninventory-agent.service.conf
new file mode 100644
index 000..77ee066
--- /dev/null
+++ b/fusioninventory-agent.service.conf
@@ -0,0 +1,9 @@
+# Extra configuration file for fusioninventory-agent unit
+[Service]
+#Deprecated: will be removed in a future version
+EnvironmentFile=-/etc/sysconfig/fusioninventory-agent
+#New way to declare values
+#Commented right now, because it will be overriden from EnvironmentFile
+#Will be enabled in a future version
+#Environment="OPTIONS=--debug"
+#Environment="PATH=/sbin:/bin:/usr/sbin:/usr/bin"
diff --git a/fusioninventory-agent.spec b/fusioninventory-agent.spec
index d10f3e9..9c97e64 100644
--- a/fusioninventory-agent.spec
+++ b/fusioninventory-agent.spec
@@ -10,9 +10,12 @@ License: GPLv2+
 URL: http://fusioninventory.org/
 
 Version: 2.3.18
-Release: 2%{?dist}
+Release: 3%{?dist}
 Source0: 
https://github.com/fusioninventory/%{name}/releases/download/%{version}/FusionInventory-Agent-%{version}.tar.gz
 Source1: %{name}.cron
+#Use systemd override capabilities
+Source10:%{name}.service
+Source11:%{name}.service.conf
 #Apply 
https://github.com/fusioninventory/fusioninventory-agent/commit/25404f038f99bd091e0fb2368879e848500f5082
 Patch0:  %{name}-useless-module-cleaning
 
@@ -59,7 +62,6 @@ You can add additional packages for optional tasks:
 * fusioninventory-agent-task-wakeonlan
 not included due to a licensing issue for perl-Net-Write
 
-Edit the /etc/sysconfig/%{name} file for service configuration.
 
 %package -n perl-FusionInventory-Agent
 Summary:Libraries for Fusioninventory agent
@@ -175,15 +177,32 @@ EOF
 cat 

releng pushed to dropbox-api-command (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild"

2017-02-10 Thread notifications
From 44f7086fec711f721663a010acbbe9ee305f37bc Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Fri, 10 Feb 2017 08:37:41 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild

---
 dropbox-api-command.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dropbox-api-command.spec b/dropbox-api-command.spec
index 7b2e626..5f27a8e 100644
--- a/dropbox-api-command.spec
+++ b/dropbox-api-command.spec
@@ -3,7 +3,7 @@
 
 Name:   dropbox-api-command
 Version:2.09
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Dropbox API wrapper command
 
 License:MIT
@@ -56,6 +56,9 @@ A command line tool to manage a directory synced with Dropbox.
 
 
 %changelog
+* Fri Feb 10 2017 Fedora Release Engineering  - 
2.09-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
 * Sat Jul 23 2016 Ben Boeckel  - 2.09-1
 - update to 2.09
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/dropbox-api-command.git/commit/?h=master&id=44f7086fec711f721663a010acbbe9ee305f37bc
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


ppisar pushed to perl-IO-Compress (master). "Adjust tests to zlib-1.2.11"

2017-02-10 Thread notifications
From 899da565451620b340513fce804c09e85fe137c5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 10 Feb 2017 09:38:53 +0100
Subject: Adjust tests to zlib-1.2.11

---
 IO-Compress-2.070-Adapt-tests-to-zlib-1.2.11.patch | 95 ++
 perl-IO-Compress.spec  |  9 +-
 2 files changed, 103 insertions(+), 1 deletion(-)
 create mode 100644 IO-Compress-2.070-Adapt-tests-to-zlib-1.2.11.patch

diff --git a/IO-Compress-2.070-Adapt-tests-to-zlib-1.2.11.patch 
b/IO-Compress-2.070-Adapt-tests-to-zlib-1.2.11.patch
new file mode 100644
index 000..91a35c8
--- /dev/null
+++ b/IO-Compress-2.070-Adapt-tests-to-zlib-1.2.11.patch
@@ -0,0 +1,95 @@
+From a30130055928e5979c35aceee75cc3becfe3ad22 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
+Date: Tue, 7 Feb 2017 17:23:29 +0100
+Subject: [PATCH] Adapt tests to zlib 1.2.11
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+CPAN RT#120134
+
+Signed-off-by: Petr Písař 
+---
+ t/cz-03zlib-v1.t | 13 +++--
+ t/cz-06gzsetp.t  |  4 +++-
+ 2 files changed, 14 insertions(+), 3 deletions(-)
+
+diff --git a/t/cz-03zlib-v1.t b/t/cz-03zlib-v1.t
+index a85ed10..e070d46 100755
+--- a/t/cz-03zlib-v1.t
 b/t/cz-03zlib-v1.t
+@@ -23,10 +23,10 @@ BEGIN
+ 
+ my $count = 0 ;
+ if ($] < 5.005) {
+-$count = 453 ;
++$count = 456 ;
+ }
+ else {
+-$count = 471 ;
++$count = 474 ;
+ }
+ 
+ 
+@@ -721,6 +721,9 @@ EOM
+  
+ ($Answer, $status) = $x->deflate($hello) ;
+ ok $status == Z_OK ;
++($X, $status) = $x->flush(Z_BLOCK) ;
++ok $status == Z_OK ;
++$Answer .= $X ;
+ $input .= $hello;
+ 
+ # error cases
+@@ -747,6 +750,9 @@ EOM
+ ($X, $status) = $x->deflate($goodbye) ;
+ ok $status == Z_OK ;
+ $Answer .= $X ;
++($X, $status) = $x->flush(Z_BLOCK) ;
++ok $status == Z_OK ;
++$Answer .= $X ;
+ $input .= $goodbye;
+ 
+ # change only Level 
+@@ -759,6 +765,9 @@ EOM
+ ($X, $status) = $x->deflate($goodbye) ;
+ ok $status == Z_OK ;
+ $Answer .= $X ;
++($X, $status) = $x->flush(Z_BLOCK) ;
++ok $status == Z_OK ;
++$Answer .= $X ;
+ $input .= $goodbye;
+ 
+ # change only Strategy
+diff --git a/t/cz-06gzsetp.t b/t/cz-06gzsetp.t
+index b2cc687..45869a0 100644
+--- a/t/cz-06gzsetp.t
 b/t/cz-06gzsetp.t
+@@ -39,7 +39,7 @@ my $ver = Compress::Zlib::zlib_version();
+ plan skip_all => "gzsetparams needs zlib 1.0.6 or better. You have $ver\n"
+ if ZLIB_VERNUM() < 0x1060 ;
+ 
+-plan tests => 51 + $extra ;
++plan tests => 55 + $extra ;
+ 
+ # Check zlib_version and ZLIB_VERSION are the same.
+ SKIP: {
+@@ -65,6 +65,7 @@ SKIP: {
+ 
+ $input .= $hello;
+ is $x->gzwrite($hello), $len_hello, "gzwrite returned $len_hello" ;
++cmp_ok $x->gzflush(Z_BLOCK), '==', Z_OK, "flush before gzsetparams is ok";
+ 
+ # Error cases
+ eval { $x->gzsetparams() };
+@@ -120,6 +121,7 @@ foreach my $CompressClass ('IO::Compress::Gzip',
+ 
+ my $input .= $hello;
+ is $x->write($hello), $len_hello, "wrote $len_hello bytes" ;
++ok $x->flush(Z_BLOCK), "flush before deflateParams is ok";
+ 
+ # Change both Level & Strategy
+ ok $x->deflateParams(Z_BEST_SPEED, Z_HUFFMAN_ONLY), "deflateParams ok";
+-- 
+2.7.4
+
diff --git a/perl-IO-Compress.spec b/perl-IO-Compress.spec
index d4a9398..86716c6 100644
--- a/perl-IO-Compress.spec
+++ b/perl-IO-Compress.spec
@@ -3,12 +3,15 @@
 
 Name:   perl-IO-Compress
 Version:2.070
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Read and write compressed data
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/IO-Compress/
 Source0:
http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/IO-Compress-%{version}.tar.gz
+# Adjust tests to zlib-1.2.11, bug #1420012, CPAN RT#120134, can be removed
+# after fixing perl-Compress-Raw-Zlib properly (CPAN RT#119762)
+Patch0: IO-Compress-2.070-Adapt-tests-to-zlib-1.2.11.patch
 BuildArch:  noarch
 # Module Build
 BuildRequires:  coreutils
@@ -81,6 +84,7 @@ included with the IO-Compress distribution:
 
 %prep
 %setup -q -n IO-Compress-%{version}
+%patch0 -p1
 
 # Remove spurious exec permissions
 chmod -c -x lib/IO/Uncompress/{Adapter/Identity,RawInflate}.pm
@@ -131,6 +135,9 @@ make test 
COMPRESS_ZLIB_RUN_%{?with_long_tests:ALL}%{!?with_long_tests:MOST}=1
 %{_mandir}/man3/IO::Uncompress::*.3*
 
 %changelog
+* Fri Feb 10 2017 Petr Pisar  - 2.070-2
+- Adjust tests to zlib-1.2.11 (bug #1420012)
+
 * Thu Dec 29 2016 Paul Howarth  - 2.070-1
 - Update to 2.070
   - Fix prototype errors while lazy loading File::GlobMapper (CPAN RT#117675)
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-IO-Compress.git/commit/?h=master&id=899da565451620b340513fce804c09e85fe137c5
___
p

releng pushed to dspam (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild"

2017-02-10 Thread notifications
From 945e249f50713e4f101ea51b08458dbffbd16bbf Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Fri, 10 Feb 2017 08:47:56 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild

---
 dspam.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dspam.spec b/dspam.spec
index 9844dc4..5ef8b30 100644
--- a/dspam.spec
+++ b/dspam.spec
@@ -12,7 +12,7 @@
 Summary:A library and Mail Delivery Agent for Bayesian SPAM 
filtering
 Name:   dspam
 Version:3.10.2
-Release:20%{?dist}
+Release:21%{?dist}
 License:GPLv2
 Group:  System Environment/Daemons
 Source0:
http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
@@ -375,6 +375,9 @@ exit 0
 %config(noreplace) %{_sysconfdir}/httpd/conf.d/dspam-web.conf
 
 %changelog
+* Fri Feb 10 2017 Fedora Release Engineering  - 
3.10.2-21
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
 * Sat Jan 14 2017 Ville Skyttä  - 3.10.2-20
 - Move tmpfiles.d config to %%{_tmpfilesdir}
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/dspam.git/commit/?h=master&id=945e249f50713e4f101ea51b08458dbffbd16bbf
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1420326] perl-5.24.1-387.fc26 FTBFS: tests fail with zlib ≥ 1.2.9

2017-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1420326

Petr Pisar  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|jples...@redhat.com |ppi...@redhat.com



--- Comment #1 from Petr Pisar  ---
I will adjust the tests. After fixing perl-Compress-Raw-Zlib properly, the
patch will be removed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik uploaded Devel-Confess-0.009003.tar.gz for perl-Devel-Confess

2017-02-10 Thread notifications
97e43f179b3c9a99ad1ce47e19411f3480808f9bb06139bff27d459f53e9e16f60aa843d04fe2615dbd98d92b7437118644e16e1dc2f7d3aee643fc610493d8f
  Devel-Confess-0.009003.tar.gz

https://src.fedoraproject.org/lookaside/pkgs/perl-Devel-Confess/Devel-Confess-0.009003.tar.gz/sha512/97e43f179b3c9a99ad1ce47e19411f3480808f9bb06139bff27d459f53e9e16f60aa843d04fe2615dbd98d92b7437118644e16e1dc2f7d3aee643fc610493d8f/Devel-Confess-0.009003.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik pushed to perl-Devel-Confess (master). "Initial import"

2017-02-10 Thread notifications
From 541840a2963e691967d3dbd8663490c3b1bc824c Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Fri, 10 Feb 2017 10:01:11 +0100
Subject: Initial import

---
 .gitignore  |  1 +
 perl-Devel-Confess.spec | 72 +
 sources |  1 +
 3 files changed, 74 insertions(+)
 create mode 100644 perl-Devel-Confess.spec

diff --git a/.gitignore b/.gitignore
index e69de29..9ebfe6c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Devel-Confess-0.009003.tar.gz
diff --git a/perl-Devel-Confess.spec b/perl-Devel-Confess.spec
new file mode 100644
index 000..dda24b1
--- /dev/null
+++ b/perl-Devel-Confess.spec
@@ -0,0 +1,72 @@
+Name:   perl-Devel-Confess
+Version:0.009003
+Release:1%{?dist}
+Summary:Include stack traces on all warnings and errors
+License:GPL+ or Artistic
+URL:http://search.cpan.org/dist/Devel-Confess/
+Source0:
http://www.cpan.org/authors/id/H/HA/HAARG/Devel-Confess-%{version}.tar.gz
+BuildArch:  noarch
+# Build
+BuildRequires:  make
+BuildRequires:  perl
+BuildRequires:  perl-generators
+BuildRequires:  perl(:VERSION) >= 5.6.0
+BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Carp::Heavy)
+BuildRequires:  perl(Config)
+BuildRequires:  perl(Data::Dumper)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(overload)
+BuildRequires:  perl(Scalar::Util)
+BuildRequires:  perl(Symbol)
+# Win32::Console::ANSI - not used
+# Tests
+BuildRequires:  perl(base)
+BuildRequires:  perl(Cwd)
+BuildRequires:  perl(Exporter::Heavy)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(File::Temp)
+BuildRequires:  perl(IPC::Open3)
+BuildRequires:  perl(lib)
+BuildRequires:  perl(POSIX)
+BuildRequires:  perl(Safe)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(threads)
+# Optional tests
+BuildRequires:  perl(UNIVERSAL::can)
+BuildRequires:  perl(UNIVERSAL::isa)
+Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:   perl(Data::Dumper)
+
+%description
+This module is meant as a debugging aid. It can be used to make a script
+complain loudly with stack backtraces when warn()ing or die()ing. Unlike
+other similar modules (e.g. Carp::Always), stack traces will also be
+included when exception objects are thrown.
+
+%prep
+%setup -q -n Devel-Confess-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=$RPM_BUILD_ROOT
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+make test
+
+%files
+%doc Changes README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Thu Feb 09 2017 Jitka Plesnikova  - 0.009003-1
+- Initial release
diff --git a/sources b/sources
index e69de29..d583f9b 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (Devel-Confess-0.009003.tar.gz) = 
97e43f179b3c9a99ad1ce47e19411f3480808f9bb06139bff27d459f53e9e16f60aa843d04fe2615dbd98d92b7437118644e16e1dc2f7d3aee643fc610493d8f
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Devel-Confess.git/commit/?h=master&id=541840a2963e691967d3dbd8663490c3b1bc824c
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


trasher pushed to fusioninventory-agent (epel7). "Change systemd configuration files (..more)"

2017-02-10 Thread notifications
From 1038f6b7d9f3c7665755cfca6b3cf4415ba1ffc9 Mon Sep 17 00:00:00 2001
From: Johan Cwiklinski 
Date: Thu, 9 Feb 2017 14:08:20 +0100
Subject: Change systemd configuration files

Re-add comments and default options to get cron mode working
Use new service file
Deprecate using EnvironmentFile for service extra config
---
 fusioninventory-agent.cron |  2 +-
 fusioninventory-agent.service  | 20 
 fusioninventory-agent.service.conf |  9 +
 fusioninventory-agent.spec | 37 +++--
 4 files changed, 61 insertions(+), 7 deletions(-)
 create mode 100644 fusioninventory-agent.service
 create mode 100644 fusioninventory-agent.service.conf

diff --git a/fusioninventory-agent.cron b/fusioninventory-agent.cron
index 8b4b99f..8129715 100644
--- a/fusioninventory-agent.cron
+++ b/fusioninventory-agent.cron
@@ -29,7 +29,7 @@ do
 OPTS="$OPTS --lazy --server=${OCSSERVER[$i]}"
 fi
 echo "[$(date '+%c')] Running $NAME $OPTS"
-/usr/bin/$NAME $FUSINVOPT --logfile=$LOG $OPTS
+/usr/bin/$NAME $OPTIONS --logfile=$LOG $OPTS
 fi
 ((i++))
 done
diff --git a/fusioninventory-agent.service b/fusioninventory-agent.service
new file mode 100644
index 000..2e220d4
--- /dev/null
+++ b/fusioninventory-agent.service
@@ -0,0 +1,20 @@
+# It is not recommended to modify this file in-place, because it will be
+# overwritten during package upgrades.  If you want to customize, the best
+# way is to use the "systemctl edit" command to create an override unit.
+
+# For example, to pass additional options (for instance,
+# --no-category=software) to the agent at startup, create an override unit
+# (as is done by systemctl edit) and enter the following:
+
+# [Service]
+# Environment="OPTIONS=--no-category=software"
+
+[Unit]
+Description=FusionInventory agent
+After=syslog.target network.target
+
+[Service]
+ExecStart=/usr/bin/fusioninventory-agent --daemon --no-fork $OPTIONS
+
+[Install]
+WantedBy=multi-user.target
diff --git a/fusioninventory-agent.service.conf 
b/fusioninventory-agent.service.conf
new file mode 100644
index 000..77ee066
--- /dev/null
+++ b/fusioninventory-agent.service.conf
@@ -0,0 +1,9 @@
+# Extra configuration file for fusioninventory-agent unit
+[Service]
+#Deprecated: will be removed in a future version
+EnvironmentFile=-/etc/sysconfig/fusioninventory-agent
+#New way to declare values
+#Commented right now, because it will be overriden from EnvironmentFile
+#Will be enabled in a future version
+#Environment="OPTIONS=--debug"
+#Environment="PATH=/sbin:/bin:/usr/sbin:/usr/bin"
diff --git a/fusioninventory-agent.spec b/fusioninventory-agent.spec
index 3937358..7950511 100644
--- a/fusioninventory-agent.spec
+++ b/fusioninventory-agent.spec
@@ -10,9 +10,12 @@ License: GPLv2+
 URL: http://fusioninventory.org/
 
 Version: 2.3.18
-Release: 2%{?dist}
+Release: 3%{?dist}
 Source0: 
https://github.com/fusioninventory/%{name}/releases/download/%{version}/FusionInventory-Agent-%{version}.tar.gz
 Source1: %{name}.cron
+#Use systemd override capabilities
+Source10:%{name}.service
+Source11:%{name}.service.conf
 #Apply 
https://github.com/fusioninventory/fusioninventory-agent/commit/25404f038f99bd091e0fb2368879e848500f5082
 Patch0:  %{name}-useless-module-cleaning
 
@@ -59,7 +62,6 @@ You can add additional packages for optional tasks:
 * fusioninventory-agent-task-wakeonlan
 not included due to a licensing issue for perl-Net-Write
 
-Edit the /etc/sysconfig/%{name} file for service configuration.
 
 %package -n perl-FusionInventory-Agent
 Summary:Libraries for Fusioninventory agent
@@ -175,15 +177,32 @@ EOF
 cat 

jplesnik set the koschei monitoring flag of perl-XML-SemanticDiff to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-XML-SemanticDiff to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-WWW-Twilio-TwiML to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-WWW-Twilio-TwiML to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-WWW-Twilio-API to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-WWW-Twilio-API to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-WebService-Dropbox to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-WebService-Dropbox to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Web-Paste-Simple to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Web-Paste-Simple to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-URL-Encode-XS to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-URL-Encode-XS to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-URI-Encode to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-URI-Encode to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-URI-ws to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-URI-ws to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Unicode-CaseFold to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Unicode-CaseFold to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Time-TAI64 to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Time-TAI64 to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Time-Moment to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Time-Moment to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Text-Reflow to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Text-Reflow to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Tie-Cache to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Tie-Cache to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Text-Fuzzy to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Text-Fuzzy to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-TeX-Encode to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-TeX-Encode to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Text-Balanced to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Text-Balanced to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Test-YAML to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Test-YAML to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Test-XML to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Test-XML to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Test-RequiresInternet to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Test-RequiresInternet to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Test-Deep-Type to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Test-Deep-Type to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Test-Deep-JSON to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Test-Deep-JSON to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Test-CleanNamespaces to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Test-CleanNamespaces to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Term-EditorEdit to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Term-EditorEdit to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Term-Cap to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Term-Cap to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-TAP-Harness-Multiple to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-TAP-Harness-Multiple to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Struct-Dumb to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Struct-Dumb to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-SQL-Tokenizer to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-SQL-Tokenizer to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Sort-MergeSort to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Sort-MergeSort to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Software-License-CCpack to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Software-License-CCpack to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Sereal to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Sereal to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Sentinel to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Sentinel to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Return-MultiLevel to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Return-MultiLevel to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Pod-Snippets to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Pod-Snippets to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Pod-Escapes to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Pod-Escapes to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Plack-Middleware-MethodOverride to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of 
perl-Plack-Middleware-MethodOverride to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Plack-Middleware-RemoveRedundantBody to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of 
perl-Plack-Middleware-RemoveRedundantBody to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Plack-Middleware-FixMissingBodyInRedirect to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of 
perl-Plack-Middleware-FixMissingBodyInRedirect to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-PerlIO-via-QuotedPrint to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-PerlIO-via-QuotedPrint to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-PerlIO-buffersize to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-PerlIO-buffersize to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Path-ScanINC to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Path-ScanINC to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-perlfaq to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-perlfaq to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Parse-Debian-Packages to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Parse-Debian-Packages to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Parse-Gitignore to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Parse-Gitignore to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Parse-CPAN-Packages-Fast to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Parse-CPAN-Packages-Fast to 
True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Palm-PDB to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Palm-PDB to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Palm to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Palm to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Package-New to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Package-New to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Net-Whois-Raw to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Net-Whois-Raw to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Net-Pcap-Easy to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Net-Pcap-Easy to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


releng pushed to fpdns (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild"

2017-02-10 Thread notifications
From 9fde103dd093226015ca2e2fe50814c6e8feb874 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Fri, 10 Feb 2017 09:57:44 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild

---
 fpdns.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/fpdns.spec b/fpdns.spec
index e4b79b1..42d349d 100644
--- a/fpdns.spec
+++ b/fpdns.spec
@@ -2,7 +2,7 @@
 
 Name:   fpdns
 Version:0.10.0
-Release:20131125.1%{?dist}
+Release:20131126.1%{?dist}
 Summary:Fingerprint DNS servers
 License:BSD
 Group:  Development/Libraries
@@ -55,6 +55,9 @@ rm -rf %{buildroot}
 %{_bindir}/fpdns
 
 %changelog
+* Fri Feb 10 2017 Fedora Release Engineering  - 
0.10.0-20131126.1
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
 * Sun May 15 2016 Jitka Plesnikova  - 0.10.0-20131125.1
 - Perl 5.24 rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/fpdns.git/commit/?h=master&id=9fde103dd093226015ca2e2fe50814c6e8feb874
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Net-Whois to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Net-Whois to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Net-Whois-IP to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Net-Whois-IP to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Net-HL7 to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Net-HL7 to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-MooX-ConfigFromFile to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-MooX-ConfigFromFile to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Mojolicious-Plugin-RenderFile to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Mojolicious-Plugin-RenderFile 
to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Module-Runtime-Conflicts to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Module-Runtime-Conflicts to 
True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Module-Data to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Module-Data to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Module-Build-XSUtil to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Module-Build-XSUtil to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Mock-Sub to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Mock-Sub to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-MIME-Lite-TT-HTML to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-MIME-Lite-TT-HTML to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Mo to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Mo to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-MIME-Base64 to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-MIME-Base64 to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Math-Int64 to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Math-Int64 to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


releng pushed to fvsp (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild"

2017-02-10 Thread notifications
From 01ea191d7617e4f18012971e07d127a2c5d5dade Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Fri, 10 Feb 2017 10:06:29 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild

---
 fvsp.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/fvsp.spec b/fvsp.spec
index b94ed44..e32f628 100644
--- a/fvsp.spec
+++ b/fvsp.spec
@@ -1,6 +1,6 @@
 Name:   fvsp
 Version:0.1
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Convert Perl version string into RPM-compatible version string
 Group:  Development/Tools
 License:LGPLv3+
@@ -63,6 +63,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
 %{_mandir}/man3/*
 
 %changelog
+* Fri Feb 10 2017 Fedora Release Engineering  - 0.1-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
 * Wed Feb 03 2016 Fedora Release Engineering  - 0.1-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/fvsp.git/commit/?h=master&id=01ea191d7617e4f18012971e07d127a2c5d5dade
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-LWP-Protocol-connect to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-LWP-Protocol-connect to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-LWP-Protocol-PSGI to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-LWP-Protocol-PSGI to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-LV to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-LV to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Log-Log4perl-Appender-Socket-UNIX to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of 
perl-Log-Log4perl-Appender-Socket-UNIX to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Locale-Currency-Format to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Locale-Currency-Format to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-libnet to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-libnet to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-JSON-Tiny to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-JSON-Tiny to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Iterator-Simple-Lookahead to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Iterator-Simple-Lookahead to 
True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Iterator-Simple to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Iterator-Simple to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-IO-Tee to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-IO-Tee to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-HTTP-OAI to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-HTTP-OAI to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Inline-Python to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Inline-Python to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-HTTP-Headers-Fast to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-HTTP-Headers-Fast to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-HTML-TreeBuilderX-ASP_NET to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-HTML-TreeBuilderX-ASP_NET to 
True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-HTML-HTML5-Entities to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-HTML-HTML5-Entities to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1420012] perl-IO-Compress-2.070-1.fc26 FTBS: tests fail with zlib ≥ 1.2.9

2017-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1420012

Petr Pisar  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-IO-Compress-2.070-2.fc
   ||26
 Resolution|--- |RAWHIDE
Last Closed||2017-02-10 05:26:02



-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1420326] perl-5.24.1-387.fc26 FTBFS: tests fail with zlib ≥ 1.2.9

2017-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1420326
Bug 1420326 depends on bug 1420012, which changed state.

Bug 1420012 Summary: perl-IO-Compress-2.070-1.fc26 FTBS: tests fail with zlib ≥ 
1.2.9
https://bugzilla.redhat.com/show_bug.cgi?id=1420012

   What|Removed |Added

 Status|ASSIGNED|CLOSED
 Resolution|--- |RAWHIDE



-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Hash-Layout to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Hash-Layout to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-Gtk2-AppIndicator to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-Gtk2-AppIndicator to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-GStreamer1 to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-GStreamer1 to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-File-Spec-Native to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-File-Spec-Native to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-File-FindLib to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-File-FindLib to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-File-Edit-Portable to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-File-Edit-Portable to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik set the koschei monitoring flag of perl-File-ConfigDir to True

2017-02-10 Thread notifications
jplesnik set the koschei monitoring flag of perl-File-ConfigDir to True

___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


  1   2   3   4   5   6   7   8   9   10   >