Re: EPEL noip and pnp4nagios epel7 availibility

2014-08-31 Thread LOEFFLER Peter
I reported the bug: https://bugzilla.redhat.com/show_bug.cgi?id=1135766
Notice that there was already one for fedora 19: 
https://bugzilla.redhat.com/show_bug.cgi?id=914952


From: Christopher Meng [cicku...@gmail.com]
Sent: Sunday, August 31, 2014 1:42 AM
To: LOEFFLER Peter
Cc: EPEL Development List
Subject: Re: EPEL noip and pnp4nagios epel7 availibility

On Sat, Aug 30, 2014 at 7:55 PM, LOEFFLER Peter
peter.loeff...@herold.at wrote:

 I think it's a good idea to switch to systemd.
 Did i get it right that i shoud report a bug that a systemd script is missing 
 and you will offer it at bugzilla?

You can report a bug first, I will arrive there then. The systemd
script problem should be fixed on all branches.
[http://www.herold.at/images/hbdat_logo.gif]http://www.herold.at

HEROLD Business Data GmbH
Guntramsdorfer Straße 105
2340 Mödling

FN 233171z
Landesgericht Wiener Neustadt

Besuchen Sie uns online und mobil www.herold.at!

Weitere Informationen zu unseren Produkten finden Sie unter:
http://ichbinderherold.at
Oder in unserem Video auf YouTube.http://www.youtube.com/watch?v=i--5-weI7Ck

[http://www.herold.at/images/fb_icon_mail.gif]http://www.facebook.at/derheroldWerden
 Sie Fan von HEROLD auf Facebook!


Diese E-Mail kann vertrauliche und/oder rechtlich geschützte Informationen 
enthalten. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail 
irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und 
vernichten Sie diese E-Mail. Das unerlaubte Kopieren sowie die unbefugte 
Weitergabe dieser Mail sind nicht gestattet.

This e-mail may contain confidential and/or privileged information. If you are 
not the intended recipient (or have received this e-mail in error) please 
notify the sender immediately and delete this e-mail. Any unauthorized copying, 
disclosure or distribution of the material in this e-mail is strictly forbidden.
___
epel-devel mailing list
epel-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/epel-devel


fedpkg build error: Error running GIT command git reset --hard ..

2014-08-31 Thread David Timms
Hi, I'm trying to build an updated package, first in master, then in f21
and the command failed with the below. Google hasn't helped me so far.
What happening here ?

Dave.
=
$ fedpkg build
Building tnef-1.4.11-1.20140826git0b35ad8.fc21 for f21-candidate
Created task: 7494307
Task info: http://koji.fedoraproject.org/koji/taskinfo?taskID=7494307
Watching tasks (this may be safely interrupted)...
7494307 build (f21-candidate,
/tnef:0b5ed5d06268924f1c545174dc57e15e951a8ff6): open
(arm02-builder18.arm.fedoraproject.org)
  7494310 buildSRPMFromSCM
(/tnef:0b5ed5d06268924f1c545174dc57e15e951a8ff6): open
(arm04-builder03.arm.fedoraproject.org)
  7494310 buildSRPMFromSCM
(/tnef:0b5ed5d06268924f1c545174dc57e15e951a8ff6): open
(arm04-builder03.arm.fedoraproject.org) - FAILED: BuildError: Error
running GIT command git reset --hard
0b5ed5d06268924f1c545174dc57e15e951a8ff6, see checkout.log for details
  0 free  1 open  0 done  1 failed
7494307 build (f21-candidate,
/tnef:0b5ed5d06268924f1c545174dc57e15e951a8ff6): open
(arm02-builder18.arm.fedoraproject.org) - FAILED: BuildError: Error
running GIT command git reset --hard
0b5ed5d06268924f1c545174dc57e15e951a8ff6, see checkout.log for details
  0 free  0 open  0 done  2 failed

7494307 build (f21-candidate,
/tnef:0b5ed5d06268924f1c545174dc57e15e951a8ff6) failed
[davidt@davidtdesktop tnef]$

checkout.log:
$ git clone -n git://pkgs.fedoraproject.org/tnef
/var/lib/mock/f21-build-2342345-415439/root/tmp/scmroot/tnef
Cloning into
'/var/lib/mock/f21-build-2342345-415439/root/tmp/scmroot/tnef'...
$ git reset --hard 0b5ed5d06268924f1c545174dc57e15e951a8ff6
fatal: Could not parse object '0b5ed5d06268924f1c545174dc57e15e951a8ff6'.

-- 
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: fedpkg build error: Error running GIT command git reset --hard ..

2014-08-31 Thread Till Maas
On Sun, Aug 31, 2014 at 05:43:13PM +1000, David Timms wrote:
 Hi, I'm trying to build an updated package, first in master, then in f21
 and the command failed with the below. Google hasn't helped me so far.
 What happening here ?

 (arm02-builder18.arm.fedoraproject.org) - FAILED: BuildError: Error
 running GIT command git reset --hard
 0b5ed5d06268924f1c545174dc57e15e951a8ff6, see checkout.log for details
   0 free  0 open  0 done  2 failed

 checkout.log:
 $ git clone -n git://pkgs.fedoraproject.org/tnef
 /var/lib/mock/f21-build-2342345-415439/root/tmp/scmroot/tnef
 Cloning into
 '/var/lib/mock/f21-build-2342345-415439/root/tmp/scmroot/tnef'...
 $ git reset --hard 0b5ed5d06268924f1c545174dc57e15e951a8ff6
 fatal: Could not parse object '0b5ed5d06268924f1c545174dc57e15e951a8ff6'.

Your latest commit is not pushed to git, so fedpkg tries to build the
latest local commit, which does not exist remotely. The following
command should output commit 0b5ed5d06268924f1c545174dc57e15e951a8ff6,
if I am right:

git show HEAD | head -n 1

Verify your local git history, e.g. with git log -p, tig --all or
gitk --all and push your changes if they are good (fedpkg push).

Regards
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

F-21 Branched report: 20140831 changes

2014-08-31 Thread Fedora Branched Report
Compose started at Sun Aug 31 07:15:02 UTC 2014

Broken deps for armhfp
--
[APLpy]
APLpy-0.9.8-5.fc21.noarch requires pywcs
[PyKDE]
PyKDE-3.16.6-14.fc20.armv7hl requires sip-api(10) = 0:10.0
[PyQuante]
PyQuante-libint-1.6.4-11.fc21.1.armv7hl requires libint(armv7hl-32) = 
0:1.1.6-2.fc21
[audtty]
audtty-0.1.12-9.fc20.armv7hl requires libaudclient.so.2
[authhub]
authhub-0.1.2-3.fc19.armv7hl requires libjson.so.0
[couchdb]
couchdb-1.6.0-9.fc21.armv7hl requires erlang(erl_nif_version) = 0:2.4
couchdb-1.6.0-9.fc21.armv7hl requires erlang(erl_drv_version) = 0:2.2
[cp2k]
cp2k-2.5.1-8.fc21.armv7hl requires libint(armv7hl-32) = 0:1.1.6-2.fc21
cp2k-mpich-2.5.1-8.fc21.armv7hl requires libint(armv7hl-32) = 
0:1.1.6-2.fc21
cp2k-openmpi-2.5.1-8.fc21.armv7hl requires libmpi_usempi.so.1
cp2k-openmpi-2.5.1-8.fc21.armv7hl requires libint(armv7hl-32) = 
0:1.1.6-2.fc21
[csound]
csound-java-5.19.01-1.fc20.armv7hl requires libgcj_bc.so.1
csound-java-5.19.01-1.fc20.armv7hl requires java-gcj-compat
csound-java-5.19.01-1.fc20.armv7hl requires java-gcj-compat
csound-java-5.19.01-1.fc20.armv7hl requires java-1.5.0-gcj
csound-tk-5.19.01-1.fc20.armv7hl requires libtk8.5.so
csound-tk-5.19.01-1.fc20.armv7hl requires libtcl8.5.so
[deltacloud-core]
deltacloud-core-rackspace-1.1.3-1.fc20.noarch requires 
rubygem(cloudservers)
deltacloud-core-rackspace-1.1.3-1.fc20.noarch requires 
rubygem(cloudfiles)
[docker-registry]
docker-registry-0.7.3-1.fc21.noarch requires docker-io
[dragonegg]
dragonegg-3.4-0.3.rc0.fc21.armv7hl requires gcc = 0:4.8.2-14.fc21
[edelib]
edelib-2.1-5.fc21.armv7hl requires libedelib.so
edelib-devel-2.1-5.fc21.armv7hl requires libedelib.so
[ejabberd]
ejabberd-2.1.13-8.fc21.armv7hl requires erlang(erl_drv_version) = 0:2.2
[elpa]
elpa-openmpi-2013.11-4.008.fc21.armv7hl requires libmpi_usempi.so.1
[erlang-basho_metrics]
erlang-basho_metrics-1.0.0-10.fc21.armv7hl requires 
erlang(erl_nif_version) = 0:2.4
[erlang-bitcask]
erlang-bitcask-1.6.3-1.fc20.armv7hl requires erlang(erl_nif_version) = 
0:2.4
[erlang-cl]
erlang-cl-1.2.1-2.fc21.armv7hl requires erlang(erl_nif_version) = 0:2.4
[erlang-ebloom]
erlang-ebloom-1.1.2-4.fc21.armv7hl requires erlang(erl_nif_version) = 
0:2.4
[erlang-eleveldb]
erlang-eleveldb-1.3.2-2.fc20.armv7hl requires erlang(erl_nif_version) = 
0:2.4
[erlang-emmap]
erlang-emmap-0-0.8.git05ae1bb.fc21.armv7hl requires 
erlang(erl_nif_version) = 0:2.4
[erlang-erlsyslog]
erlang-erlsyslog-0.6.2-6.fc21.armv7hl requires erlang(erl_drv_version) 
= 0:2.2
[erlang-esasl]
erlang-esasl-0.1-15.20120116git665cc80.fc21.armv7hl requires 
erlang(erl_drv_version) = 0:2.2
[erlang-esdl]
erlang-esdl-1.3.1-3.fc21.armv7hl requires erlang(erl_drv_version) = 
0:2.2
[erlang-js]
erlang-js-1.2.2-5.fc21.armv7hl requires erlang(erl_drv_version) = 0:2.2
[erlang-sd_notify]
erlang-sd_notify-0.1-1.fc21.armv7hl requires erlang(erl_nif_version) = 
0:2.4
[erlang-skerl]
erlang-skerl-1.1.0-7.fc21.armv7hl requires erlang(erl_nif_version) = 
0:2.4
[erlang-snappy]
erlang-snappy-1.0.3-0.7.git80db168.fc21.armv7hl requires 
erlang(erl_nif_version) = 0:2.4
[eucalyptus]
eucalyptus-common-java-3.3.0-0.5.20130408git32052445.fc20.armv7hl 
requires hibernate3-jbosscache = 0:3.6.10-7
[fatrat]
1:fatrat-1.2.0-0.21.beta2.fc21.armv7hl requires 
libtorrent-rasterbar.so.7
[flashrom]
flashrom-0.9.6.1-5.svn1705.fc20.armv7hl requires libftdi.so.1
[flush]
flush-0.9.12-10.fc21.armv7hl requires libtorrent-rasterbar.so.7
[freesteam]
freesteam-ascend-2.1-6.20140724svn753.fc21.armv7hl requires 
libascend.so.1
[gcc-python-plugin]
gcc-python2-debug-plugin-0.12-18.fc21.armv7hl requires gcc = 
0:4.8.2-14.fc21
gcc-python2-plugin-0.12-18.fc21.armv7hl requires gcc = 0:4.8.2-14.fc21
gcc-python3-debug-plugin-0.12-18.fc21.armv7hl requires 
libpython3.3dm.so.1.0
gcc-python3-debug-plugin-0.12-18.fc21.armv7hl requires gcc = 
0:4.8.2-14.fc21
gcc-python3-plugin-0.12-18.fc21.armv7hl requires libpython3.3m.so.1.0
gcc-python3-plugin-0.12-18.fc21.armv7hl requires gcc = 0:4.8.2-14.fc21
[gedit-valencia]
gedit-valencia-0.4.0-1.20131223git94442bf.fc21.armv7hl requires 
libvala-0.24.so.0
[ghc-hint]
ghc-hint-devel-0.4.2.0-2.fc21.armv7hl requires 
ghc-devel(ghc-7.6.3-9662c0f342b2d5c9e1cd2b6330e697bc)
[gnome-python2-desktop]
gnome-python2-metacity-2.32.0-18.fc21.armv7hl requires 
libmetacity-private.so.0
[gnome-shell-extension-pomodoro]
gnome-shell-extension-pomodoro-0.10.0-4.fc21.armv7hl requires 
libupower-glib.so.2
[gofer]
ruby-gofer-0.77.1-2.fc21.noarch requires rubygem(qpid) = 0:0.16.0
[hibernate-search]

rawhide report: 20140831 changes

2014-08-31 Thread Fedora Rawhide Report
Broken deps for i386
--
[APLpy]
APLpy-0.9.8-5.fc21.noarch requires pywcs
[PyKDE]
PyKDE-3.16.6-14.fc20.i686 requires sip-api(10) = 0:10.0
[PyQuante]
PyQuante-libint-1.6.4-11.fc22.1.i686 requires libint(x86-32) = 
0:1.1.6-2.fc21
[alt-ergo]
alt-ergo-0.95.2-11.fc22.i686 requires ocaml(Obj) = 
0:31e1329a4c3d9c2947b31f79b700fcfd
[apron]
ocaml-apron-0.9.10-22.fc22.i686 requires ocaml(Obj) = 
0:31e1329a4c3d9c2947b31f79b700fcfd
[audtty]
audtty-0.1.12-9.fc20.i686 requires libaudclient.so.2
[authhub]
authhub-0.1.2-3.fc19.i686 requires libjson.so.0
[aws]
aws-devel-3.1.0-6.fc21.i686 requires libgrypt-devel
[bustle]
bustle-0.4.7-1.fc22.i686 requires libHSsetlocale-0.0.3-ghc7.6.3.so
bustle-0.4.7-1.fc22.i686 requires 
ghc(setlocale-0.0.3-a02b2489a0b7f29dacb3679a191175a4)
[cduce]
cduce-0.6.0-6.fc22.i686 requires ocaml(String) = 
0:d3baab1cf7edc2fec1fa9c9217140d10
cduce-0.6.0-6.fc22.i686 requires ocaml(Pervasives) = 
0:4329e57fde14cc94b02a739d2595516b
cduce-0.6.0-6.fc22.i686 requires ocaml(Obj) = 
0:31e1329a4c3d9c2947b31f79b700fcfd
cduce-0.6.0-6.fc22.i686 requires ocaml(Location) = 
0:0beb1f904f757422c85ea51aae076559
cduce-0.6.0-6.fc22.i686 requires ocaml(Lazy) = 
0:65801e9cdbd8c4e82df1f02f97116721
cduce-0.6.0-6.fc22.i686 requires ocaml(Format) = 
0:a9de4c8c622e30d6eb221ce41563dbf4
cduce-0.6.0-6.fc22.i686 requires ocaml(Filename) = 
0:3b889637b7a18c39de7a0d0f5d10432e
cduce-0.6.0-6.fc22.i686 requires ocaml(Array) = 
0:9125e0607c9ad02018c9eb4672142241
[compat-gcc-34]
compat-gcc-34-c++-3.4.6-29.fc19.i686 requires libstdc++  0:4.9.0
[cp2k]
cp2k-2.5.1-8.fc22.i686 requires libint(x86-32) = 0:1.1.6-2.fc21
cp2k-mpich-2.5.1-8.fc22.i686 requires libint(x86-32) = 0:1.1.6-2.fc21
cp2k-openmpi-2.5.1-8.fc22.i686 requires libmpi_usempi.so.1
cp2k-openmpi-2.5.1-8.fc22.i686 requires libint(x86-32) = 0:1.1.6-2.fc21
[csound]
csound-java-5.19.01-1.fc20.i686 requires libgcj_bc.so.1
csound-java-5.19.01-1.fc20.i686 requires java-gcj-compat
csound-java-5.19.01-1.fc20.i686 requires java-gcj-compat
csound-java-5.19.01-1.fc20.i686 requires java-1.5.0-gcj
csound-tk-5.19.01-1.fc20.i686 requires libtk8.5.so
csound-tk-5.19.01-1.fc20.i686 requires libtcl8.5.so
[deltacloud-core]
deltacloud-core-rackspace-1.1.3-1.fc20.noarch requires 
rubygem(cloudservers)
deltacloud-core-rackspace-1.1.3-1.fc20.noarch requires 
rubygem(cloudfiles)
[docker-registry]
docker-registry-0.7.3-1.fc22.noarch requires docker-io
[dragonegg]
dragonegg-3.4-0.3.rc0.fc21.i686 requires gcc = 0:4.8.2-14.fc21
[edelib]
edelib-2.1-5.fc22.i686 requires libedelib.so
edelib-devel-2.1-5.fc22.i686 requires libedelib.so
[ejabberd]
ejabberd-2.1.13-8.fc21.i686 requires erlang(erl_drv_version) = 0:2.2
[elk]
elk-openmpi-2.3.22-7.fc21.i686 requires libmpi_usempi.so.1
[elpa]
elpa-openmpi-2013.11-4.008.fc21.i686 requires libmpi_usempi.so.1
[erlang-sd_notify]
erlang-sd_notify-0.1-1.fc21.i686 requires erlang(erl_nif_version) = 
0:2.4
[eucalyptus]
eucalyptus-common-java-3.3.0-0.5.20130408git32052445.fc20.i686 requires 
hibernate3-jbosscache = 0:3.6.10-7
[fatrat]
1:fatrat-1.2.0-0.21.beta2.fc22.i686 requires libtorrent-rasterbar.so.7
[flashrom]
flashrom-0.9.6.1-5.svn1705.fc20.i686 requires libftdi.so.1
[flush]
flush-0.9.12-10.fc22.i686 requires libtorrent-rasterbar.so.7
[frama-c]
frama-c-1.10-14.fc22.i686 requires ocaml(Obj) = 
0:31e1329a4c3d9c2947b31f79b700fcfd
[freesteam]
freesteam-ascend-2.1-6.20140724svn753.fc22.i686 requires libascend.so.1
[ga]
ga-openmpi-5.3b-9.fc21.i686 requires libmpi_usempi.so.1
[gappalib-coq]
gappalib-coq-1.0.0-13.fc22.i686 requires ocaml(Obj) = 
0:31e1329a4c3d9c2947b31f79b700fcfd
[gcc-python-plugin]
gcc-python2-debug-plugin-0.12-18.fc21.i686 requires gcc = 
0:4.8.2-14.fc21
gcc-python2-plugin-0.12-18.fc21.i686 requires gcc = 0:4.8.2-14.fc21
gcc-python3-debug-plugin-0.12-18.fc21.i686 requires 
libpython3.3dm.so.1.0
gcc-python3-debug-plugin-0.12-18.fc21.i686 requires gcc = 
0:4.8.2-14.fc21
gcc-python3-plugin-0.12-18.fc21.i686 requires libpython3.3m.so.1.0
gcc-python3-plugin-0.12-18.fc21.i686 requires gcc = 0:4.8.2-14.fc21
[gedit-valencia]
gedit-valencia-0.4.0-1.20131223git94442bf.fc21.i686 requires 
libvala-0.24.so.0
[ghc-hgettext]
ghc-hgettext-0.1.30-2.fc22.i686 requires 
libHSsetlocale-0.0.3-ghc7.6.3.so
ghc-hgettext-0.1.30-2.fc22.i686 requires 
ghc(setlocale-0.0.3-a02b2489a0b7f29dacb3679a191175a4)
ghc-hgettext-devel-0.1.30-2.fc22.i686 requires 
libHSsetlocale-0.0.3-ghc7.6.3.so
ghc-hgettext-devel-0.1.30-2.fc22.i686 requires 

Two-minute(!)-survey on motivation and free time contribution of open source developers

2014-08-31 Thread Stefan Kullack
Dear all,

for a university research project in an Open Source class at the Technical University Berlin (Germany) I would like to gather some original input from open source software developers. I kept the length of the survey to an absolute minimum!!! The survey is supposed to capture the free time contribution and the primary motivation of open source software developers.

It would be fantastic if you could spend two minutes on three simple questions!

Here is the link to the survey: https://de.surveymonkey.com/s/MFKXYLP

I highly appreciate the (short) time you take for filling it out!

Best regards,

Stefan Kullack

TU Berlin


-- 
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: Two-minute(!)-survey on motivation and free time contribution of open source developers

2014-08-31 Thread Paulo César Pereira de Andrade
2014-08-31 11:03 GMT-03:00 Stefan Kullack stefankull...@web.de:
 Dear all,

 for a university research project in an Open Source class at the Technical
 University Berlin (Germany) I would like to gather some original input from
 open source software developers. I kept the length of the survey to an
 absolute minimum!!! The survey is supposed to capture the free time
 contribution and the primary motivation of open source software developers.

 It would be fantastic if you could spend two minutes on three simple
 questions!

 Here is the link to the survey: https://de.surveymonkey.com/s/MFKXYLP

 I highly appreciate the (short) time you take for filling it out!

  I think the last question misses a very important option, that is when
one believes implementations should be open, like in a math software,
if the formula is hidden and attempting to learn how it is done may even
be considered a criminal act, how can you prove it?

 Best regards,

 Stefan Kullack

 TU Berlin

Thanks,
Paulo
-- 
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: systemd dependencies

2014-08-31 Thread Nico Kadel-Garcia
On Tue, Aug 26, 2014 at 3:32 AM, Vít Ondruch vondr...@redhat.com wrote:
 Hi,

 Recently I have noticed that systemd package dependency is creeping into
 some packages where it is not necessary. subversion [1] or rsync [2] are
 good examples. Please consider moving daemon parts into independent
 subpackages. When I install rsync/subversion, I am typically interested
 just in client side.

 Just to be clear, systemd-libs is in minimal build root already, so I am
 not complaining about systemd-libs package, but about systemd package.

Sorry for the late response, I've been busy.

I've some interest because I've been backporting current Subversion
versions to RHEL 6 over at https://github.com/nkadel/, and trying to
get them into repoforge. They won't go in EPEL or mainline RHEL due to
significant incompatibilities with the published releases. But
consistency with Fedora is useful, so I'm interested.

The problem for subversion is the 'svnserve' daemon, which can be used
as a standalone daemon. That should, ideally, be factored into a
'subversion-svnserve-daemon' or similar package. The svnserve daemon
is also used for Subversion server side 'svn+ssh' access, so it
shouldn't be stripped out completely, but can work as s standalone
daemon and needs init scripts or systemd setups for precisely that
use. The confusion will occur when people expect to find the daemon in
the base 'subversion' package. With frequent new Fedora upgrades, I
think it's a great idea to segregate out now as part of the next
Fedora release.

Rsync has similar issues for 'rsyncd' as a standalone daemon, which I
see have been resolved as an 'rsync-daemon' separate package.
-- 
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: fakesystemd package breaking builds

2014-08-31 Thread Sérgio Basto
On Qua, 2014-08-27 at 07:28 -0500, Rex Dieter wrote: 
 Seems the fakesystemd package is breaking some rawhide builds, particularly 
 because it is getting pulled into the buildroot and that it contains:
 Conflicts: systemd
 
 Example qt:
 https://koji.fedoraproject.org/koji/taskinfo?taskID=7452802
 
 (which is no direct systemd dependencies, mind you)
 
 I can guess why this fakesystemd package came into existence, but I question 
 the wisdom behind it's implementation.  As far as I can tell, it contains 
 only:
 Provides: systemd
 (and a few other systemd-related dependencies)
 
 systemd-related directories
 systemd macros
 
 I'd argue 
 * these last 2 items could easily be shared with the real systemd package 
 (ie, systemd could grow systemd-filesystem and/or systemd-macros subpkgs) 
 and should not be duplicated here.
 * fakesystemd should be untagged until the reasons behind these failures are 
 better understood and fixed


I'm getting this error: 
DEBUG util.py:257:  Getting requirements for
1:kplayer-0.7.0-11.20081211cvs.fc21.src 
DEBUG util.py:257:   -- desktop-file-utils-0.22-3.fc21.x86_64
DEBUG util.py:257:   -- gettext-0.19.2-2.fc21.x86_64
DEBUG util.py:257:   -- 6:kdelibs-devel-4.14.0-2.fc21.x86_64
DEBUG util.py:257:  Error: fakesystemd conflicts with systemd
DEBUG util.py:257:   You could try using --skip-broken to work around the 
problem
DEBUG util.py:257:   You could try running: rpm -Va --nofiles --nodigest

I'm getting this on F21 buildroot , this is fixed ? have we a bugzilla report ? 
to follow 

Best regards, 
-- 
Sérgio M. B.

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

File Type-Tiny-1.000003.tar.gz uploaded to lookaside cache by corsepiu

2014-08-31 Thread corsepiu
A file has been added to the lookaside cache for perl-Type-Tiny:

50c6be0df0652e616dafdd3d08a626f3  Type-Tiny-1.03.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

[perl-Type-Tiny] Upstream update.

2014-08-31 Thread corsepiu
commit c536ddb90e166fa5787e8a04a3d0d4ed8f0925ab
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Sun Aug 31 08:24:41 2014 +0200

Upstream update.

 .gitignore  |2 +-
 perl-Type-Tiny.spec |5 -
 sources |2 +-
 3 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 884dff1..673cb02 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/Type-Tiny-1.02.tar.gz
+/Type-Tiny-1.03.tar.gz
diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec
index 483335e..c9d9a53 100644
--- a/perl-Type-Tiny.spec
+++ b/perl-Type-Tiny.spec
@@ -1,5 +1,5 @@
 Name:   perl-Type-Tiny
-Version:1.02
+Version:1.03
 Release:1%{?dist}
 Summary:Tiny, yet Moo(se)-compatible type constraint
 License:GPL+ or Artistic
@@ -101,6 +101,9 @@ make test
 %{_mandir}/man3/Test::TypeTiny.3pm*
 
 %changelog
+* Sun Aug 31 2014 Ralf Corsépius corse...@fedoraproject.org - 1.03-1
+- Upstream update.
+
 * Fri Aug 22 2014 Ralf Corsépius corse...@fedoraproject.org - 1.02-1
 - Upstream update.
 - Update deps.
diff --git a/sources b/sources
index 91c35c6..1038c81 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e4b88fd14e6e4ccd75b82907dcd1b217  Type-Tiny-1.02.tar.gz
+50c6be0df0652e616dafdd3d08a626f3  Type-Tiny-1.03.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

[perl-Type-Tiny/f21] Upstream update.

2014-08-31 Thread corsepiu
Summary of changes:

  c536ddb... Upstream update. (*)

(*) This commit already existed in another branch; no separate mail sent
--
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

File CGI-Emulate-PSGI-0.19.tar.gz uploaded to lookaside cache by eseyman

2014-08-31 Thread Emmanuel Seyman
A file has been added to the lookaside cache for perl-CGI-Emulate-PSGI:

f51a813d7e4ac9816de3b3b195f9014f  CGI-Emulate-PSGI-0.19.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

[perl-CGI-Emulate-PSGI] Update to 0.19

2014-08-31 Thread Emmanuel Seyman
commit 8c78aaa1f86d56bd2f478bda7f94201b212f7398
Author: Emmanuel Seyman emman...@seyman.fr
Date:   Sun Aug 31 10:45:30 2014 +0200

Update to 0.19

 .gitignore |1 +
 perl-CGI-Emulate-PSGI.spec |   12 
 sources|2 +-
 3 files changed, 10 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 8dffe8e..58f4593 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /CGI-Emulate-PSGI-0.18.tar.gz
+/CGI-Emulate-PSGI-0.19.tar.gz
diff --git a/perl-CGI-Emulate-PSGI.spec b/perl-CGI-Emulate-PSGI.spec
index 5f88d2f..e576f93 100644
--- a/perl-CGI-Emulate-PSGI.spec
+++ b/perl-CGI-Emulate-PSGI.spec
@@ -1,9 +1,8 @@
 Name:   perl-CGI-Emulate-PSGI
-Version:0.18
-Release:2%{?dist}
+Version:0.19
+Release:1%{?dist}
 Summary:PSGI adapter for CGI applications
 License:GPL+ or Artistic
-Group:  Development/Libraries
 URL:http://search.cpan.org/dist/CGI-Emulate-PSGI
 Source0:
http://www.cpan.org/authors/id/M/MI/MIYAGAWA/CGI-Emulate-PSGI-%{version}.tar.gz
 BuildArch:  noarch
@@ -23,7 +22,7 @@ Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} 
-V:version`; echo $versi
 
 %description
 This module allows an application designed for the CGI environment to run
-in a PSGI environment, and thus on any of the backends that PSGI supports.
+in a PSGI environment, and thus on any of the back-ends that PSGI supports.
 
 %prep
 %setup -q -n CGI-Emulate-PSGI-%{version}
@@ -45,10 +44,15 @@ make test
 
 %files
 %doc Changes README
+%license LICENSE
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Sun Aug 31 2014 Emmanuel Seyman emman...@seyman.fr - 0.19-1
+- Update to 0.19
+- Remove the Group definition and use %%license
+
 * Thu Aug 28 2014 Jitka Plesnikova jples...@redhat.com - 0.18-2
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index 227c1b2..a3666b4 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-5792fda515245e9b8ac794a26afc14a5  CGI-Emulate-PSGI-0.18.tar.gz
+f51a813d7e4ac9816de3b3b195f9014f  CGI-Emulate-PSGI-0.19.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

File Geo-IP-1.43.tar.gz uploaded to lookaside cache by eseyman

2014-08-31 Thread Emmanuel Seyman
A file has been added to the lookaside cache for perl-Geo-IP:

1a24af3f3b78f7a6c613e06b91593d10  Geo-IP-1.43.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

[perl-Type-Tiny/f20] (2 commits) ...Merge remote-tracking branch 'origin/f21' into f20

2014-08-31 Thread corsepiu
Summary of changes:

  c536ddb... Upstream update. (*)
  2ea2495... Merge remote-tracking branch 'origin/f21' into f20

(*) This commit already existed in another branch; no separate mail sent
--
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

[perl-Type-Tiny/f20: 2/2] Merge remote-tracking branch 'origin/f21' into f20

2014-08-31 Thread corsepiu
commit 2ea249572bf947173f69686239b54dd5b913de5d
Merge: 8f39461 c536ddb
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Sun Aug 31 09:33:42 2014 +0200

Merge remote-tracking branch 'origin/f21' into f20

 .gitignore  |2 +-
 perl-Type-Tiny.spec |5 -
 sources |2 +-
 3 files changed, 6 insertions(+), 3 deletions(-)
---
--
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

[perl-Geo-IP] Update to 1.43

2014-08-31 Thread Emmanuel Seyman
commit 8b91fbd1e4f945c4af00dd87866eb0e1b4e25c22
Author: Emmanuel Seyman emman...@seyman.fr
Date:   Sun Aug 31 10:54:54 2014 +0200

Update to 1.43

 .gitignore   |1 +
 perl-Geo-IP.spec |9 ++---
 sources  |2 +-
 3 files changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index a05d815..8018671 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 Geo-IP-1.38.tar.gz
 /Geo-IP-1.40.tar.gz
 /Geo-IP-1.42.tar.gz
+/Geo-IP-1.43.tar.gz
diff --git a/perl-Geo-IP.spec b/perl-Geo-IP.spec
index 2bb53fe..6b7a394 100644
--- a/perl-Geo-IP.spec
+++ b/perl-Geo-IP.spec
@@ -1,7 +1,7 @@
 Name: perl-Geo-IP
 Summary:  Efficient Perl bindings for the GeoIP location database
-Version:  1.42
-Release:  5%{?dist}
+Version:  1.43
+Release:  1%{?dist}
 URL:  http://search.cpan.org/dist/Geo-IP/
 License:  GPL+ or Artistic
 
@@ -18,7 +18,7 @@ Requires: perl(:MODULE_COMPAT_%(eval `%{__perl} 
-V:version`; echo $ver
 %{?perl_default_filter}
 
 %description
-This package contains Perl bindings for the GeoIP IP/hostname to
+This package contains Perl bindings for the GeoIP IP/host-name to
 country/location/organization database.
 
 This package requires Maxmind's GeoIP libraries but is often faster than other,
@@ -60,6 +60,9 @@ make test
 
 
 %changelog
+* Sun Aug 31 2014 Emmanuel Seyman emman...@seyman.fr - 1.43-1
+- Update to 1.43
+
 * Wed Aug 27 2014 Jitka Plesnikova jples...@redhat.com - 1.42-5
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index 2525237..9d3bb7a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6516415a1aa6b5fd5d3444ef418c52f5  Geo-IP-1.42.tar.gz
+1a24af3f3b78f7a6c613e06b91593d10  Geo-IP-1.43.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

File Net-IDN-Encode-2.201.tar.gz uploaded to lookaside cache by eseyman

2014-08-31 Thread Emmanuel Seyman
A file has been added to the lookaside cache for perl-Net-IDN-Encode:

6094a33bfd0f53fac8f3265ecc3b13b2  Net-IDN-Encode-2.201.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

[perl-Net-IDN-Encode] Update to 2.201

2014-08-31 Thread Emmanuel Seyman
commit 88d858612be1d803d82e3b894499f4ae19cc386d
Author: Emmanuel Seyman emman...@seyman.fr
Date:   Sun Aug 31 10:59:14 2014 +0200

Update to 2.201

 .gitignore   |1 +
 perl-Net-IDN-Encode.spec |7 +--
 sources  |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index ab38b33..98f5e2a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /Net-IDN-Encode-2.003.tar.gz
+/Net-IDN-Encode-2.201.tar.gz
diff --git a/perl-Net-IDN-Encode.spec b/perl-Net-IDN-Encode.spec
index 7a964b1..3d466ae 100644
--- a/perl-Net-IDN-Encode.spec
+++ b/perl-Net-IDN-Encode.spec
@@ -1,7 +1,7 @@
 Name:   perl-Net-IDN-Encode
 Summary:Internationalizing Domain Names in Applications (IDNA)
-Version:2.003
-Release:8%{?dist}
+Version:2.201
+Release:1%{?dist}
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/Net-IDN-Encode/
 Source0:
http://www.cpan.org/authors/id/C/CF/CFAERBER/Net-IDN-Encode-%{version}.tar.gz
@@ -66,6 +66,9 @@ find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} 
\;
 
 
 %changelog
+* Sun Aug 31 2014 Emmanuel Seyman emman...@seyman.fr - 2.201-1
+- Update to 2.201
+
 * Wed Aug 27 2014 Jitka Plesnikova jples...@redhat.com - 2.003-8
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index 1c3c823..6991717 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0e5832ea0d3f5e4997e0361a1951f569  Net-IDN-Encode-2.003.tar.gz
+6094a33bfd0f53fac8f3265ecc3b13b2  Net-IDN-Encode-2.201.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

File Net-Server-Coro-1.3.tar.gz uploaded to lookaside cache by eseyman

2014-08-31 Thread Emmanuel Seyman
A file has been added to the lookaside cache for perl-Net-Server-Coro:

797e8cf4e813712279e89697e55e53f6  Net-Server-Coro-1.3.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

[perl-Net-Server-Coro] Update to 1.3

2014-08-31 Thread Emmanuel Seyman
commit 6b3cbf80a05bcc5804a25e10b8c530a8c6786a68
Author: Emmanuel Seyman emman...@seyman.fr
Date:   Sun Aug 31 11:02:32 2014 +0200

Update to 1.3

 .gitignore|1 +
 perl-Net-Server-Coro.spec |7 +--
 sources   |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c8e7ddd..6c39824 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /Net-Server-Coro-1.2.tar.gz
+/Net-Server-Coro-1.3.tar.gz
diff --git a/perl-Net-Server-Coro.spec b/perl-Net-Server-Coro.spec
index 2397c28..c20aced 100644
--- a/perl-Net-Server-Coro.spec
+++ b/perl-Net-Server-Coro.spec
@@ -1,6 +1,6 @@
 Name:   perl-Net-Server-Coro
-Version:1.2
-Release:9%{?dist}
+Version:1.3
+Release:1%{?dist}
 
 Summary:Co-operative multithreaded server using Coro
 License:MIT
@@ -56,6 +56,9 @@ make test
 
 
 %changelog
+* Sun Aug 31 2014 Emmanuel Seyman emman...@seyman.fr - 1.3-1
+- Update to 1.3
+
 * Thu Aug 28 2014 Jitka Plesnikova jples...@redhat.com - 1.2-9
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index 5fd6ef4..403f106 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a2d40f64b7bfdb4f29fafb690412d49b  Net-Server-Coro-1.2.tar.gz
+797e8cf4e813712279e89697e55e53f6  Net-Server-Coro-1.3.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

File ParseUtil-Domain-2.36.tar.gz uploaded to lookaside cache by eseyman

2014-08-31 Thread Emmanuel Seyman
A file has been added to the lookaside cache for perl-ParseUtil-Domain:

0170dd2a7751d4c15d8e498b48b0793f  ParseUtil-Domain-2.36.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

[perl-ParseUtil-Domain] Update to 2.36

2014-08-31 Thread Emmanuel Seyman
commit b7c3a5bf33cd978da435278a0b7dc0096b6f85af
Author: Emmanuel Seyman emman...@seyman.fr
Date:   Sun Aug 31 11:09:33 2014 +0200

Update to 2.36

 .gitignore |1 +
 perl-ParseUtil-Domain.spec |7 +--
 sources|2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 911eb21..b8151f0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /ParseUtil-Domain-2.22.tar.gz
 /ParseUtil-Domain-2.30.tar.gz
+/ParseUtil-Domain-2.36.tar.gz
diff --git a/perl-ParseUtil-Domain.spec b/perl-ParseUtil-Domain.spec
index f7aeac3..9be08c5 100644
--- a/perl-ParseUtil-Domain.spec
+++ b/perl-ParseUtil-Domain.spec
@@ -1,7 +1,7 @@
 Name:   perl-ParseUtil-Domain
 Summary:Utility for parsing a domain name into its components
-Version:2.30
-Release:2%{?dist}
+Version:2.36
+Release:1%{?dist}
 
 # - ParseUtil::Domain is GPL+ or Artistic (the Perl license)
 # - data/effective_tld_names.txt is MPLv2.0
@@ -77,6 +77,9 @@ perl Build.PL installdirs=vendor
 
 
 %changelog
+* Sun Aug 31 2014 Emmanuel Seyman emman...@seyman.fr - 2.36-1
+- Update to 2.36
+
 * Sat Jun 07 2014 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.30-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
diff --git a/sources b/sources
index f55dcfa..da89d31 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d998aacd52ed1490d24cc1b04206b234  ParseUtil-Domain-2.30.tar.gz
+0170dd2a7751d4c15d8e498b48b0793f  ParseUtil-Domain-2.36.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

File Test-Name-FromLine-0.13.tar.gz uploaded to lookaside cache by eseyman

2014-08-31 Thread Emmanuel Seyman
A file has been added to the lookaside cache for perl-Test-Name-FromLine:

894c0996197b96a902036d2074194dd1  Test-Name-FromLine-0.13.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

[perl-Test-Name-FromLine] Update to 0.13

2014-08-31 Thread Emmanuel Seyman
commit 35aa65f0ff7e038c94927b82db298e38f32bd7e9
Author: Emmanuel Seyman emman...@seyman.fr
Date:   Sun Aug 31 11:14:09 2014 +0200

Update to 0.13

 .gitignore   |1 +
 perl-Test-Name-FromLine.spec |   11 ---
 sources  |2 +-
 3 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 4a8306a..10d50e0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /Test-Name-FromLine-0.11.tar.gz
+/Test-Name-FromLine-0.13.tar.gz
diff --git a/perl-Test-Name-FromLine.spec b/perl-Test-Name-FromLine.spec
index da71ffb..653393b 100644
--- a/perl-Test-Name-FromLine.spec
+++ b/perl-Test-Name-FromLine.spec
@@ -1,7 +1,7 @@
 Name:   perl-Test-Name-FromLine
 Summary:Automatically name tests from their source code
-Version:0.11
-Release:4%{?dist}
+Version:0.13
+Release:1%{?dist}
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/Test-Name-FromLine/
 
@@ -59,12 +59,17 @@ sed -i '/^inc\//d' MANIFEST
 
 
 %files
-%doc Changes LICENSE README.md
+%doc Changes README.md
+%license LICENSE
 %{perl_vendorlib}/Test
 %{_mandir}/man3/Test::Name::FromLine*
 
 
 %changelog
+* Sun Aug 31 2014 Emmanuel Seyman emman...@seyman.fr - 0.13-1
+- Update to 0.13
+- Use %%license
+
 * Fri Aug 29 2014 Jitka Plesnikova jples...@redhat.com - 0.11-4
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index 2e9f9ff..5d140fe 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e7e7637079d127b411738aeff5612502  Test-Name-FromLine-0.11.tar.gz
+894c0996197b96a902036d2074194dd1  Test-Name-FromLine-0.13.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

File Test-Routine-0.019.tar.gz uploaded to lookaside cache by eseyman

2014-08-31 Thread Emmanuel Seyman
A file has been added to the lookaside cache for perl-Test-Routine:

3110657c07f2ac68646aa6e614fa284d  Test-Routine-0.019.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

File Test-WWW-Mechanize-Catalyst-0.59.tar.gz uploaded to lookaside cache by eseyman

2014-08-31 Thread Emmanuel Seyman
A file has been added to the lookaside cache for 
perl-Test-WWW-Mechanize-Catalyst:

3e610ef813c04d418ba42a1189e17e6e  Test-WWW-Mechanize-Catalyst-0.59.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

File Text-Ngram-0.15.tar.gz uploaded to lookaside cache by eseyman

2014-08-31 Thread Emmanuel Seyman
A file has been added to the lookaside cache for perl-Text-Ngram:

801395217f3986af9d8f07ce5a7be41a  Text-Ngram-0.15.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

[perl-Type-Tiny/f19] (2 commits) ...Merge remote-tracking branch 'origin/f21' into f20

2014-08-31 Thread corsepiu
Summary of changes:

  c536ddb... Upstream update. (*)
  2ea2495... Merge remote-tracking branch 'origin/f21' into f20 (*)

(*) This commit already existed in another branch; no separate mail sent
--
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

[perl-Time-modules/el5] perl-Time-modules has been replaced by perl-Time-ParseDate (bug #1067003)

2014-08-31 Thread Till Maas
commit 5be8b4eb486df84cc37f6c403f9984482ec5ebc3
Author: Till Maas opensou...@till.name
Date:   Sun Aug 31 21:41:26 2014 +0200

perl-Time-modules has been replaced by perl-Time-ParseDate (bug #1067003)

https://fedorahosted.org/rel-eng/ticket/5946

 .gitignore |1 -
 dead.package   |3 ++
 perl-Time-modules.spec |   72 
 sources|1 -
 4 files changed, 3 insertions(+), 74 deletions(-)
---
diff --git a/dead.package b/dead.package
new file mode 100644
index 000..28d3268
--- /dev/null
+++ b/dead.package
@@ -0,0 +1,3 @@
+perl-Time-modules has been replaced by perl-Time-ParseDate (bug #1067003)
+
+https://fedorahosted.org/rel-eng/ticket/5946
--
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

[PkgDB] till updated package: perl-Time-modules status to Retired [el5]

2014-08-31 Thread pkgdb
user: till updated package: perl-Time-modules status from: Approved to Retired 
on branch: el5

To make changes to this package see:
https://admin.fedoraproject.org/pkgdb/package/perl-Time-modules
--
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 1135624] perl-Clipboard: insecure temporary file usage

2014-08-31 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1135624



--- Comment #2 from Murray McAllister mmcal...@redhat.com ---
MITRE assigned CVE-2014-5509 to this issue:

http://seclists.org/oss-sec/2014/q3/470

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=cVNSdpHmzja=cc_unsubscribe
--
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 1135624] perl-Clipboard: insecure temporary file usage

2014-08-31 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1135624

Murray McAllister mmcal...@redhat.com changed:

   What|Removed |Added

  Alias||CVE-2014-5509



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=px4gOcc17Wa=cc_unsubscribe
--
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 1135624] CVE-2014-5509 perl-Clipboard: insecure temporary file usage

2014-08-31 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1135624

Murray McAllister mmcal...@redhat.com changed:

   What|Removed |Added

Summary|perl-Clipboard: insecure|CVE-2014-5509
   |temporary file usage|perl-Clipboard: insecure
   ||temporary file usage



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=N4BVfRyZFVa=cc_unsubscribe
--
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