EPEL Fedora 6 updates-testing report

2013-09-19 Thread updates
The following Fedora EPEL 6 Security updates need testing:
 Age  URL
 515  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2012-5620/bugzilla-3.4.14-2.el6
  34  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11198/filezilla-3.7.3-1.el6
  30  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11274/ssmtp-2.61-21.el6
  14  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11453/python-pyrad-2.0-3.el6
  10  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11499/roundcubemail-0.9.4-1.el6
   9  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11507/tinyproxy-1.8.3-1.el6
   8  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11525/moodle-2.4.6-1.el6
   7  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11556/openstack-swift-1.7.4-3.el6
   7  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11552/glpi-0.83.9.1-4.el6
   4  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11579/proftpd-1.3.3g-3.el6
   3  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11585/Django14-1.4.8-1.el6
   3  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11598/wordpress-3.6.1-1.el6
   0  
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-11626/seamonkey-2.21-1.el6


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

abi-compliance-checker-1.99.8.3-1.el6
ansible-1.3.2-1.el6
arprec-2.2.16-4.el6
arprec-2.2.16-5.el6
datagrepper-0.2.0-1.el6
hardening-check-2.4-1.el6
minimodem-0.18-1.el6
python-ase-3.7.1.3184-6.el6
python-backports-lzma-0.0.2-5.el6
python-datanommer-consumer-0.6.0-1.el6
python-datanommer-models-0.6.0-2.el6
rear-1.15-1.el6
seamonkey-2.21-1.el6
trac-condfieldsgenshi-plugin-0.2-1.svn13364.el6
unbound-1.4.21-1.el6

Details about builds:



 abi-compliance-checker-1.99.8.3-1.el6 (FEDORA-EPEL-2013-11621)
 An ABI Compliance Checker

Update Information:

Faster on large input libraries

ChangeLog:

* Wed Sep 18 2013 Richard Shaw hobbes1...@gmail.com - 1.99.8.3-1
- Update to latest bugfix release.




 ansible-1.3.2-1.el6 (FEDORA-EPEL-2013-11628)
 SSH-based configuration management, deployment, and task execution system

Update Information:

More minor upstream fixes.

Minor update that fixes a bug with gather facts and accelerate mode and a few 
other minor issues. 

Lots of bugfixes, over 20 new modules, new accelerated mode to replace 
fireball, 
role dependencies and defaults and local facts. See: 
http://blog.ansibleworks.com/2013/09/13/ansible-1-3-and-awx-1-3-hit-the-streets/
for more information. 
NOTE: You will want to remove the ansible-node-fireball package if you have it 
installed. 
It should not cause any problems, but it's no longer needed. 


ChangeLog:

* Thu Sep 19 2013 Kevin Fenzi ke...@scrye.com 1.3.2-1
- Update to 1.3.2 with minor upstream fixes
* Mon Sep 16 2013 Kevin Fenzi ke...@scrye.com 1.3.1-1
- Update to 1.3.1
* Sat Sep 14 2013 Kevin Fenzi ke...@scrye.com 1.3.0-2
- Merge upstream spec changes to support EPEL5
- (Still needs python26-keyczar and deps added to EPEL)
* Thu Sep 12 2013 Kevin Fenzi ke...@scrye.com 1.3.0-1
- Update to 1.3.0
- Drop node-fireball subpackage entirely.
- Obsolete/provide fireball subpackage. 
- Add Requires python-keyczar on main package for accelerated mode.




 arprec-2.2.16-4.el6 (FEDORA-EPEL-2013-11632)
 Software package for performing arbitrary precision arithmetic

Update Information:

fix Variable 'datarootdir' not defined in '%{_libdir}/pkgconfig/arprec.pc'
ARPREC is a software package for performing arbitrary precision arithmetic. It 
consists of a revision and extension of Bailey's earlier MPFUN package, 
enhanced with special IEEE numerical techniques. Features include: * Written in 
C++ for broad portability and fast execution. * Includes C++ and Fortran 90/95 
interfaces based on custom data-types and operator/function overloading, which 
permit the library to be used with only minor modifications for many 
conventional C++ and Fortran-90 programs. * Includes all of the usual 
arithmetic operations, as well as many transcendental functions, including cos, 
sin, tan, arccos, arcsin, arctan, exp, 

Re: rubygem-passenger - FTBFS on f20 - need help

2013-09-19 Thread Troy Dawson

On 09/18/2013 06:45 PM, Lars Seipel wrote:

On Wed, Sep 18, 2013 at 03:29:19PM -0500, Troy Dawson wrote:

What is a good way to track down a solution to error: reference to
'uint32_t' is ambiguous?


Sorry for the multiple mails but after looking at the source I think I
see the actual problem. So in e.g. ext/common/Utils/MessageIO.h we have:

#include boost/cstdint.hpp
...
using namespace std;
using namespace boost;
...
use uint32_t - error: reference to 'uint32_t' is ambiguous

The bundled boost cstdint header is including stdint.h on systems that
have it.  So ::uint32_t is provided by that. Additionally it emits
typedefs for the stdint types in the boost namespace with a declaration
conflicting with glibc's. As the passenger code is importing the boost
namespace 'uint32_t' could refer to ::uint32_t (from stdint.h included
through boost) or boost::uint32_t. That's what leads to the error.

Looking at our system boost cstdint.hpp it is doing something smarter.
Instead of coming up with its own uint32_t it's just referring to the
one from stdint.h (by means of a using ::uint32_t; declaration), so it
can't ever conflict.

After looking at the passenger-bundled boost header (instead of only
cpp's output) its intention seems to be the same but it's broken. Our
boost RPM carries a patch that fixes it. Ah, the joys of bundled
libraries.  ;-)

http://pkgs.fedoraproject.org/cgit/boost.git/tree/boost-1.54.0-__GLIBC_HAVE_LONG_LONG.patch

You could apply that patch to the bundled boost copy to fix the issue.
Another way would be to just delete the bundled ext/boost/cstdint.hpp
file in %prep and let it pick up the system cstdint.hpp. You'd obviously
have to buildrequire: boost-devel for that.

Hope that helps,
Lars



Thank you thank you thank you
Yes, that did the trick.  I recognized that patch because I had looked 
at the changes in boost between f19 and f20, but it had never crossed my 
mind to put that change in the passenger boost.

Thank you again
Troy Dawson

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

Review swaps: perl-Parse-DebControl, devscripts, debian-keyring, ubuntu-keyring, jetring + question: where to install keyrings?

2013-09-19 Thread Sandro Mani

Hi,

In the hope to continue the effort of getting pbuilder (and hence an 
easy way to build deb packages from fedora) into the repos (review here: 
[1]), I've packaged devscripts, debian-keyring, ubuntu-keyring and 
jetring. Reviews are here:


- jetring: https://bugzilla.redhat.com/show_bug.cgi?id=1009996
- debian-keyring: https://bugzilla.redhat.com/show_bug.cgi?id=1009997
- ubuntu-keyring: https://bugzilla.redhat.com/show_bug.cgi?id=1009998
- perl-Parse-DebControl: https://bugzilla.redhat.com/show_bug.cgi?id=100
- devscripts: https://bugzilla.redhat.com/show_bug.cgi?id=101

A question concerning the keyrings: currently, the only other package 
(afaics) containing distro keyrings is archlinux-keyring. That package 
installs the keyrings in /usr/share/pacman/keyrings. The debian-keyring 
and ubuntu-keyring packages I've posted for review install the keyrings 
in /usr/share/keyrings. This directory is however unowned. I see two 
options:
- install {debian,ubuntu} keyrings in 
/usr/share/{ubuntu,debian}/keyrings, and have them own the directories
- have gnupg own the directory /usr/share/keyrings (and possibly have 
archlinux-keyring also install the keyrings there)

Suggestions?

Thanks,
Sandro

[1] https://bugzilla.redhat.com/show_bug.cgi?id=969718
--
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: OCaml 4.01.0 coming to Fedora Rawhide this weekend

2013-09-19 Thread Richard W.M. Jones
On Fri, Sep 13, 2013 at 10:30:44AM +0100, Richard W.M. Jones wrote:
 OCaml 4.01.0 is a new major release of the language.
 
 I'm not expecting any incompatibilities, but it will require a mass
 rebuild of the 100 or so Fedora OCaml packages in Rawhide, which I
 will do this weekend.

The packaging changes and rebuilds are all now complete.

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming blog: http://rwmj.wordpress.com
Fedora now supports 80 OCaml packages (the OPEN alternative to F#)
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[Test-Announce] Fedora 20 Alpha status is Go, release on September 24, 2013

2013-09-19 Thread Jaroslav Reznik
At the Fedora 20 Alpha Go/No-Go Meeting #2 that just occurred, it was
agreed to Go with the Fedora 20 Alpha by Fedora QA, Release Engineering
and Development.

Fedora 20 Alpha will be publicly available on Tuesday, September 24, 2013.

Meeting details can be seen here:
Minutes: http://bit.ly/16chiAC
Log: http://bit.ly/16iEjuO

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

Need some help writing gitlab and gitlab-shell specs

2013-09-19 Thread Axilleas Pipinellis
Cross posting this in ruby-sig since this concerns ruby packaging and in 
devel since I have some more generic questions. Excuse me if I created 
unecessary noise. For those not familiar with the project, you'll find 
some info here [http://axilleas.me/tag/gsoc.html].


Let me start with the directory structure of these packages.
We have two locations:
1) where the main gitlab and gtlab-shell rails apps reside,
2) where git repositories and their satellites[0] are.

I have asked in #fedora-infra what FHS they use with the git repos in 
fedorahosted and we concluded that the rails apps would go to 
/usr/share/ and git repos and satellites to /usr/lib/. Now, when 
specifing %{_libdir} in a spec, it gets /usr/lib64/ on a x86_64 machine. 
I wouldn't want to install gitlab in different dirs when different 
arches, so for now I used /var/lib/ for that purpose. I guess I could 
excplicitly say /usr/lib/gitlab/ but anyway.


So the current structure is:

|-- /usr/share/gitlab/
| |-- gitlab/
| |-- gitlab-shell/
|
|-- /var/lib/gitlab/
| |-- satellites/
| |-- repositories/
| |-- .ssh/authorized_keys
|
|-- /etc/gitlab/
|   |-- gitlab.yml
|   |-- shell.yml
|   |-- database.yml
|   |-- unicorn.rb

In /etc there will be configuration files with symlinks in the rails app 
dirs. What are your thoughts on the directory locations? Do you agree?



And now my questions about the specs.
FYI I have seen the katello.spec and took some info from there[1].

gitlab-shell.spec
-

This is kinda finished.

SPEC: 
https://github.com/axilleas/fedora/blob/master/packages/gitlab-shell/gitlab-shell.spec



I tested the package and the appropriate user and group are created when 
install/upgrade but when uninstalling, the homedir doesn't get removed. 
I suspect this has something to do with useradd and protecting the 
homedir of the user?



gitlab.spec
---

This is a draft, I didn't test to install yet.

SPEC: 
https://github.com/axilleas/fedora/blob/master/packages/gitlab/gitlab.spec


## Ruby specific

- rake tasks

Many jobs, like the backup, initial database seed, etc. are done with 
rake tasks. How do we invoke them without getting in the app root dir 
every time? Is there some sort of mechanism for that?


- Are Gemfile and Gemfile.lock really needed for the app to work? If yes 
how can we avoid this? Using bundler_ext? If yes, how?


This is an interesting question as katello uses bundler_ext but I 
haven't yet understood how that works. Any tip would be appreciated. For 
now, in the test instance I set up, unicorn checks the Gemfile and if 
not found it doesn't spawn. Here is an entry in its log when I removed 
the Gemfile:


  I, [2013-09-19T21:00:13.056391 #18224]  INFO -- : Refreshing Gem list

and then an error occured.

## Generic

- symlink logs to /var/log/gitlab/

Not all logs' directory is configurable. GitLab uses the logs found in 
app_dir/log/ and displays them via its ui to the admin users. Should I 
symlink these logs to /var/log/ for ease of access?


- pids: move to /var/run/gitlab/ (?)

GitLab is practically running using unicorn and sidekiq. These two 
create each its own pid file in app_dir/tmp/pids/ by default. Luckily 
this is configurable via their configs or systemd services. Also unicorn 
creates a gitlab.socket which uses to speak with the app. If we use 
apache this isn't needed, but with nginx we can use it. I was thinking 
it could go under /var/run/gitlab/ too.


- how to support both databases. Is it feasible?

GitLab supports mysql(mariadb for us) and postgres. How do we deal with 
these cases inside a spec file? For now, I have added a comment about 
the postgres config and made mariadb the default one.


- ownership of directories

In upstream installation guide, gitlab and gitlab-shell reside in the 
same location that's why I decided to have them both under 
/usr/share/gitlab/. And my question is, which package owns 
/usr/share/gitlab/? Both?


Thanks for reading, it took me quite a few hours to compose :)

[0] satellites is a directory where it is stored information about the 
merge requests, forks, etc of each git repository.
[1] 
https://github.com/axilleas/fedora/blob/master/packages/SPECS/katello.spec


--
FAS : axilleas
GPG : 0xABF99BE5
Blog: http://axilleas.me
--
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: Package name conflict with retired package

2013-09-19 Thread Toshio Kuratomi
On Sep 19, 2013 12:53 PM, Michael Schwendt mschwe...@gmail.com wrote:

 On Fri, 13 Sep 2013 13:51:28 +0200, Sandro Mani wrote:

 
  On 13.09.2013 11:48, Michael Schwendt wrote:
   On Fri, 13 Sep 2013 09:54:49 +0200, Florian Weimer wrote:
  
   On 09/12/2013 10:40 PM, Sandro Mani wrote:
  
   I just posted a review for avl (the Aerodynamic and flight-dynamic
   analysis of rigid aircrafts package) [1], and the reviewer noticed
that
   it conflicts with the retired avl package (the AVL tree manipulation
   library). How should one proceed in such situations? Does the old
   repository needs to be deleted before the new one is created?
   Please do not reuse package names for unrelated software.  It is
quite
   confusing and can interfere with all kinds of tracking/package
mapping
   efforts.
   That could be documented.
  
   It would be wrong for an old retired (!) avl to block that component
   name forever. What if that project has been abandoned or renamed?
  
   I can't reach the old  git.fruit.je/avl  currently, but the README in
the
   old F14 package calls it AVLTREE, AVLTree and AVL-Tree library,
   and the Fedora src.rpm uses the libavl source tarball from Debian.
  
 = It could (should?) have been named libavl or avltree.
  I would definitely prefer this option. Should I file a rel-eng ticket or
  what would the procedure be?

 A few years ago, there would have been a helpful answer from the admins
 who would/wouldn't process such requests. I don't know whether it's
possible
 to not only rename a git repo but also the stuff within pkgdb and koji.

Cc'd Dennis to see if this can happen in koji.  If it can't I would not be
opposed to the new package unretiring the name and having the pkgdb entry
updated to the new package.  The git history would have both the old
package's commits and the new one's.

-Toshio
-- 
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: Package name conflict with retired package

2013-09-19 Thread Till Maas
On Thu, Sep 19, 2013 at 01:00:43PM -0700, Toshio Kuratomi wrote:

 Cc'd Dennis to see if this can happen in koji.  If it can't I would not be
 opposed to the new package unretiring the name and having the pkgdb entry
 updated to the new package.  The git history would have both the old
 package's commits and the new one's.

This did already happen, but there is no idea what to do with the EPEL
branches. The old package does have some, where the package is orphaned,
but the new package maintainer does not intend to maintain the new
package in EPEL.

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

Re: Package name conflict with retired package

2013-09-19 Thread Sandro Mani



 A few years ago, there would have been a helpful answer from the admins
 who would/wouldn't process such requests. I don't know whether it's 
possible

 to not only rename a git repo but also the stuff within pkgdb and koji.

Cc'd Dennis to see if this can happen in koji.  If it can't I would 
not be opposed to the new package unretiring the name and having the 
pkgdb entry updated to the new package.  The git history would have 
both the old package's commits and the new one's.


-Toshio


I hope I did not move to fast, but after discussing on irc with rdieter, 
I went forward and took over the repo of the retired package, updating 
the description. See [1] for the irc conversation.


[1] https://bugzilla.redhat.com/show_bug.cgi?id=1007541#c4
--
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: Package name conflict with retired package

2013-09-19 Thread Michael Schwendt
On Fri, 13 Sep 2013 13:51:28 +0200, Sandro Mani wrote:

 
 On 13.09.2013 11:48, Michael Schwendt wrote:
  On Fri, 13 Sep 2013 09:54:49 +0200, Florian Weimer wrote:
 
  On 09/12/2013 10:40 PM, Sandro Mani wrote:
 
  I just posted a review for avl (the Aerodynamic and flight-dynamic
  analysis of rigid aircrafts package) [1], and the reviewer noticed that
  it conflicts with the retired avl package (the AVL tree manipulation
  library). How should one proceed in such situations? Does the old
  repository needs to be deleted before the new one is created?
  Please do not reuse package names for unrelated software.  It is quite
  confusing and can interfere with all kinds of tracking/package mapping
  efforts.
  That could be documented.
 
  It would be wrong for an old retired (!) avl to block that component
  name forever. What if that project has been abandoned or renamed?
 
  I can't reach the old  git.fruit.je/avl  currently, but the README in the
  old F14 package calls it AVLTREE, AVLTree and AVL-Tree library,
  and the Fedora src.rpm uses the libavl source tarball from Debian.
 
= It could (should?) have been named libavl or avltree.
 I would definitely prefer this option. Should I file a rel-eng ticket or 
 what would the procedure be?

A few years ago, there would have been a helpful answer from the admins
who would/wouldn't process such requests. I don't know whether it's possible
to not only rename a git repo but also the stuff within pkgdb and koji.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Intent to retire: wimax, wimax-tools

2013-09-19 Thread Bill Nottingham
Because it's pretty much dead upstream, getting towards dead in real-world
deployments, and never really worked well anyway in Linux.

Orphaned in F20, rawhide. If no one wants to grab it, will retire in
a week or two.

Bill
-- 
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: Package name conflict with retired package

2013-09-19 Thread Dennis Gilmore
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

- -BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

El Thu, 19 Sep 2013 13:00:43 -0700
Toshio Kuratomi a.bad...@gmail.com escribió:
 On Sep 19, 2013 12:53 PM, Michael Schwendt mschwe...@gmail.com
 wrote:
 
  On Fri, 13 Sep 2013 13:51:28 +0200, Sandro Mani wrote:
 
  
   On 13.09.2013 11:48, Michael Schwendt wrote:
On Fri, 13 Sep 2013 09:54:49 +0200, Florian Weimer wrote:
   
On 09/12/2013 10:40 PM, Sandro Mani wrote:
   
I just posted a review for avl (the Aerodynamic and
flight-dynamic analysis of rigid aircrafts package) [1], and
the reviewer noticed
 that
it conflicts with the retired avl package (the AVL tree
manipulation library). How should one proceed in such
situations? Does the old repository needs to be deleted
before the new one is created?
Please do not reuse package names for unrelated software.  It
is
 quite
confusing and can interfere with all kinds of tracking/package
 mapping
efforts.
That could be documented.
   
It would be wrong for an old retired (!) avl to block that
component name forever. What if that project has been abandoned
or renamed?
   
I can't reach the old  git.fruit.je/avl  currently, but the
README in
 the
old F14 package calls it AVLTREE, AVLTree and AVL-Tree
library, and the Fedora src.rpm uses the libavl source tarball
from Debian.
   
  = It could (should?) have been named libavl or avltree.
   I would definitely prefer this option. Should I file a rel-eng
   ticket or what would the procedure be?
 
  A few years ago, there would have been a helpful answer from the
  admins who would/wouldn't process such requests. I don't know
  whether it's
 possible
  to not only rename a git repo but also the stuff within pkgdb and
  koji.
 
 Cc'd Dennis to see if this can happen in koji.  If it can't I would
 not be opposed to the new package unretiring the name and having the
 pkgdb entry updated to the new package.  The git history would have
 both the old package's commits and the new one's.
 
 -Toshio

We have no ability to rename a package in koji. im not opposed to
reusing the name. Just need some way to ensure its very clear the old
and new are different. Likely need to add a conflicts with the old one.
hopefully versions allow for upgrade okay, if not an epoch will need to
be added.

Dennis
- -BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.21 (GNU/Linux)

iEYEARECAAYFAlI7eKoACgkQkSxm47BaWffdbgCcCzGPA2cUeZjlFMZWguJzICG5
FxYAnRHWbPFzMgK52Ggee7sSGHmGnCJk
=fkEd
- -END PGP SIGNATURE-
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.21 (GNU/Linux)

iEYEARECAAYFAlI7edMACgkQkSxm47BaWfeCRwCbB34BhlPiGXhtj03JB1Uhyvtj
PxkAoIDDs+sDZfSgpT5cVSjiEXkTEkIj
=rLFW
-END PGP SIGNATURE-
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Package name conflict with retired package

2013-09-19 Thread Sandro Mani

We have no ability to rename a package in koji. im not opposed to
reusing the name. Just need some way to ensure its very clear the old
and new are different. Likely need to add a conflicts with the old one.
hopefully versions allow for upgrade okay, if not an epoch will need to
be added.

Dennis

The last build of the old was for f17. The new avl is only available 
for f19 and newer. Should I add a

Conflicts: avl  3.32-1
regardless? The version numbers allow for upgrades (i.e. old avl stopped 
at 0.3.5, new avl starts at 3.32).


One question which remains though is what to do with the EPEL branhces. 
Just keep them retired?


Thanks,
Sandro

--
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: Package name conflict with retired package

2013-09-19 Thread Toshio Kuratomi
On Thu, Sep 19, 2013 at 3:35 PM, Sandro Mani manisan...@gmail.com wrote:
 We have no ability to rename a package in koji. im not opposed to
 reusing the name. Just need some way to ensure its very clear the old
 and new are different. Likely need to add a conflicts with the old one.
 hopefully versions allow for upgrade okay, if not an epoch will need to
 be added.

 Dennis

 The last build of the old was for f17. The new avl is only available for
 f19 and newer. Should I add a
 Conflicts: avl  3.32-1
 regardless? The version numbers allow for upgrades (i.e. old avl stopped at
 0.3.5, new avl starts at 3.32).

I think so and a comment in the spec file about why it's there.

 One question which remains though is what to do with the EPEL branhces. Just
 keep them retired?

yeah, I'd leave them orphaned/retired in EPEL if there's no intention
to maintain the new package there at the moment.  It would be nice to
let people know that the old EPEL packages are unmaintained and that
the bugzilla/pkgdb description/etc are no longer for that package but
I can't figure out a way to do that other than sending a message to
the epel mailing list and hope anyone who cares reads that.

-Toshio
-- 
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: Intent to retire: wimax, wimax-tools

2013-09-19 Thread Dave Jones
On Thu, Sep 19, 2013 at 04:26:08PM -0500, Bill Nottingham wrote:
  Because it's pretty much dead upstream, getting towards dead in real-world
  deployments, and never really worked well anyway in Linux.
  
  Orphaned in F20, rawhide. If no one wants to grab it, will retire in
  a week or two.

Kill it. We already disabled the kernel drivers in f20, because they're
broken and unmaintained.

Dave

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

Re: Review swaps: perl-Parse-DebControl, devscripts, debian-keyring, ubuntu-keyring, jetring + question: where to install keyrings?

2013-09-19 Thread Zbigniew Jędrzejewski-Szmek
On Thu, Sep 19, 2013 at 06:41:03PM +0200, Sandro Mani wrote:
 Hi,
 
 In the hope to continue the effort of getting pbuilder (and hence an
 easy way to build deb packages from fedora) into the repos (review
 here: [1]), I've packaged devscripts, debian-keyring, ubuntu-keyring
 and jetring. Reviews are here:
 
 - jetring: https://bugzilla.redhat.com/show_bug.cgi?id=1009996
 - debian-keyring: https://bugzilla.redhat.com/show_bug.cgi?id=1009997
 - ubuntu-keyring: https://bugzilla.redhat.com/show_bug.cgi?id=1009998
 - perl-Parse-DebControl: https://bugzilla.redhat.com/show_bug.cgi?id=100
 - devscripts: https://bugzilla.redhat.com/show_bug.cgi?id=101
 
 A question concerning the keyrings: currently, the only other
 package (afaics) containing distro keyrings is archlinux-keyring.
 That package installs the keyrings in /usr/share/pacman/keyrings.
Pacman installs the keyrings into /usr/share/pacman/keyrings
because that's what Arch does. I guess that archlinux.gpg may
move to /usr/share/keyrings, but there are other files (lists
of trusted and revoked keys), which are specific to pacman's libalpm,
so I think they deserve a directory on it's own. If archlinux.gpg
moves, it can be symlinked into /usr/share/pacman/keyrings.

 The debian-keyring and ubuntu-keyring packages I've posted for
 review install the keyrings in /usr/share/keyrings. This directory
 is however unowned. I see two options:
 - install {debian,ubuntu} keyrings in
 /usr/share/{ubuntu,debian}/keyrings, and have them own the
 directories
 - have gnupg own the directory /usr/share/keyrings (and possibly
 have archlinux-keyring also install the keyrings there)
This has the downside that it'll add the dependency on gnupg,
which is not great. Maybe simply create a keyrings-filesystem
package with this directory and have whoever installs keyrings
depend on it.

Zbyszek

 [1] https://bugzilla.redhat.com/show_bug.cgi?id=969718
-- 
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 XML-LibXML-2.0106.tar.gz uploaded to lookaside cache by jplesnik

2013-09-19 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-XML-LibXML:

5da8ecfdedccca81fe0821e9935fe11c  XML-LibXML-2.0106.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-XML-LibXML] 2.0106 bump

2013-09-19 Thread Jitka Plesnikova
commit e21a43c52ecc1641821fbfa7cd732e20fb22dec9
Author: Jitka Plesnikova jples...@redhat.com
Date:   Thu Sep 19 10:14:00 2013 +0200

2.0106 bump

 .gitignore   |1 +
 perl-XML-LibXML.spec |5 -
 sources  |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 017d089..19671df 100644
--- a/.gitignore
+++ b/.gitignore
@@ -27,3 +27,4 @@ XML-LibXML-1.70.tar.gz
 /XML-LibXML-2.0103.tar.gz
 /XML-LibXML-2.0104.tar.gz
 /XML-LibXML-2.0105.tar.gz
+/XML-LibXML-2.0106.tar.gz
diff --git a/perl-XML-LibXML.spec b/perl-XML-LibXML.spec
index b2c2215..97b1676 100644
--- a/perl-XML-LibXML.spec
+++ b/perl-XML-LibXML.spec
@@ -3,7 +3,7 @@ Name:   perl-XML-LibXML
 # https://bugzilla.redhat.com/show_bug.cgi?id=469480
 # it might not be needed anymore
 # this module is maintained, the other is not
-Version:2.0105
+Version:2.0106
 Release:1%{?dist}
 Epoch:  1
 Summary:Perl interface to the libxml2 library
@@ -112,6 +112,9 @@ fi
 %{_mandir}/man3/*.3*
 
 %changelog
+* Thu Sep 19 2013 Jitka Plesnikova jples...@redhat.com - 1:2.0106-1
+- 2.0106 bump
+
 * Tue Sep 10 2013 Jitka Plesnikova jples...@redhat.com - 1:2.0105-1
 - 2.0105 bump
 
diff --git a/sources b/sources
index 0f69f88..9d72722 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-7b278ec58427808a0dbe008ef760da7f  XML-LibXML-2.0105.tar.gz
+5da8ecfdedccca81fe0821e9935fe11c  XML-LibXML-2.0106.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1009563] perl-XML-LibXML-2.0106 is available

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1009563

Jitka Plesnikova jples...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-XML-LibXML-2.0106-1.fc
   ||21
 Resolution|--- |RAWHIDE
Last Closed||2013-09-19 04:41:24



-- 
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=NLwuiEHL5za=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

File Class-Tiny-0.010.tar.gz uploaded to lookaside cache by jplesnik

2013-09-19 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-Class-Tiny:

65f0c93051d38c501bafbbc35588e139  Class-Tiny-0.010.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-Class-Tiny] 0.010 bump

2013-09-19 Thread Jitka Plesnikova
commit d127b9785b8d7a0890c5a5f456cd4401e72d764c
Author: Jitka Plesnikova jples...@redhat.com
Date:   Thu Sep 19 11:22:48 2013 +0200

0.010 bump

 .gitignore   |1 +
 perl-Class-Tiny.spec |5 -
 sources  |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 16c9c93..470bb82 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /Class-Tiny-0.008.tar.gz
 /Class-Tiny-0.009.tar.gz
+/Class-Tiny-0.010.tar.gz
diff --git a/perl-Class-Tiny.spec b/perl-Class-Tiny.spec
index a2ee026..32880bd 100644
--- a/perl-Class-Tiny.spec
+++ b/perl-Class-Tiny.spec
@@ -1,5 +1,5 @@
 Name:   perl-Class-Tiny
-Version:0.009
+Version:0.010
 Release:1%{?dist}
 Summary:Minimalist class construction
 License:ASL 2.0
@@ -84,6 +84,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Thu Sep 19 2013 Jitka Plesnikova jples...@redhat.com - 0.010-1
+- 0.010 bump
+
 * Tue Sep 17 2013 Jitka Plesnikova jples...@redhat.com - 0.009-1
 - 0.009 bump
 
diff --git a/sources b/sources
index 6a04985..30b54be 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-65743492c009b167ae8772afa4100daa  Class-Tiny-0.009.tar.gz
+65f0c93051d38c501bafbbc35588e139  Class-Tiny-0.010.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 Path-IsDev-0.3.2.tar.gz uploaded to lookaside cache by jplesnik

2013-09-19 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-Path-IsDev:

8ae9527dc25a5effcea91cffb0f16909  Path-IsDev-0.3.2.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-Path-IsDev] 0.3.2 bump

2013-09-19 Thread Jitka Plesnikova
commit 1df4d602b1592f6a855721a8a057d277734a62f3
Author: Jitka Plesnikova jples...@redhat.com
Date:   Thu Sep 19 12:34:18 2013 +0200

0.3.2 bump

 .gitignore   |1 +
 perl-Path-IsDev.spec |7 +--
 sources  |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 1dd2cff..382dcc0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /Path-IsDev-0.3.0.tar.gz
+/Path-IsDev-0.3.2.tar.gz
diff --git a/perl-Path-IsDev.spec b/perl-Path-IsDev.spec
index ee9c89e..a3a4725 100644
--- a/perl-Path-IsDev.spec
+++ b/perl-Path-IsDev.spec
@@ -1,5 +1,5 @@
 Name:   perl-Path-IsDev
-Version:0.3.0
+Version:0.3.2
 Release:1%{?dist}
 Summary:Determine if a given Path resembles a development source tree
 License:GPL+ or Artistic
@@ -13,7 +13,7 @@ BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
 # Run-time
 BuildRequires:  perl(Carp)
-BuildRequires:  perl(Class::Tiny)
+BuildRequires:  perl(Class::Tiny) = 0.010
 BuildRequires:  perl(Module::Runtime)
 BuildRequires:  perl(parent)
 BuildRequires:  perl(Path::Tiny)
@@ -60,5 +60,8 @@ perl Build.PL installdirs=vendor
 %{_mandir}/man3/*
 
 %changelog
+* Thu Sep 19 2013 Jitka Plesnikova jples...@redhat.com - 0.3.2-1
+- 0.3.2 bump
+
 * Mon Sep 16 2013 Jitka Plesnikova jples...@redhat.com 0.3.0-1
 - Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index fafdd6d..b68ef33 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-f5ed2352145ee0528cf442eb9312cd07  Path-IsDev-0.3.0.tar.gz
+8ae9527dc25a5effcea91cffb0f16909  Path-IsDev-0.3.2.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

Broken dependencies: slic3r

2013-09-19 Thread buildsys


slic3r has broken dependencies in the F-20 tree:
On x86_64:
slic3r-0.9.10b-2.fc20.noarch requires perl(:MODULE_COMPAT_5.16.3)
On i386:
slic3r-0.9.10b-2.fc20.noarch requires perl(:MODULE_COMPAT_5.16.3)
On armhfp:
slic3r-0.9.10b-2.fc20.noarch requires perl(:MODULE_COMPAT_5.16.3)
Please resolve this as soon as possible.


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

Broken dependencies: perl-Language-Expr

2013-09-19 Thread buildsys


perl-Language-Expr has broken dependencies in the F-20 tree:
On x86_64:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


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

Broken dependencies: perl-PDL

2013-09-19 Thread buildsys


perl-PDL has broken dependencies in the F-20 tree:
On x86_64:
perl-PDL-2.4.10-6.fc19.x86_64 requires perl(:MODULE_COMPAT_5.16.2)
perl-PDL-2.4.10-6.fc19.x86_64 requires libgd.so.2()(64bit)
On i386:
perl-PDL-2.4.10-6.fc19.i686 requires perl(:MODULE_COMPAT_5.16.2)
perl-PDL-2.4.10-6.fc19.i686 requires libgd.so.2
Please resolve this as soon as possible.


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

Broken dependencies: perl-MIME-Lite-HTML

2013-09-19 Thread buildsys


perl-MIME-Lite-HTML has broken dependencies in the F-20 tree:
On x86_64:
perl-MIME-Lite-HTML-1.24-4.fc18.noarch requires 
perl(:MODULE_COMPAT_5.16.0)
On i386:
perl-MIME-Lite-HTML-1.24-4.fc18.noarch requires 
perl(:MODULE_COMPAT_5.16.0)
On armhfp:
perl-MIME-Lite-HTML-1.24-4.fc18.noarch requires 
perl(:MODULE_COMPAT_5.16.0)
Please resolve this as soon as possible.


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

Broken dependencies: perl-ParseUtil-Domain

2013-09-19 Thread buildsys


perl-ParseUtil-Domain has broken dependencies in the F-20 tree:
On x86_64:
perl-ParseUtil-Domain-2.22-3.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-ParseUtil-Domain-2.22-3.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-ParseUtil-Domain-2.22-3.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


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

Broken dependencies: perl-IPTables-libiptc

2013-09-19 Thread buildsys


perl-IPTables-libiptc has broken dependencies in the F-20 tree:
On x86_64:
perl-IPTables-libiptc-0.52-5.fc19.x86_64 requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-IPTables-libiptc-0.52-5.fc19.i686 requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-IPTables-libiptc-0.52-5.fc19.armv7hl requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


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

Broken dependencies: perl-MooseX-TrackDirty-Attributes

2013-09-19 Thread buildsys


perl-MooseX-TrackDirty-Attributes has broken dependencies in the F-20 tree:
On x86_64:
perl-MooseX-TrackDirty-Attributes-2.002-2.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-MooseX-TrackDirty-Attributes-2.002-2.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-MooseX-TrackDirty-Attributes-2.002-2.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


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

Broken dependencies: perl-Alien-ROOT

2013-09-19 Thread buildsys


perl-Alien-ROOT has broken dependencies in the F-20 tree:
On armhfp:
perl-Alien-ROOT-5.34.3.1-3.fc20.noarch requires root-core
Please resolve this as soon as possible.


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

Broken dependencies: perl-Language-Prolog-Yaswi

2013-09-19 Thread buildsys


perl-Language-Prolog-Yaswi has broken dependencies in the F-20 tree:
On x86_64:
perl-Language-Prolog-Yaswi-0.21-13.fc20.x86_64 requires 
libswipl.so.6.2.6()(64bit)
On i386:
perl-Language-Prolog-Yaswi-0.21-13.fc20.i686 requires libswipl.so.6.2.6
On armhfp:
perl-Language-Prolog-Yaswi-0.21-13.fc20.armv7hl requires 
libswipl.so.6.2.6
Please resolve this as soon as possible.


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

Broken dependencies: perl-Unix-Statgrab

2013-09-19 Thread buildsys


perl-Unix-Statgrab has broken dependencies in the F-20 tree:
On x86_64:
perl-Unix-Statgrab-0.04-20.fc20.x86_64 requires 
libstatgrab.so.6()(64bit)
On i386:
perl-Unix-Statgrab-0.04-20.fc20.i686 requires libstatgrab.so.6
On armhfp:
perl-Unix-Statgrab-0.04-20.fc20.armv7hl requires libstatgrab.so.6
Please resolve this as soon as possible.


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

[Bug 1009559] perl-Path-IsDev-0.3.1 is available

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1009559

Jitka Plesnikova jples...@redhat.com changed:

   What|Removed |Added

 Status|NEW |CLOSED
   Fixed In Version||perl-Path-IsDev-0.3.2-1.fc2
   ||1
 Resolution|--- |RAWHIDE
Last Closed||2013-09-19 06:56:21



-- 
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=QkCIEVRBboa=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

File DBD-mysql-4.024.tar.gz uploaded to lookaside cache by jplesnik

2013-09-19 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-DBD-MySQL:

280922d577aa95bf3f9ae21bd75e08c4  DBD-mysql-4.024.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-DBD-MySQL] 4.024 bump

2013-09-19 Thread Jitka Plesnikova
commit def9bf1385b4c260c0b9314d611e29a431402dd8
Author: Jitka Plesnikova jples...@redhat.com
Date:   Thu Sep 19 14:30:10 2013 +0200

4.024 bump

 .gitignore  |1 +
 perl-DBD-MySQL.spec |7 +--
 sources |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 3ac11c3..fbab968 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ DBD-mysql-4.017.tar.gz
 /DBD-mysql-4.021.tar.gz
 /DBD-mysql-4.022.tar.gz
 /DBD-mysql-4.023.tar.gz
+/DBD-mysql-4.024.tar.gz
diff --git a/perl-DBD-MySQL.spec b/perl-DBD-MySQL.spec
index 1a714c4..7e21671 100644
--- a/perl-DBD-MySQL.spec
+++ b/perl-DBD-MySQL.spec
@@ -1,6 +1,6 @@
 Name:   perl-DBD-MySQL
-Version:4.023
-Release:4%{?dist}
+Version:4.024
+Release:1%{?dist}
 Summary:A MySQL interface for Perl
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -65,6 +65,9 @@ find %{buildroot} -type f -name '*.bs' -empty -exec rm -f {} 
';'
 %{_mandir}/man3/*.3*
 
 %changelog
+* Thu Sep 19 2013 Jitka Plesnikova jples...@redhat.com - 4.024-1
+- 4.024 bump
+
 * Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 4.023-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
diff --git a/sources b/sources
index 11e704b..6ed4933 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6ee956cf33ddce6441b36b6c1c983528  DBD-mysql-4.023.tar.gz
+280922d577aa95bf3f9ae21bd75e08c4  DBD-mysql-4.024.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1009556] perl-DBD-MySQL-4.024 is available

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1009556

Jitka Plesnikova jples...@redhat.com changed:

   What|Removed |Added

 Status|NEW |MODIFIED
   Fixed In Version||perl-DBD-MySQL-4.024-1.fc21



-- 
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=kXEPA962Jsa=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

File Test-CheckDeps-0.007.tar.gz uploaded to lookaside cache by pghmcfc

2013-09-19 Thread Paul Howarth
A file has been added to the lookaside cache for perl-Test-CheckDeps:

058333c8e7a55e221ab46cfd45bcb825  Test-CheckDeps-0.007.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-CheckDeps] Update to 0.007

2013-09-19 Thread Paul Howarth
commit 5497432f37db9adc65b56ec998c4dca9ba3706f2
Author: Paul Howarth p...@city-fan.org
Date:   Thu Sep 19 13:42:22 2013 +0100

Update to 0.007

- New upstream release 0.007
  - Require CPAN::Meta::Check ≥ 0.007, for conflicts fixes
- Bump Module::Build::Tiny version requirement to 0.027
- BR: perl(IO::Handle) and perl(IPC::Open3) rather than
  perl(File::Temp) for the test suite

 perl-Test-CheckDeps.spec |   18 +-
 sources  |2 +-
 2 files changed, 14 insertions(+), 6 deletions(-)
---
diff --git a/perl-Test-CheckDeps.spec b/perl-Test-CheckDeps.spec
index aed8afa..8b6579a 100644
--- a/perl-Test-CheckDeps.spec
+++ b/perl-Test-CheckDeps.spec
@@ -1,22 +1,23 @@
 Name:  perl-Test-CheckDeps
 Summary:   Check for presence of dependencies
-Version:   0.006
-Release:   4%{?dist}
+Version:   0.007
+Release:   1%{?dist}
 License:   GPL+ or Artistic
 Group: Development/Libraries
 URL:   https://metacpan.org/release/Test-CheckDeps
 Source0:   
http://cpan.metacpan.org/authors/id/L/LE/LEONT/Test-CheckDeps-%{version}.tar.gz 
 BuildArch: noarch
 # Build
-BuildRequires: perl(Module::Build::Tiny) = 0.021
+BuildRequires: perl(Module::Build::Tiny) = 0.027
 # Module
 BuildRequires: perl(CPAN::Meta) = 2.120920
-BuildRequires: perl(CPAN::Meta::Check) = 0.004
+BuildRequires: perl(CPAN::Meta::Check) = 0.007
 BuildRequires: perl(Exporter) = 5.57
 BuildRequires: perl(List::Util)
 BuildRequires: perl(Test::Builder) = 0.82
 # Test Suite
-BuildRequires: perl(File::Temp)
+BuildRequires: perl(IO::Handle)
+BuildRequires: perl(IPC::Open3)
 BuildRequires: perl(Test::More) = 0.88
 # Release tests
 # perl-Pod-Coverage-TrustPod - perl-Pod-Eventual - perl-Mixin-Linewise - 
perl-YAML-Tiny - perl-Test-CheckDeps
@@ -51,6 +52,13 @@ RELEASE_TESTING=1 ./Build test
 %{_mandir}/man3/Test::CheckDeps.3pm*
 
 %changelog
+* Thu Sep 19 2013 Paul Howarth p...@city-fan.org - 0.007-1
+- Update to 0.007
+  - Require CPAN::Meta::Check ≥ 0.007, for conflicts fixes
+- Bump Module::Build::Tiny version requirement to 0.027
+- BR: perl(IO::Handle) and perl(IPC::Open3) rather than
+  perl(File::Temp) for the test suite
+
 * Wed Sep  4 2013 Paul Howarth p...@city-fan.org - 0.006-4
 - Skip the release tests when bootstrapping
 
diff --git a/sources b/sources
index 18d3910..31ed03c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-94d84c68a262ca97ecadbb0ff6d215e1  Test-CheckDeps-0.006.tar.gz
+058333c8e7a55e221ab46cfd45bcb825  Test-CheckDeps-0.007.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-DBD-MySQL/f20] 4.024 bump

2013-09-19 Thread Jitka Plesnikova
commit d6de86023ad34febd07fa82c7a6dae192f44cbd2
Author: Jitka Plesnikova jples...@redhat.com
Date:   Thu Sep 19 14:46:50 2013 +0200

4.024 bump

 .gitignore  |1 +
 perl-DBD-MySQL.spec |7 +--
 sources |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 3ac11c3..fbab968 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ DBD-mysql-4.017.tar.gz
 /DBD-mysql-4.021.tar.gz
 /DBD-mysql-4.022.tar.gz
 /DBD-mysql-4.023.tar.gz
+/DBD-mysql-4.024.tar.gz
diff --git a/perl-DBD-MySQL.spec b/perl-DBD-MySQL.spec
index 1a714c4..7e21671 100644
--- a/perl-DBD-MySQL.spec
+++ b/perl-DBD-MySQL.spec
@@ -1,6 +1,6 @@
 Name:   perl-DBD-MySQL
-Version:4.023
-Release:4%{?dist}
+Version:4.024
+Release:1%{?dist}
 Summary:A MySQL interface for Perl
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -65,6 +65,9 @@ find %{buildroot} -type f -name '*.bs' -empty -exec rm -f {} 
';'
 %{_mandir}/man3/*.3*
 
 %changelog
+* Thu Sep 19 2013 Jitka Plesnikova jples...@redhat.com - 4.024-1
+- 4.024 bump
+
 * Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 4.023-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
diff --git a/sources b/sources
index 11e704b..6ed4933 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6ee956cf33ddce6441b36b6c1c983528  DBD-mysql-4.023.tar.gz
+280922d577aa95bf3f9ae21bd75e08c4  DBD-mysql-4.024.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-CheckDeps/f20] (2 commits) ...Update to 0.007

2013-09-19 Thread Paul Howarth
Summary of changes:

  336073f... Skip the release tests when bootstrapping (*)
  5497432... Update to 0.007 (*)

(*) 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

Broken dependencies: perl-MIME-Lite-HTML

2013-09-19 Thread buildsys


perl-MIME-Lite-HTML has broken dependencies in the rawhide tree:
On x86_64:
perl-MIME-Lite-HTML-1.24-4.fc18.noarch requires 
perl(:MODULE_COMPAT_5.16.0)
On i386:
perl-MIME-Lite-HTML-1.24-4.fc18.noarch requires 
perl(:MODULE_COMPAT_5.16.0)
On armhfp:
perl-MIME-Lite-HTML-1.24-4.fc18.noarch requires 
perl(:MODULE_COMPAT_5.16.0)
Please resolve this as soon as possible.


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

Broken dependencies: slic3r

2013-09-19 Thread buildsys


slic3r has broken dependencies in the rawhide tree:
On x86_64:
slic3r-0.9.10b-2.fc20.noarch requires perl(:MODULE_COMPAT_5.16.3)
On i386:
slic3r-0.9.10b-2.fc20.noarch requires perl(:MODULE_COMPAT_5.16.3)
On armhfp:
slic3r-0.9.10b-2.fc20.noarch requires perl(:MODULE_COMPAT_5.16.3)
Please resolve this as soon as possible.


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

Broken dependencies: perl-MooseX-TrackDirty-Attributes

2013-09-19 Thread buildsys


perl-MooseX-TrackDirty-Attributes has broken dependencies in the rawhide tree:
On x86_64:
perl-MooseX-TrackDirty-Attributes-2.002-2.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-MooseX-TrackDirty-Attributes-2.002-2.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-MooseX-TrackDirty-Attributes-2.002-2.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


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

Broken dependencies: perl-Language-Expr

2013-09-19 Thread buildsys


perl-Language-Expr has broken dependencies in the rawhide tree:
On x86_64:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


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

Broken dependencies: perl-Unix-Statgrab

2013-09-19 Thread buildsys


perl-Unix-Statgrab has broken dependencies in the rawhide tree:
On x86_64:
perl-Unix-Statgrab-0.04-20.fc20.x86_64 requires 
libstatgrab.so.6()(64bit)
On i386:
perl-Unix-Statgrab-0.04-20.fc20.i686 requires libstatgrab.so.6
On armhfp:
perl-Unix-Statgrab-0.04-20.fc20.armv7hl requires libstatgrab.so.6
Please resolve this as soon as possible.


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

Broken dependencies: perl-Padre

2013-09-19 Thread buildsys


perl-Padre has broken dependencies in the rawhide tree:
On x86_64:
perl-Padre-0.90-6.fc18.noarch requires perl(:MODULE_COMPAT_5.16.0)
On i386:
perl-Padre-0.90-6.fc18.noarch requires perl(:MODULE_COMPAT_5.16.0)
On armhfp:
perl-Padre-0.90-6.fc18.noarch requires perl(:MODULE_COMPAT_5.16.0)
Please resolve this as soon as possible.


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

Broken dependencies: perl-PDL

2013-09-19 Thread buildsys


perl-PDL has broken dependencies in the rawhide tree:
On x86_64:
perl-PDL-2.4.10-6.fc19.x86_64 requires perl(:MODULE_COMPAT_5.16.2)
perl-PDL-2.4.10-6.fc19.x86_64 requires libgd.so.2()(64bit)
On i386:
perl-PDL-2.4.10-6.fc19.i686 requires perl(:MODULE_COMPAT_5.16.2)
perl-PDL-2.4.10-6.fc19.i686 requires libgd.so.2
Please resolve this as soon as possible.


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

[Bug 1009556] perl-DBD-MySQL-4.024 is available

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1009556



--- Comment #1 from Fedora Update System upda...@fedoraproject.org ---
perl-DBD-MySQL-4.024-1.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/perl-DBD-MySQL-4.024-1.fc20

-- 
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=AcWdaS2Lcea=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

[perl-Test-CheckDeps] Created tag perl-Test-CheckDeps-0.007-1.fc21

2013-09-19 Thread Paul Howarth
The lightweight tag 'perl-Test-CheckDeps-0.007-1.fc21' was created pointing to:

 5497432... Update to 0.007
--
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-CheckDeps] Created tag perl-Test-CheckDeps-0.007-1.fc20

2013-09-19 Thread Paul Howarth
The lightweight tag 'perl-Test-CheckDeps-0.007-1.fc20' was created pointing to:

 5497432... Update to 0.007
--
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-Tree-DAG_Node] Update to 1.18

2013-09-19 Thread Paul Howarth
commit d6a9bea187bcfb654281f577ce38b967d0c2d285
Author: Paul Howarth p...@city-fan.org
Date:   Thu Sep 19 14:06:12 2013 +0100

Update to 1.18

- New upstream release 1.18
  - No changes, code or otherwise, except for the version # in the *.pm, 
this
file, and Changelog.ini
  - Somehow a corrupted version got uploaded to search.cpan.org, so I've 
just
changed the version # (the file on MetaCPAN was fine)

 perl-Tree-DAG_Node.spec |9 -
 sources |2 +-
 2 files changed, 9 insertions(+), 2 deletions(-)
---
diff --git a/perl-Tree-DAG_Node.spec b/perl-Tree-DAG_Node.spec
index e848ab8..fed9f50 100644
--- a/perl-Tree-DAG_Node.spec
+++ b/perl-Tree-DAG_Node.spec
@@ -1,5 +1,5 @@
 Name:   perl-Tree-DAG_Node
-Version:1.17
+Version:1.18
 Release:1%{?dist}
 Summary:Class for representing nodes in a tree
 Group:  Development/Libraries
@@ -48,6 +48,13 @@ make test TEST_FILES=$(echo $(find xt/ -name '*.t'))
 %{_mandir}/man3/Tree::DAG_Node.3pm*
 
 %changelog
+* Thu Sep 19 2013 Paul Howarth p...@city-fan.org - 1.18-1
+- Update to 1.18
+  - No changes, code or otherwise, except for the version # in the *.pm, this
+file, and Changelog.ini
+  - Somehow a corrupted version got uploaded to search.cpan.org, so I've just
+changed the version # (the file on MetaCPAN was fine)
+
 * Mon Sep 16 2013 Paul Howarth p...@city-fan.org - 1.17-1
 - Update to 1.17
   - Write test temp files in :raw mode as well as utf-8, for MS Windows users
diff --git a/sources b/sources
index 4011a08..cabef69 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-cbbfacf2680279379bb7291f7f25a5aa  Tree-DAG_Node-1.17.tgz
+d336e9d3141154fe152271e2f504a57a  Tree-DAG_Node-1.18.tgz
--
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-Tree-DAG_Node/f20] Update to 1.18

2013-09-19 Thread Paul Howarth
Summary of changes:

  d6a9bea... Update to 1.18 (*)

(*) 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-Tree-DAG_Node] Created tag perl-Tree-DAG_Node-1.18-1.fc20

2013-09-19 Thread Paul Howarth
The lightweight tag 'perl-Tree-DAG_Node-1.18-1.fc20' was created pointing to:

 d6a9bea... Update to 1.18
--
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-Tree-DAG_Node] Created tag perl-Tree-DAG_Node-1.18-1.fc21

2013-09-19 Thread Paul Howarth
The lightweight tag 'perl-Tree-DAG_Node-1.18-1.fc21' was created pointing to:

 d6a9bea... Update to 1.18
--
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 992666] perl-Language-Expr: FTBFS in rawhide

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=992666

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

   What|Removed |Added

 CC||ppi...@redhat.com
 Depends On||1009919



-- 
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=8O9lW7is7Ja=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 1009919] New: perl-5.18: Regexp::Grammars does not work due to bug in perl

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1009919

Bug ID: 1009919
   Summary: perl-5.18: Regexp::Grammars does not work due to bug
in perl
   Product: Fedora
   Version: 20
 Component: perl
  Assignee: jples...@redhat.com
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: cw...@alumni.drew.edu, iarn...@gmail.com,
jples...@redhat.com, ka...@ucw.cz,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com,
psab...@redhat.com, rc040...@freenet.de,
tcall...@redhat.com



Regexp::Grammars module and dependent modules do not work with perl-5.18
(https://rt.cpan.org/Public/Bug/Display.html?id=87880, bug #992666).

It was being solved for a long time
https://rt.perl.org/rt3//Public/Bug/Display.html?id=116823, and it seems to
have been solved int the blead
http://www.nntp.perl.org/group/perl.perl5.porters/2013/07/msg204660.html,
http://www.nntp.perl.org/group/perl.perl5.porters/2013/08/msg206163.html.

Perl 5.18 (F≥20) is affected, e.g perl-5.18.1-288.fc21.x86_64.

-- 
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=89uZn2jDxia=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 1009919] perl-5.18: Regexp::Grammars does not work due to bug in perl

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1009919

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

   What|Removed |Added

 Blocks||992666



-- 
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=jCfbaYjcwva=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

File YAML-Tiny-1.55.tar.gz uploaded to lookaside cache by pghmcfc

2013-09-19 Thread Paul Howarth
A file has been added to the lookaside cache for perl-YAML-Tiny:

9a67f7a445b8c29e6b484869f2394d40  YAML-Tiny-1.55.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-YAML-Tiny] Update to 1.55

2013-09-19 Thread Paul Howarth
commit c04cd8351be278fdc685368c521d5ab4748e432e
Author: Paul Howarth p...@city-fan.org
Date:   Thu Sep 19 14:44:40 2013 +0100

Update to 1.55

- New upstream release 1.55
  - Revert to ExtUtils::MakeMaker flow
- Update buildreqs as needed

 perl-YAML-Tiny.spec |   25 -
 sources |2 +-
 2 files changed, 17 insertions(+), 10 deletions(-)
---
diff --git a/perl-YAML-Tiny.spec b/perl-YAML-Tiny.spec
index ab818e1..1f6f9f2 100644
--- a/perl-YAML-Tiny.spec
+++ b/perl-YAML-Tiny.spec
@@ -1,5 +1,5 @@
 Name:   perl-YAML-Tiny
-Version:1.54
+Version:1.55
 Release:1%{?dist}
 Summary:Read/Write YAML files with as little code as possible
 License:GPL+ or Artistic
@@ -8,7 +8,7 @@ URL:http://search.cpan.org/dist/YAML-Tiny/
 Source0:
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/YAML-Tiny-%{version}.tar.gz
 BuildArch:  noarch
 # Module Build
-BuildRequires:  perl(Module::Build::Tiny) = 0.026
+BuildRequires:  perl(ExtUtils::MakeMaker) = 6.30
 # Module Runtime
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(Exporter)
@@ -16,12 +16,12 @@ BuildRequires:  perl(Scalar::Util)
 BuildRequires:  perl(strict)
 # Test Suite
 BuildRequires:  perl(blib)
-BuildRequires:  perl(Capture::Tiny)
-BuildRequires:  perl(CPAN::Meta::Check) = 0.007
 BuildRequires:  perl(File::Spec) = 0.80
 BuildRequires:  perl(File::Spec::Functions)
-BuildRequires:  perl(Test::CheckDeps) = 0.006
+BuildRequires:  perl(IO::Handle)
+BuildRequires:  perl(IPC::Open3)
 BuildRequires:  perl(Test::More) = 0.94
+BuildRequires:  perl(vars)
 BuildRequires:  perl(warnings)
 BuildRequires:  perl(YAML)
 BuildRequires:  perl(YAML::Syck)
@@ -41,14 +41,16 @@ memory overhead.
 %setup -q -n YAML-Tiny-%{version}
 
 %build
-perl Build.PL --installdirs=vendor
-./Build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %install
-./Build install --destdir=%{buildroot} --create_packlist=0
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+%{_fixperms} %{buildroot}
 
 %check
-./Build test
+make test AUTHOR_TESTING=1
 
 %files
 %doc Changes LICENSE README
@@ -56,6 +58,11 @@ perl Build.PL --installdirs=vendor
 %{_mandir}/man3/YAML::Tiny.3pm*
 
 %changelog
+* Thu Sep 19 2013 Paul Howarth p...@city-fan.org 1.55-1
+- Update to 1.55
+  - Revert to ExtUtils::MakeMaker flow
+- Update buildreqs as needed
+
 * Thu Aug 22 2013 Paul Howarth p...@city-fan.org 1.54-1
 - Update to 1.54
   - Convert to Dist::Zilla
diff --git a/sources b/sources
index 2775a8e..399660b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bb82110db337a9afca48630dfca9b8e0  YAML-Tiny-1.54.tar.gz
+9a67f7a445b8c29e6b484869f2394d40  YAML-Tiny-1.55.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-YAML-Tiny/f20] Update to 1.55

2013-09-19 Thread Paul Howarth
Summary of changes:

  c04cd83... Update to 1.55 (*)

(*) 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-YAML-Tiny] Created tag perl-YAML-Tiny-1.55-1.fc20

2013-09-19 Thread Paul Howarth
The lightweight tag 'perl-YAML-Tiny-1.55-1.fc20' was created pointing to:

 c04cd83... Update to 1.55
--
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-YAML-Tiny] Created tag perl-YAML-Tiny-1.55-1.fc21

2013-09-19 Thread Paul Howarth
The lightweight tag 'perl-YAML-Tiny-1.55-1.fc21' was created pointing to:

 c04cd83... Update to 1.55
--
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 1009919] perl-5.18: Regexp::Grammars does not work due to bug in perl

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1009919



--- Comment #1 from Petr Pisar ppi...@redhat.com ---
There is nothing interesting in maint-5.18
(f4b15169f09b515c4765903d629c5125f9070e4a) after v5.18.1. However the
discussion highlights two commits worth of back-porting:

http://www.nntp.perl.org/group/perl.perl5.porters/2013/08/msg205655.html:

commit c3923c33af542d8764d5a1e4eb5d7b311f443b89
Author: David Mitchell da...@iabyn.com
AuthorDate: Tue Aug 6 16:34:50 2013 +0100
Commit: David Mitchell da...@iabyn.com
CommitDate: Tue Aug 6 16:44:12 2013 +0100

reparse compile-time /(?{})/ in right scope

http://www.nntp.perl.org/group/perl.perl5.porters/2013/07/msg205393.html:

commit c30fc27b4df65a43710b25dd1d2a57d78ee2fe33
Author: David Mitchell da...@iabyn.com
Date:   Wed Jul 31 22:41:17 2013 +0100

Handle /[#]/ and /[(?#]/ with code blocks

-- 
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=eKgh69A6ama=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 1009919] perl-5.18: Regexp::Grammars does not work due to bug in perl

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1009919



--- Comment #2 from Petr Pisar ppi...@redhat.com ---
This:

commit c30fc27b4df65a43710b25dd1d2a57d78ee2fe33
Author: David Mitchell da...@iabyn.com
Date:   Wed Jul 31 22:41:17 2013 +0100

Handle /[#]/ and /[(?#]/ with code blocks

has been already in 5.18.1.

-- 
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=usMXow9KK9a=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 1009919] perl-5.18: Regexp::Grammars does not work due to bug in perl

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1009919



--- Comment #3 from Petr Pisar ppi...@redhat.com ---
The `reparse compile-time /(?{})/ in right scope' patch does not seem to be
enough.

-- 
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=LDEOr2GadRa=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 1009556] perl-DBD-MySQL-4.024 is available

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1009556

Fedora Update System upda...@fedoraproject.org changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
Package perl-DBD-MySQL-4.024-1.fc20:
* should fix your issue,
* was pushed to the Fedora 20 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing perl-DBD-MySQL-4.024-1.fc20'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/FEDORA-2013-17162/perl-DBD-MySQL-4.024-1.fc20
then log in and leave karma (feedback).

-- 
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=xXCG7japU7a=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 743567] CVE-2011-3599 perl-Crypt-DSA: Cryptographically insecure method used for random numbers generation on systems without /dev/random

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=743567



--- Comment #11 from Fedora Update System upda...@fedoraproject.org ---
perl-Crypt-DSA-1.17-10.el6 has been pushed to the Fedora EPEL 6 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
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=DWmLkNUYhea=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 743567] CVE-2011-3599 perl-Crypt-DSA: Cryptographically insecure method used for random numbers generation on systems without /dev/random

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=743567



--- Comment #10 from Fedora Update System upda...@fedoraproject.org ---
perl-Crypt-DSA-0.14-8.el5 has been pushed to the Fedora EPEL 5 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
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=rWHKdowjwea=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 1003385] perl-Rose-DB-Object-0.807 is available

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1003385

Fedora Update System upda...@fedoraproject.org changed:

   What|Removed |Added

   Fixed In Version|perl-Rose-DB-Object-0.807-1 |perl-Rose-DB-Object-0.807-1
   |.fc18   |.el6



--- Comment #7 from Fedora Update System upda...@fedoraproject.org ---
perl-Rose-DB-Object-0.807-1.el6 has been pushed to the Fedora EPEL 6 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
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=0NRksoAKeba=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 743567] CVE-2011-3599 perl-Crypt-DSA: Cryptographically insecure method used for random numbers generation on systems without /dev/random

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=743567

Paul Howarth p...@city-fan.org changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Crypt-DSA-1.17-10.*,
   ||perl-Crypt-DSA-0.14-8.el5
 Resolution|--- |ERRATA
Last Closed||2013-09-19 15:41:45



--- Comment #12 from Paul Howarth p...@city-fan.org ---
This is now fixed in all current Fedora and EPEL releases.

-- 
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=OCu4aYeyo3a=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

File Net-OpenSSH-0.60.tar.gz uploaded to lookaside cache by stevetraylen

2013-09-19 Thread stevetraylen
A file has been added to the lookaside cache for perl-Net-OpenSSH:

020241217103e8b7ad1704136d5a2d4f  Net-OpenSSH-0.60.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-OpenSSH] Created tag perl-Net-OpenSSH-0.60-1.fc20

2013-09-19 Thread stevetraylen
The lightweight tag 'perl-Net-OpenSSH-0.60-1.fc20' was created pointing to:

 5416c36... Upstream to 0.60.
--
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-OpenSSH/f20] Upstream to 0.60.

2013-09-19 Thread stevetraylen
Summary of changes:

  5416c36... Upstream to 0.60. (*)

(*) 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-Net-OpenSSH] Created tag perl-Net-OpenSSH-0.60-1.fc21

2013-09-19 Thread stevetraylen
The lightweight tag 'perl-Net-OpenSSH-0.60-1.fc21' was created pointing to:

 5416c36... Upstream to 0.60.
--
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-VOMS-Lite] Created tag perl-VOMS-Lite-0.20-1.fc20

2013-09-19 Thread stevetraylen
The lightweight tag 'perl-VOMS-Lite-0.20-1.fc20' was created pointing to:

 ecd8513... New upstream 0.20
--
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-VOMS-Lite] New upstream 0.20

2013-09-19 Thread stevetraylen
commit ecd8513ce4b0b582d39e30d5ad2ac8023eeef048
Author: Steve Traylen steve.tray...@cern.ch
Date:   Thu Sep 19 20:10:01 2013 +

New upstream 0.20

 .gitignore  |1 +
 perl-VOMS-Lite.spec |   12 +++-
 sources |2 +-
 3 files changed, 9 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 1ce47d3..5394d84 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /VOMS-Lite-0.11.tar.gz
 /VOMS-Lite-0.12.tar.gz
 /VOMS-Lite-0.14.tar.gz
+/VOMS-Lite-0.20.tar.gz
diff --git a/perl-VOMS-Lite.spec b/perl-VOMS-Lite.spec
index e510542..475881c 100644
--- a/perl-VOMS-Lite.spec
+++ b/perl-VOMS-Lite.spec
@@ -1,7 +1,7 @@
 
 Name:   perl-VOMS-Lite
-Version:0.14
-Release:9%{?dist}
+Version:0.20
+Release:1%{?dist}
 Summary:Perl extension for VOMS Attribute certificate creation
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -73,7 +73,6 @@ of a VOMS server.
 
 %prep
 %setup -q -n VOMS-Lite-%{version}
-chmod 644 example/PROXYINFO.pl
 cp -p %{SOURCE1} .
 
 #On .el4 and .el5 we filter requires the old fashined
@@ -119,7 +118,7 @@ rm -rf %{buildroot}
 
 %files
 %defattr(-,root,root,-)
-%doc Changes README TODO example
+%doc Changes README TODO 
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 %{_bindir}/cert-init.pl
@@ -158,6 +157,9 @@ rm -rf %{buildroot}
 
 
 %changelog
+* Thu Sep 19 2013 Steve Traylen steve.tray...@cern.ch 0.20-1
+- New upstream 0.20
+
 * Sun Aug 04 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.14-9
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
@@ -200,7 +202,7 @@ rm -rf %{buildroot}
 - Create a -tests package when possible.
 - Install configuration file at 600.
 
-* Mon Mar 7 2010 Steve Traylen steve.tray...@cern.ch 0.09-4
+* Sun Mar 7 2010 Steve Traylen steve.tray...@cern.ch 0.09-4
 - Move voms-server.pl to /usr/sbin
 - Add a default configuration for voms-server.pl
 
diff --git a/sources b/sources
index 99d8618..1fa82b3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b969932c3a6f2b9143c26e1c8841fc08  VOMS-Lite-0.14.tar.gz
+bf8c47aa86e7cae12d0d400298853ee4  VOMS-Lite-0.20.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-VOMS-Lite/f20] New upstream 0.20

2013-09-19 Thread stevetraylen
Summary of changes:

  ecd8513... New upstream 0.20 (*)

(*) 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-PBS] Package is retired

2013-09-19 Thread stevetraylen
commit 03e946cc202fa0fa1a0203b0357826e365d2af1d
Author: Steve Traylen steve.tray...@cern.ch
Date:   Thu Sep 19 19:53:58 2013 +

Package is retired

 .gitignore   |1 -
 dead.package |1 +
 perl-PBS-0.33-obsolete.patch |  213 --
 perl-PBS.spec|  153 --
 sources  |1 -
 5 files changed, 1 insertions(+), 368 deletions(-)
---
diff --git a/dead.package b/dead.package
new file mode 100644
index 000..0f98991
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Package is retired
--
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 1010057] New: `perldoc perldoc`: No documentation found for perldoc.

2013-09-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1010057

Bug ID: 1010057
   Summary: `perldoc perldoc`: No documentation found for
perldoc.
   Product: Fedora
   Version: 19
 Component: perl-Pod-Perldoc
  Assignee: ppi...@redhat.com
  Reporter: iamde...@gmail.com
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com



Description of problem:
Command
perldoc perldoc
exits with
No documentation found for perldoc.

Version-Release number of selected component (if applicable):
perl-Pod-Perldoc-3.19.01-1.fc19.noarch

How reproducible: always

Steps to Reproduce:
1. yum install perl-Pod-Perldoc-3.19.01-1.fc19.noarch
2. perldoc perl # Shows what it should
3. perldoc perldoc

Actual results:
No documentation found for perldoc.

Expected results:
Contents of perldoc.pod

-- 
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=6gtgZRUe3wa=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

[perl-Term-Shell] Created tag perl-Term-Shell-0.04-1.fc21

2013-09-19 Thread stevetraylen
The lightweight tag 'perl-Term-Shell-0.04-1.fc21' was created pointing to:

 c656935... New upstream.
--
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-Term-Shell] New upstream.

2013-09-19 Thread stevetraylen
commit c65693533d6994fa8129a14c41176cfb4d20f6a4
Author: Steve Traylen steve.tray...@cern.ch
Date:   Thu Sep 19 19:57:11 2013 +

New upstream.

 .gitignore   |1 +
 perl-Term-Shell.spec |7 +--
 sources  |1 +
 3 files changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index bfd0c5d..cf459c7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /Term-Shell-0.02.tar.gz
+/Term-Shell-0.04.tar.gz
diff --git a/perl-Term-Shell.spec b/perl-Term-Shell.spec
index 7f0dc4e..f4b14ab 100644
--- a/perl-Term-Shell.spec
+++ b/perl-Term-Shell.spec
@@ -1,6 +1,6 @@
 Name:   perl-Term-Shell
-Version:0.02
-Release:11%{?dist}
+Version:0.04
+Release:1%{?dist}
 Summary:Simple command-line shell framework
 # License statement present at the bottom of  lib/Term/Shell.pod
 License:GPL+ or Artistic
@@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Sep 19 2013 Steve Traylen steve.tray...@cern.ch - 0.04-1
+- New upstream.
+
 * Sun Aug 04 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-11
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
diff --git a/sources b/sources
index e811a5b..1a1b71e 100644
--- a/sources
+++ b/sources
@@ -1 +1,2 @@
 273042f90af469c674f5b44ed011326b  Term-Shell-0.02.tar.gz
+548a8737dbed8b24466214454b903cea  Term-Shell-0.04.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-Term-Shell/f20] New upstream.

2013-09-19 Thread stevetraylen
Summary of changes:

  c656935... New upstream. (*)

(*) 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 VOMS-Lite-0.20.tar.gz uploaded to lookaside cache by stevetraylen

2013-09-19 Thread stevetraylen
A file has been added to the lookaside cache for perl-VOMS-Lite:

bf8c47aa86e7cae12d0d400298853ee4  VOMS-Lite-0.20.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 Term-Shell-0.04.tar.gz uploaded to lookaside cache by stevetraylen

2013-09-19 Thread stevetraylen
A file has been added to the lookaside cache for perl-Term-Shell:

548a8737dbed8b24466214454b903cea  Term-Shell-0.04.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 File-ShareDir-ProjectDistDir-0.5.1.tar.gz uploaded to lookaside cache by jplesnik

2013-09-19 Thread Jitka Plesnikova
A file has been added to the lookaside cache for 
perl-File-ShareDir-ProjectDistDir:

2c907030b82975bd4bf387c283bfed34  File-ShareDir-ProjectDistDir-0.5.1.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-File-ShareDir-ProjectDistDir] Initial import

2013-09-19 Thread Jitka Plesnikova
commit 047574a9ad1f13711ded3a7b143010ef8fbf0110
Author: Jitka Plesnikova jples...@redhat.com
Date:   Fri Sep 20 07:54:33 2013 +0200

Initial import

 .gitignore |1 +
 perl-File-ShareDir-ProjectDistDir.spec |   58 
 sources|1 +
 3 files changed, 60 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..8e94706 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/File-ShareDir-ProjectDistDir-0.5.1.tar.gz
diff --git a/perl-File-ShareDir-ProjectDistDir.spec 
b/perl-File-ShareDir-ProjectDistDir.spec
new file mode 100644
index 000..708e644
--- /dev/null
+++ b/perl-File-ShareDir-ProjectDistDir.spec
@@ -0,0 +1,58 @@
+Name:   perl-File-ShareDir-ProjectDistDir
+Version:0.5.1
+Release:1%{?dist}
+Summary:Simple set-and-forget using of a '/share' directory in your 
projects root
+License:GPL+ or Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/File-ShareDir-ProjectDistDir/
+Source0:
http://www.cpan.org/authors/id/K/KE/KENTNL/File-ShareDir-ProjectDistDir-%{version}.tar.gz
+BuildArch:  noarch
+BuildRequires:  perl = 0:5.006
+BuildRequires:  perl(Module::Build) = 0.3601
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(File::ShareDir)
+BuildRequires:  perl(Path::Class::Dir)
+BuildRequires:  perl(Path::Class::File)
+BuildRequires:  perl(Path::FindDev)
+BuildRequires:  perl(Path::IsDev)
+BuildRequires:  perl(Path::Tiny)
+BuildRequires:  perl(Sub::Exporter)
+# Tests
+BuildRequires:  perl(FindBin)
+BuildRequires:  perl(IO::Handle)
+BuildRequires:  perl(IPC::Open3)
+BuildRequires:  perl(lib)
+BuildRequires:  perl(Test::More) = 0.98
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+Requires:   perl(Carp)
+Requires:   perl(Path::Class::Dir)
+Requires:   perl(Path::Tiny)
+
+%description
+Simple set-and-forget using of a '/share' directory in your projects root
+
+%prep
+%setup -q -n File-ShareDir-ProjectDistDir-%{version}
+
+%build
+perl Build.PL installdirs=vendor
+./Build
+
+%install
+./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+./Build test
+
+%files
+%doc Changes LICENSE README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Mon Sep 16 2013 Jitka Plesnikova jples...@redhat.com 0.5.1-1
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index e69de29..cb4226b 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+2c907030b82975bd4bf387c283bfed34  File-ShareDir-ProjectDistDir-0.5.1.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