Fwd: Call for help: Forking Grip

2016-12-29 Thread Neal Gompa
This may be of interest for some folks. Check out the message below.


-- Forwarded message --
From: Johnny A. Solbu 
Date: Thu, Dec 29, 2016 at 11:02 PM
Subject: [dev] Call for help: Forking Grip
To: d...@ml.mageia.org


Hello fellow developers.
Hope everyone is having a good Christmas. :-)

I have been thinking for some months now about forking Grip, the GTK
cd ripper. Mainly in order to ensure it's still usable and included in
th various distributions, as it is my prefered cd ripper.
The last release was in june 25, 2005, and it show all the signs of
being abandoned. No development, no answering of bug repports.
I have been thinking for a few years that unless someone steps up and
try to continue it's development, it might one day be to much work to
package it and it would be dropped. I know that debian dropped it some
years ago.

Today I made the big step and forked it. The code is in a git repo at
Sourceforge: https://sourceforge.net/projects/grip2/
The main reason for using sourceforge and not Github is file hosting.
I like SourceForges file hosting capabillities. Yes, one can tag
versions in git, but it's not the same.

I am (stil) not a programmer, so at least currently it is not much I
can do with regards to the coding. But I can implement small changes,
check and apply patches that come in, and so on.

So if any one want to help continue the development, join me.

If you have patches that should be implemented, join the development
team or open a ticket at the SF-project.
I have applied the Mageia patches, and one from Arch linux.

For the time being, the project name is grip2, but the binary and so
on is the same. At least for now.

--
Johnny A. Solbu
PGP key ID: 0x4F5AD64DFA687324


-- 
真実はいつも一つ!/ Always, there's only one truth!
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Access to github.com for building documentation?

2016-12-29 Thread Dave Johansen
On Thu, Dec 29, 2016 at 9:04 PM, Matthew Miller 
wrote:

> On Thu, Dec 29, 2016 at 07:59:26PM -0700, Dave Johansen wrote:
> > Currently, upstream has a release that includes the prebuilt
> documentation
> > and I've been using that but I was hoping to be able to build it as part
> of
> > packaging.
>
> Is there any advantage in doing that? There are several reasons to
> _not_ do it:
>

Right now, fmt can only be built from official releases with the
documentation and it's happened more than once that the documentation was
missing from a release, so I would prefer to be able to build everything
from a clean checkout.


> 1. Faster build times.
>

That's true, but it's not a very big package, so I'm not too concerned.


> 2. Timestamps in docs tend to be one factor against reproducible
>builds
>

Isn't this a much bigger issue which solutions/implications beyond this
discussion?


> 3. Dragging doc-building stacks into build reqs tends to explode the
>package set required to build things.
>

Yes, it is a bit annoying, but once again it's not a very big package, so
I'm not too concerned.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Access to github.com for building documentation?

2016-12-29 Thread Dave Johansen
On Thu, Dec 29, 2016 at 8:30 PM, William Moreno 
wrote:

>
>
> El 29/12/2016 9:00 p. m., "Dave Johansen" 
> escribió:
>
> On Thu, Dec 29, 2016 at 7:47 PM, William Moreno  > wrote:
>
>> Just a wild idea: you can skip the docs!
>>
>> If the package includes it own documentation and this is to large, it
>> must be in a docs sub package , current packaging guidelines do not block a
>> package than do no include all docs available upstream, at less I think so.
>>
>
> I would like to have the docs include for my own uses. Some of the
> machines I work on don't have internet access so being able to install the
> docs locally is a big help.
>
>
> This is new for me, a sphinx package than create a virtual env before call
> the sphinx build
>
> Looking at this file:
>
> https://github.com/fmtlib/fmt/blob/master/doc/build.py
>
> You can go to the end of file and see those lines:
>
> if __name__ == '__main__':
>   create_build_env()
>   build_docs(sys.argv[1])
>
> Just remove the call to the create_build_env() function (with a patch of
> even with sed in %prep) and you can test to build with the system sphinx
> version, this way at less you should now if the docs build with system lib,
> having said that, this is Fedora! You will always will find a really up to
> date version of sphinx in the Fedora repo!
>
>
>
I'll give that a try. Is there a way that I can disable network access in
my local mock to test that change?
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Access to github.com for building documentation?

2016-12-29 Thread Matthew Miller
On Thu, Dec 29, 2016 at 07:59:26PM -0700, Dave Johansen wrote:
> Currently, upstream has a release that includes the prebuilt documentation
> and I've been using that but I was hoping to be able to build it as part of
> packaging.

Is there any advantage in doing that? There are several reasons to
_not_ do it:

1. Faster build times.
2. Timestamps in docs tend to be one factor against reproducible
   builds
3. Dragging doc-building stacks into build reqs tends to explode the 
   package set required to build things.


-- 
Matthew Miller

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


Re: Access to github.com for building documentation?

2016-12-29 Thread William Moreno
Please also note the line

needs_sphinx = '1.2

In the file:

https://github.com/fmtlib/fmt/blob/master/doc/conf.py

This can be a issue because Fedora have sphinx 1.4.X
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Access to github.com for building documentation?

2016-12-29 Thread Kevin Kofler
Dave Johansen wrote:
> I'm trying to build the documentation for the fmt library as part of the
> packaging, but it downloads some components from github.com just for
> building the documentation. It fails [1] and upstream is at least
> initially not up for using the system tools [2], so is there a way to make
> this work? Thanks,

You have to patch it downstream to use the system tools. Downloading stuff 
during the build is not going to work, by design.

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


Re: Access to github.com for building documentation?

2016-12-29 Thread William Moreno
El 29/12/2016 9:00 p. m., "Dave Johansen"  escribió:

On Thu, Dec 29, 2016 at 7:47 PM, William Moreno 
wrote:

> Just a wild idea: you can skip the docs!
>
> If the package includes it own documentation and this is to large, it must
> be in a docs sub package , current packaging guidelines do not block a
> package than do no include all docs available upstream, at less I think so.
>

I would like to have the docs include for my own uses. Some of the machines
I work on don't have internet access so being able to install the docs
locally is a big help.


This is new for me, a sphinx package than create a virtual env before call
the sphinx build

Looking at this file:

https://github.com/fmtlib/fmt/blob/master/doc/build.py

You can go to the end of file and see those lines:

if __name__ == '__main__':
  create_build_env()
  build_docs(sys.argv[1])

Just remove the call to the create_build_env() function (with a patch of
even with sed in %prep) and you can test to build with the system sphinx
version, this way at less you should now if the docs build with system lib,
having said that, this is Fedora! You will always will find a really up to
date version of sphinx in the Fedora repo!
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Access to github.com for building documentation?

2016-12-29 Thread Dave Johansen
On Thu, Dec 29, 2016 at 7:47 PM, William Moreno 
wrote:

> Just a wild idea: you can skip the docs!
>
> If the package includes it own documentation and this is to large, it must
> be in a docs sub package , current packaging guidelines do not block a
> package than do no include all docs available upstream, at less I think so.
>

I would like to have the docs include for my own uses. Some of the machines
I work on don't have internet access so being able to install the docs
locally is a big help.

Currently, upstream has a release that includes the prebuilt documentation
and I've been using that but I was hoping to be able to build it as part of
packaging.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Access to github.com for building documentation?

2016-12-29 Thread William Moreno
Just a wild idea: you can skip the docs!

If the package includes it own documentation and this is to large, it must
be in a docs sub package , current packaging guidelines do not block a
package than do no include all docs available upstream, at less I think so.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Access to github.com for building documentation?

2016-12-29 Thread Dave Johansen
I'm trying to build the documentation for the fmt library as part of the
packaging, but it downloads some components from github.com just for
building the documentation. It fails [1] and upstream is at least initially
not up for using the system tools [2], so is there a way to make this work?
Thanks,
Dave

1: https://koji.fedoraproject.org/koji/taskinfo?taskID=17110916
2: https://github.com/fmtlib/fmt/issues/443
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[Bug 1409168] New: perl-Text-ASCIITable-0.22 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409168

Bug ID: 1409168
   Summary: perl-Text-ASCIITable-0.22 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Text-ASCIITable
  Keywords: FutureFeature, Triaged
  Assignee: emman...@seyman.fr
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: emman...@seyman.fr, perl-devel@lists.fedoraproject.org



Latest upstream release: 0.22
Current version/release in rawhide: 0.20-14.fc26
URL: http://search.cpan.org/dist/Text-ASCIITable/

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

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/3431/

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


[Bug 1406586] perl-PDF-Create-1.41 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1406586



--- Comment #5 from Upstream Release Monitoring 
 ---
Patching or scratch build for perl-PDF-Create-1.39 failed.

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


[Bug 1406586] perl-PDF-Create-1.41 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1406586



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

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


[Bug 1409166] New: perl-Test-Timer-0.16 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409166

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



Latest upstream release: 0.16
Current version/release in rawhide: 0.15-1.fc26
URL: http://search.cpan.org/dist/Test-Timer/

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

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/11403/

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


[Bug 1406586] perl-PDF-Create-1.41 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1406586



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

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


[Bug 1406586] perl-PDF-Create-1.41 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1406586

Upstream Release Monitoring  
changed:

   What|Removed |Added

Summary|perl-PDF-Create-1.40 is |perl-PDF-Create-1.41 is
   |available   |available



--- Comment #4 from Upstream Release Monitoring 
 ---
Latest upstream release: 1.41
Current version/release in rawhide: 1.39-1.fc26
URL: http://search.cpan.org/dist/PDF-Create/

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

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/5987/

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


[Bug 1409162] perl-Net-DNS-1.07 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409162



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

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


[Bug 1409162] perl-Net-DNS-1.07 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409162



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

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


[Bug 1409162] perl-Net-DNS-1.07 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409162



--- Comment #1 from Upstream Release Monitoring 
 ---
Patching or scratch build for perl-Net-DNS-1.06 failed.

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


Re: noarch package built differently...

2016-12-29 Thread Richard W.M. Jones
On Fri, Dec 30, 2016 at 12:09:24AM +, Richard W.M. Jones wrote:
> On Mon, Dec 26, 2016 at 09:59:54AM +0100, Michael Schwendt wrote:
> > On Sun, 25 Dec 2016 21:33:52 -0500, David Muse wrote:
> > 
> > > I guess noarch packages shouldn't have any arch-specific dependencies. 
> > > Is that correct?
> > 
> > Yes.
> 
> Umm really?  Can you explain exactly what's wrong with this?
> 
> I think the answer should be _no_ (ie. it's fine for noarch packages
> to have arch-ful Requires).  Of course the dependencies must be
> available otherwise the noarch package cannot be installed.

OK, maybe you're talking about having %{_isa} in the spec file, ie:

  %package doc
  ...
  BuildArch: noarch
  Requires: %{name}%{?_isa} = %{version}-%{release}

?  That would make the dependency include "(x86-64)" (or whatever
arch the noarch package built on) and that would be wrong.

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-p2v converts physical machines to virtual machines.  Boot with a
live CD or over the network (PXE) and turn machines into KVM guests.
http://libguestfs.org/virt-v2v
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[Bug 1409156] perl-Ham-Reference-QRZ-0.04 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409156



--- Comment #1 from Upstream Release Monitoring 
 ---
Patching or scratch build for perl-Ham-Reference-QRZ-0.03 failed.

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


[Bug 1408587] perl-App-cpm-0.296 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1408587

Upstream Release Monitoring  
changed:

   What|Removed |Added

Summary|perl-App-cpm-0.295 is   |perl-App-cpm-0.296 is
   |available   |available



--- Comment #1 from Upstream Release Monitoring 
 ---
Latest upstream release: 0.296
Current version/release in rawhide: 0.294-1.fc26
URL: http://search.cpan.org/dist/App-cpm/

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

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/8399/

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


[Bug 1409162] New: perl-Net-DNS-1.07 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409162

Bug ID: 1409162
   Summary: perl-Net-DNS-1.07 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Net-DNS
  Keywords: FutureFeature, Triaged
  Assignee: pwout...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
pwout...@redhat.com



Latest upstream release: 1.07
Current version/release in rawhide: 1.06-3.fc25
URL: http://search.cpan.org/dist/Net-DNS/

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

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/3147/

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


[Bug 1409156] New: perl-Ham-Reference-QRZ-0.04 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409156

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



Latest upstream release: 0.04
Current version/release in rawhide: 0.03-14.fc25
URL: http://search.cpan.org/dist/Ham-Reference-QRZ/

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

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/2951/

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


[Bug 1409156] perl-Ham-Reference-QRZ-0.04 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409156



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

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


[Bug 1409156] perl-Ham-Reference-QRZ-0.04 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409156



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

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


[Bug 1409160] New: perl-Mojolicious-7.13 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409160

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



Latest upstream release: 7.13
Current version/release in rawhide: 7.12-1.fc26
URL: http://mojolicio.us/

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

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/5966/

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


Re: Mock: cmake having trouble finding libclaw

2016-12-29 Thread Orion Poplawski
On 12/29/2016 11:23 AM, Michael Schwendt wrote:
> It may be necessary to debug the cmake libclaw detection script.
> 
> claw-config is broken, btw, and it's likely that this has not been
> caught during review:
> 
>   $ claw-config --libs
>   -L/usr/lib 
>   $ claw-config application --libs 
>   -L/usr/lib -lclaw_application -lclaw_logger
>   $ claw-config dynamic_library --libs
>   -L/usr/lib -lclaw_dynamic_library -ldl
> 
> Wrong on x86_64.
> And odd to relink with libdl as libclaw_dynamic_library is linked with
> libdl already.
> 
> 
>  $ claw-config all --libs 
> -L/usr/lib -lclaw_application -lclaw_logger -lclaw_dynamic_library -ldl
> -lclaw_configuration_file -lclaw_graphic -lpng -lz -ljpeg -lclaw_logger
> -lclaw_net -lclaw_tween
> 
> Is relinking with all those non-libclaw libs necessary? It seems they are
> for linking statically only.
> 
> 
>   $ claw-config --cflags
>   -I/usr/include/ -DCLAW_JPEG_SUPPORT -DCLAW_PNG_SUPPORT
> 
> This -I parameter is not only superfluous (because /usr/include is
> standard search path), but may also be harmful, since it alters the
> search order.
> 
> Further packaging issues:
> 
>   $ rpmls libclaw|grep claw1
>   drwxr-xr-x  /usr/share/doc/libclaw1
>   -rw-r--r--  /usr/share/doc/libclaw1/COPYING
> 
> Why "libclaw1" and not %name?
> No %license usage.
> ___
> devel mailing list -- devel@lists.fedoraproject.org
> To unsubscribe send an email to devel-le...@lists.fedoraproject.org
> 

I've hopefully fixed most of these issues including the initial cmake issue
with this build:

* Thu Dec 29 2016 Orion Poplawski  - 1.7.4-16
- Install cmake files in arch specific dirs
- Put documentation into separate noarch sub-package
- Require needed devel packages in -devel sub-package
- Use %license

https://koji.fedoraproject.org/koji/taskinfo?taskID=17109344

I did not address the various -l library output of claw-config or
-I/usr/include, nor the "libclaw1" name.

Initial issue was caused by the claw cmake file refusing to "find" libclaw if
any of the dependent packages (libjpeg/libpng/boost) were not found.
libclaw-devel now requires them.

-- 
Orion Poplawski
Technical Manager  720-772-5637
NWRA, Boulder/CoRA Office FAX: 303-415-9702
3380 Mitchell Lane   or...@nwra.com
Boulder, CO 80301   http://www.nwra.com
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[Bug 1409151] New: perl-DB_File-1.840 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409151

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



Latest upstream release: 1.840
Current version/release in rawhide: 1.838-2.fc25
URL: http://search.cpan.org/dist/DB_File/

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

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/2803/

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


[Bug 1409150] New: perl-BZ-Client-4.4 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409150

Bug ID: 1409150
   Summary: perl-BZ-Client-4.4 is available
   Product: Fedora
   Version: rawhide
 Component: perl-BZ-Client
  Keywords: FutureFeature, Triaged
  Assignee: emman...@seyman.fr
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: emman...@seyman.fr, perl-devel@lists.fedoraproject.org



Latest upstream release: 4.4
Current version/release in rawhide: 1.072-3.fc25
URL: http://search.cpan.org/dist/BZ-Client/

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

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/7964/

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


Re: noarch package built differently...

2016-12-29 Thread Richard W.M. Jones
On Mon, Dec 26, 2016 at 09:59:54AM +0100, Michael Schwendt wrote:
> On Sun, 25 Dec 2016 21:33:52 -0500, David Muse wrote:
> 
> > I guess noarch packages shouldn't have any arch-specific dependencies. 
> > Is that correct?
> 
> Yes.

Umm really?  Can you explain exactly what's wrong with this?

I think the answer should be _no_ (ie. it's fine for noarch packages
to have arch-ful Requires).  Of course the dependencies must be
available otherwise the noarch package cannot be installed.

A typical example would be a -doc subpackage (noarch, built once and
can be copied across architectures) documenting a C library (arch-ful,
and built on each architecture).

Unless you're talking about something different ...

Rich.

> Noarch packages may be built on any machine of any arch, they may be
> copied to any repository for any arch, and they are supposed to be usable
> with any arch. Unless "ExcludeArch" is set.
> ___
> devel mailing list -- devel@lists.fedoraproject.org
> To unsubscribe send an email to devel-le...@lists.fedoraproject.org

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-builder quickly builds VMs from scratch
http://libguestfs.org/virt-builder.1.html
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[Bug 1409088] perl-IO-Compress-2.070 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409088

Paul Howarth  changed:

   What|Removed |Added

 Status|NEW |CLOSED
   Fixed In Version||perl-IO-Compress-2.070-1.fc
   ||26
 Resolution|--- |RAWHIDE
   Assignee|jples...@redhat.com |p...@city-fan.org
Last Closed||2016-12-29 19:09:05



--- Comment #1 from Paul Howarth  ---
Build done:
https://koji.fedoraproject.org/koji/taskinfo?taskID=17107587

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


pghmcfc pushed to perl-IO-Compress-Lzma (master). "Update to 2.070 (..more)"

2016-12-29 Thread notifications
From 5d11364dca48798e8696ef5754e071a2272aa7aa Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 18:24:23 +
Subject: Update to 2.070

- New upstream release 2.070 (no changes)
- Simplify find command using -delete
---
 perl-IO-Compress-Lzma.spec | 12 
 sources|  2 +-
 2 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/perl-IO-Compress-Lzma.spec b/perl-IO-Compress-Lzma.spec
index 9e8e030..71f8ca4 100644
--- a/perl-IO-Compress-Lzma.spec
+++ b/perl-IO-Compress-Lzma.spec
@@ -1,6 +1,6 @@
 Name:  perl-IO-Compress-Lzma
-Version:   2.069
-Release:   3%{?dist}
+Version:   2.070
+Release:   1%{?dist}
 Summary:   Read and write lzma compressed data
 License:   GPL+ or Artistic
 Group: Development/Libraries
@@ -71,8 +71,8 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-%{_fixperms} %{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+%{_fixperms} -c %{buildroot}
 
 %check
 make test
@@ -86,6 +86,10 @@ make test
 %{_mandir}/man3/IO::Uncompress::UnXz.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 2.070-1
+- Update to 2.070 (no changes)
+- Simplify find command using -delete
+
 * Sun May 15 2016 Jitka Plesnikova  - 2.069-3
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index f6331c9..99f2236 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6bb32784e0f0c7387080ca20b4135a57  IO-Compress-Lzma-2.069.tar.gz
+SHA512 (IO-Compress-Lzma-2.070.tar.gz) = 
4524070820b3854b8a2085024bfff6464a005c9b7c2783a25703dd0bf53d2d2426e31e90860ff4cbbd8932dbcfdc21d8058619c1716be634f891ff34abbd3c46
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-IO-Compress-Lzma.git/commit/?h=master=5d11364dca48798e8696ef5754e071a2272aa7aa
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-IO-Compress (perl-IO-Compress-2.070-1.fc26). "Update to 2.070 (..more)"

2016-12-29 Thread notifications
From f4847d991b3f4e7f92b692c38962d807eb3233d4 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 18:18:24 +
Subject: Update to 2.070

- New upstream release 2.070
  - Fix prototype errors while lazy loading File::GlobMapper (CPAN RT#117675)
  - zipdetails: Avoid loading optional modules from default . (CPAN RT#116538,
CVE-2016-1238)
- Simplify find command using -delete
---
 ...-1238-avoid-loading-optional-modules-from.patch | 23 --
 perl-IO-Compress.spec  | 18 ++---
 sources|  2 +-
 3 files changed, 12 insertions(+), 31 deletions(-)
 delete mode 100644 
IO-Compress-2.069-CVE-2016-1238-avoid-loading-optional-modules-from.patch

diff --git 
a/IO-Compress-2.069-CVE-2016-1238-avoid-loading-optional-modules-from.patch 
b/IO-Compress-2.069-CVE-2016-1238-avoid-loading-optional-modules-from.patch
deleted file mode 100644
index ec3c056..000
--- a/IO-Compress-2.069-CVE-2016-1238-avoid-loading-optional-modules-from.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -ru IO-Compress-2.069-orig/bin/zipdetails IO-Compress-2.069/bin/zipdetails
 IO-Compress-2.069-orig/bin/zipdetails  2014-01-31 07:52:56.0 
+1100
-+++ IO-Compress-2.069/bin/zipdetails   2016-07-28 10:10:17.812926303 +1000
-@@ -5,6 +5,7 @@
- # Display info on the contents of a Zip file
- #
- 
-+BEGIN { pop @INC if $INC[-1] eq '.' }
- use strict;
- use warnings ;
- 
-diff -ru IO-Compress-2.069-orig/lib/IO/Uncompress/AnyUncompress.pm 
IO-Compress-2.069/lib/IO/Uncompress/AnyUncompress.pm
 IO-Compress-2.069-orig/lib/IO/Uncompress/AnyUncompress.pm  2015-09-27 
04:34:31.0 +1000
-+++ IO-Compress-2.069/lib/IO/Uncompress/AnyUncompress.pm   2016-07-28 
10:08:45.064332089 +1000
-@@ -27,6 +27,8 @@
- 
- BEGIN
- {
-+   local @INC = @INC;
-+   pop @INC if $INC[-1] eq '.';
-eval ' use IO::Uncompress::Adapter::Inflate 2.069 ;';
-eval ' use IO::Uncompress::Adapter::Bunzip2 2.069 ;';
-eval ' use IO::Uncompress::Adapter::LZO 2.069 ;';
diff --git a/perl-IO-Compress.spec b/perl-IO-Compress.spec
index 6a3afd4..d4a9398 100644
--- a/perl-IO-Compress.spec
+++ b/perl-IO-Compress.spec
@@ -2,15 +2,13 @@
 %{?perl_default_filter}
 
 Name:   perl-IO-Compress
-Version:2.069
-Release:367%{?dist}
+Version:2.070
+Release:1%{?dist}
 Summary:Read and write compressed data
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/IO-Compress/
 Source0:
http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/IO-Compress-%{version}.tar.gz
-# Avoid loading optional modules from default . (CVE-2016-1238)
-Patch0: 
IO-Compress-2.069-CVE-2016-1238-avoid-loading-optional-modules-from.patch
 BuildArch:  noarch
 # Module Build
 BuildRequires:  coreutils
@@ -83,7 +81,6 @@ included with the IO-Compress distribution:
 
 %prep
 %setup -q -n IO-Compress-%{version}
-%patch0 -p1
 
 # Remove spurious exec permissions
 chmod -c -x lib/IO/Uncompress/{Adapter/Identity,RawInflate}.pm
@@ -99,8 +96,8 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=%{buildroot} INSTALLDIRS=perl
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-%{_fixperms} %{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+%{_fixperms} -c %{buildroot}
 
 %check
 # Build using "--without long_tests" to avoid very long tests
@@ -134,6 +131,13 @@ make test 
COMPRESS_ZLIB_RUN_%{?with_long_tests:ALL}%{!?with_long_tests:MOST}=1
 %{_mandir}/man3/IO::Uncompress::*.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 2.070-1
+- Update to 2.070
+  - Fix prototype errors while lazy loading File::GlobMapper (CPAN RT#117675)
+  - zipdetails: Avoid loading optional modules from default . (CPAN RT#116538,
+CVE-2016-1238)
+- Simplify find command using -delete
+
 * Tue Aug 02 2016 Jitka Plesnikova  - 2.069-367
 - Avoid loading optional modules from default . (CVE-2016-1238)
 
diff --git a/sources b/sources
index f429917..be19d7f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b26925161e3f01919f60344d1bbb49c4  IO-Compress-2.069.tar.gz
+SHA512 (IO-Compress-2.070.tar.gz) = 
f0c269174ac4708d2a2434ad9ad29d3f35e967b3084caba102b66352ce978ba27c4579a7e69bddbe3ed41853f6db2c1ca53880ce313995ad813ac6b96dd67748
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-IO-Compress.git/commit/?h=perl-IO-Compress-2.070-1.fc26=f4847d991b3f4e7f92b692c38962d807eb3233d4
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


Re: Packagers - Flag day 2016 Important changes

2016-12-29 Thread Kevin Fenzi
On Tue, 27 Dec 2016 19:13:39 -0600
Michael Catanzaro  wrote:

> Hi,
> 
> I tried again today, but still having problems. When I try from the
> command line:
> 
> $ kinit catanz...@fedoraproject.org
> Password for catanz...@fedoraproject.org: 
> kinit: Password incorrect while getting initial credentials
> 
> But I know my password is correct, because I just used it to log into
> Bodhi.
> 
> When trying with gnome-online-accounts, I get this error:
> 
> "Error connecting to enterprise identity server: Decrypt integrity
> check failed"

So, things to check: 

* Does your /etc/krb5.conf file have a
includedir /etc/krb5.conf.d/
at the top?

* Does your /etc/krb5.conf file have: 
 rdns = false

(it might be you have a /etc/krb5.conf.rpmnew if you modified the file)

If those things don't work, please open a infrastructure ticket or stop
by #fedora-admin and we can get it tracked down. 

kevin


pgpml6odmiZYN.pgp
Description: OpenPGP digital signature
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: HEADS UP: eigen-3.3.0 update

2016-12-29 Thread Jerry James
On Wed, Dec 28, 2016 at 11:11 PM, Rich Mattes  wrote:
> > polymake-0:3.0r2-1.fc25.src
> FTBFS, segfault in ppc64.  Attempting a rebuilt in case it was a
> transient error.

It is not a transient error.  It happens every time.  I have had no
luck at all in tracking down the source of the problem.  I would
appreciate any help that anybody can offer in figuring out what is
going wrong there.
-- 
Jerry James
http://www.jamezone.org/
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


pghmcfc uploaded IO-Compress-Lzma-2.070.tar.gz for perl-IO-Compress-Lzma

2016-12-29 Thread notifications
4524070820b3854b8a2085024bfff6464a005c9b7c2783a25703dd0bf53d2d2426e31e90860ff4cbbd8932dbcfdc21d8058619c1716be634f891ff34abbd3c46
  IO-Compress-Lzma-2.070.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-IO-Compress-Lzma/IO-Compress-Lzma-2.070.tar.gz/sha512/4524070820b3854b8a2085024bfff6464a005c9b7c2783a25703dd0bf53d2d2426e31e90860ff4cbbd8932dbcfdc21d8058619c1716be634f891ff34abbd3c46/IO-Compress-Lzma-2.070.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


Re: Mock: cmake having trouble finding libclaw

2016-12-29 Thread Michael Schwendt
It may be necessary to debug the cmake libclaw detection script.

claw-config is broken, btw, and it's likely that this has not been
caught during review:

  $ claw-config --libs
  -L/usr/lib 
  $ claw-config application --libs 
  -L/usr/lib -lclaw_application -lclaw_logger
  $ claw-config dynamic_library --libs
  -L/usr/lib -lclaw_dynamic_library -ldl

Wrong on x86_64.
And odd to relink with libdl as libclaw_dynamic_library is linked with
libdl already.


 $ claw-config all --libs 
-L/usr/lib -lclaw_application -lclaw_logger -lclaw_dynamic_library -ldl
-lclaw_configuration_file -lclaw_graphic -lpng -lz -ljpeg -lclaw_logger
-lclaw_net -lclaw_tween

Is relinking with all those non-libclaw libs necessary? It seems they are
for linking statically only.


  $ claw-config --cflags
  -I/usr/include/ -DCLAW_JPEG_SUPPORT -DCLAW_PNG_SUPPORT

This -I parameter is not only superfluous (because /usr/include is
standard search path), but may also be harmful, since it alters the
search order.

Further packaging issues:

  $ rpmls libclaw|grep claw1
  drwxr-xr-x  /usr/share/doc/libclaw1
  -rw-r--r--  /usr/share/doc/libclaw1/COPYING

Why "libclaw1" and not %name?
No %license usage.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Ref-Util (perl-Ref-Util-0.110-1.fc26). "Update to 0.110 (..more)"

2016-12-29 Thread notifications
From 8aff749b93d6823fed6f72cd8ac02744253a4ac9 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 18:09:00 +
Subject: Update to 0.110

- New upstream release 0.110
  - Fix support of 5.8 (GH#29, GH#34)
  - Additional optimizations
  - More extensive test suite
---
 perl-Ref-Util.spec | 12 +---
 sources|  2 +-
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/perl-Ref-Util.spec b/perl-Ref-Util.spec
index aced065..2b287c8 100644
--- a/perl-Ref-Util.spec
+++ b/perl-Ref-Util.spec
@@ -1,5 +1,5 @@
 Name:  perl-Ref-Util
-Version:   0.101
+Version:   0.110
 Release:   1%{?dist}
 Summary:   Utility functions for checking references
 License:   MIT
@@ -22,7 +22,7 @@ BuildRequires:perl(XSLoader)
 # Test Suite
 BuildRequires: perl(B::Concise)
 BuildRequires: perl(constant)
-BuildRequires: perl(Test::More)
+BuildRequires: perl(Test::More) >= 0.94
 # Optional Tests
 BuildRequires: perl(Readonly)
 # Runtime
@@ -46,7 +46,7 @@ make %{?_smp_mflags}
 make pure_install DESTDIR=%{buildroot}
 find %{buildroot} -type f -name .packlist -delete
 find %{buildroot} -type f -name '*.bs' -empty -delete
-%{_fixperms} %{buildroot}
+%{_fixperms} -c %{buildroot}
 
 %check
 make test
@@ -63,6 +63,12 @@ make test
 %{_mandir}/man3/Ref::Util.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 0.110-1
+- Update to 0.110
+  - Fix support of 5.8 (GH#29, GH#34)
+  - Additional optimizations
+  - More extensive test suite
+
 * Mon Aug 29 2016 Paul Howarth  - 0.101-1
 - Update to 0.101
   - A test accidentally added a dependency on Readonly.pm - fixed! (GH#30)
diff --git a/sources b/sources
index dbca10a..9be5e39 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d836d1e2e9a730111b9dbccbc4e6faa8  Ref-Util-0.101.tar.gz
+SHA512 (Ref-Util-0.110.tar.gz) = 
133dde47b344e7cffc4a3fa59393178b84355483c4336e7f91f9948a1d164e74e8bce508be0d563ec6515750659681c9c42cacb13616a5d46763e6dd2e7fd76b
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Ref-Util.git/commit/?h=perl-Ref-Util-0.110-1.fc26=8aff749b93d6823fed6f72cd8ac02744253a4ac9
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-IO-Compress (master). "Update to 2.070 (..more)"

2016-12-29 Thread notifications
From f4847d991b3f4e7f92b692c38962d807eb3233d4 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 18:18:24 +
Subject: Update to 2.070

- New upstream release 2.070
  - Fix prototype errors while lazy loading File::GlobMapper (CPAN RT#117675)
  - zipdetails: Avoid loading optional modules from default . (CPAN RT#116538,
CVE-2016-1238)
- Simplify find command using -delete
---
 ...-1238-avoid-loading-optional-modules-from.patch | 23 --
 perl-IO-Compress.spec  | 18 ++---
 sources|  2 +-
 3 files changed, 12 insertions(+), 31 deletions(-)
 delete mode 100644 
IO-Compress-2.069-CVE-2016-1238-avoid-loading-optional-modules-from.patch

diff --git 
a/IO-Compress-2.069-CVE-2016-1238-avoid-loading-optional-modules-from.patch 
b/IO-Compress-2.069-CVE-2016-1238-avoid-loading-optional-modules-from.patch
deleted file mode 100644
index ec3c056..000
--- a/IO-Compress-2.069-CVE-2016-1238-avoid-loading-optional-modules-from.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -ru IO-Compress-2.069-orig/bin/zipdetails IO-Compress-2.069/bin/zipdetails
 IO-Compress-2.069-orig/bin/zipdetails  2014-01-31 07:52:56.0 
+1100
-+++ IO-Compress-2.069/bin/zipdetails   2016-07-28 10:10:17.812926303 +1000
-@@ -5,6 +5,7 @@
- # Display info on the contents of a Zip file
- #
- 
-+BEGIN { pop @INC if $INC[-1] eq '.' }
- use strict;
- use warnings ;
- 
-diff -ru IO-Compress-2.069-orig/lib/IO/Uncompress/AnyUncompress.pm 
IO-Compress-2.069/lib/IO/Uncompress/AnyUncompress.pm
 IO-Compress-2.069-orig/lib/IO/Uncompress/AnyUncompress.pm  2015-09-27 
04:34:31.0 +1000
-+++ IO-Compress-2.069/lib/IO/Uncompress/AnyUncompress.pm   2016-07-28 
10:08:45.064332089 +1000
-@@ -27,6 +27,8 @@
- 
- BEGIN
- {
-+   local @INC = @INC;
-+   pop @INC if $INC[-1] eq '.';
-eval ' use IO::Uncompress::Adapter::Inflate 2.069 ;';
-eval ' use IO::Uncompress::Adapter::Bunzip2 2.069 ;';
-eval ' use IO::Uncompress::Adapter::LZO 2.069 ;';
diff --git a/perl-IO-Compress.spec b/perl-IO-Compress.spec
index 6a3afd4..d4a9398 100644
--- a/perl-IO-Compress.spec
+++ b/perl-IO-Compress.spec
@@ -2,15 +2,13 @@
 %{?perl_default_filter}
 
 Name:   perl-IO-Compress
-Version:2.069
-Release:367%{?dist}
+Version:2.070
+Release:1%{?dist}
 Summary:Read and write compressed data
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/IO-Compress/
 Source0:
http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/IO-Compress-%{version}.tar.gz
-# Avoid loading optional modules from default . (CVE-2016-1238)
-Patch0: 
IO-Compress-2.069-CVE-2016-1238-avoid-loading-optional-modules-from.patch
 BuildArch:  noarch
 # Module Build
 BuildRequires:  coreutils
@@ -83,7 +81,6 @@ included with the IO-Compress distribution:
 
 %prep
 %setup -q -n IO-Compress-%{version}
-%patch0 -p1
 
 # Remove spurious exec permissions
 chmod -c -x lib/IO/Uncompress/{Adapter/Identity,RawInflate}.pm
@@ -99,8 +96,8 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=%{buildroot} INSTALLDIRS=perl
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-%{_fixperms} %{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+%{_fixperms} -c %{buildroot}
 
 %check
 # Build using "--without long_tests" to avoid very long tests
@@ -134,6 +131,13 @@ make test 
COMPRESS_ZLIB_RUN_%{?with_long_tests:ALL}%{!?with_long_tests:MOST}=1
 %{_mandir}/man3/IO::Uncompress::*.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 2.070-1
+- Update to 2.070
+  - Fix prototype errors while lazy loading File::GlobMapper (CPAN RT#117675)
+  - zipdetails: Avoid loading optional modules from default . (CPAN RT#116538,
+CVE-2016-1238)
+- Simplify find command using -delete
+
 * Tue Aug 02 2016 Jitka Plesnikova  - 2.069-367
 - Avoid loading optional modules from default . (CVE-2016-1238)
 
diff --git a/sources b/sources
index f429917..be19d7f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b26925161e3f01919f60344d1bbb49c4  IO-Compress-2.069.tar.gz
+SHA512 (IO-Compress-2.070.tar.gz) = 
f0c269174ac4708d2a2434ad9ad29d3f35e967b3084caba102b66352ce978ba27c4579a7e69bddbe3ed41853f6db2c1ca53880ce313995ad813ac6b96dd67748
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-IO-Compress.git/commit/?h=master=f4847d991b3f4e7f92b692c38962d807eb3233d4
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc uploaded IO-Compress-2.070.tar.gz for perl-IO-Compress

2016-12-29 Thread notifications
f0c269174ac4708d2a2434ad9ad29d3f35e967b3084caba102b66352ce978ba27c4579a7e69bddbe3ed41853f6db2c1ca53880ce313995ad813ac6b96dd67748
  IO-Compress-2.070.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-IO-Compress/IO-Compress-2.070.tar.gz/sha512/f0c269174ac4708d2a2434ad9ad29d3f35e967b3084caba102b66352ce978ba27c4579a7e69bddbe3ed41853f6db2c1ca53880ce313995ad813ac6b96dd67748/IO-Compress-2.070.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Compress-Raw-Lzma (perl-Compress-Raw-Lzma-2.070-1.fc26). "Update to 2.070 (..more)"

2016-12-29 Thread notifications
From c5c09bfce1eef9531870bbdc270e71eaa88d0b00 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 17:51:21 +
Subject: Update to 2.070

- New upstream release 2.070
  - Fix wrong FLAG_APPEND_OUTPUT logic (CPAN RT#119207)
- Simplify find commands using -empty and -delete
---
 perl-Compress-Raw-Lzma.spec | 15 ++-
 sources |  2 +-
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/perl-Compress-Raw-Lzma.spec b/perl-Compress-Raw-Lzma.spec
index b992132..6340b89 100644
--- a/perl-Compress-Raw-Lzma.spec
+++ b/perl-Compress-Raw-Lzma.spec
@@ -1,6 +1,6 @@
 Name:  perl-Compress-Raw-Lzma
-Version:   2.069
-Release:   4%{?dist}
+Version:   2.070
+Release:   1%{?dist}
 Summary:   Low-level interface to lzma compression library
 Group: Development/Libraries
 License:   GPL+ or Artistic
@@ -61,9 +61,9 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
-%{_fixperms} %{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+find %{buildroot} -type f -name '*.bs' -empty -delete
+%{_fixperms} -c %{buildroot}
 
 %check
 make test
@@ -75,6 +75,11 @@ make test
 %{_mandir}/man3/Compress::Raw::Lzma.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 2.070-1
+- Update to 2.070
+  - Fix wrong FLAG_APPEND_OUTPUT logic (CPAN RT#119207)
+- Simplify find commands using -empty and -delete
+
 * Sun May 15 2016 Jitka Plesnikova  - 2.069-4
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index 9a0556d..5db86cb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-35f0f7af465fc5919d400fb2e48e277e  Compress-Raw-Lzma-2.069.tar.gz
+SHA512 (Compress-Raw-Lzma-2.070.tar.gz) = 
922f4e4d804ee8feb55719b1a4cf5f1c19348ba700d80ce55d51b5d08096615d1598c36994043cd45661e64e5ae4fac77c52dcc649db283a3554502ee1ba5519
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Compress-Raw-Lzma.git/commit/?h=perl-Compress-Raw-Lzma-2.070-1.fc26=c5c09bfce1eef9531870bbdc270e71eaa88d0b00
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Ref-Util (master). "Update to 0.110 (..more)"

2016-12-29 Thread notifications
From 8aff749b93d6823fed6f72cd8ac02744253a4ac9 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 18:09:00 +
Subject: Update to 0.110

- New upstream release 0.110
  - Fix support of 5.8 (GH#29, GH#34)
  - Additional optimizations
  - More extensive test suite
---
 perl-Ref-Util.spec | 12 +---
 sources|  2 +-
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/perl-Ref-Util.spec b/perl-Ref-Util.spec
index aced065..2b287c8 100644
--- a/perl-Ref-Util.spec
+++ b/perl-Ref-Util.spec
@@ -1,5 +1,5 @@
 Name:  perl-Ref-Util
-Version:   0.101
+Version:   0.110
 Release:   1%{?dist}
 Summary:   Utility functions for checking references
 License:   MIT
@@ -22,7 +22,7 @@ BuildRequires:perl(XSLoader)
 # Test Suite
 BuildRequires: perl(B::Concise)
 BuildRequires: perl(constant)
-BuildRequires: perl(Test::More)
+BuildRequires: perl(Test::More) >= 0.94
 # Optional Tests
 BuildRequires: perl(Readonly)
 # Runtime
@@ -46,7 +46,7 @@ make %{?_smp_mflags}
 make pure_install DESTDIR=%{buildroot}
 find %{buildroot} -type f -name .packlist -delete
 find %{buildroot} -type f -name '*.bs' -empty -delete
-%{_fixperms} %{buildroot}
+%{_fixperms} -c %{buildroot}
 
 %check
 make test
@@ -63,6 +63,12 @@ make test
 %{_mandir}/man3/Ref::Util.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 0.110-1
+- Update to 0.110
+  - Fix support of 5.8 (GH#29, GH#34)
+  - Additional optimizations
+  - More extensive test suite
+
 * Mon Aug 29 2016 Paul Howarth  - 0.101-1
 - Update to 0.101
   - A test accidentally added a dependency on Readonly.pm - fixed! (GH#30)
diff --git a/sources b/sources
index dbca10a..9be5e39 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d836d1e2e9a730111b9dbccbc4e6faa8  Ref-Util-0.101.tar.gz
+SHA512 (Ref-Util-0.110.tar.gz) = 
133dde47b344e7cffc4a3fa59393178b84355483c4336e7f91f9948a1d164e74e8bce508be0d563ec6515750659681c9c42cacb13616a5d46763e6dd2e7fd76b
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Ref-Util.git/commit/?h=master=8aff749b93d6823fed6f72cd8ac02744253a4ac9
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc uploaded Ref-Util-0.110.tar.gz for perl-Ref-Util

2016-12-29 Thread notifications
133dde47b344e7cffc4a3fa59393178b84355483c4336e7f91f9948a1d164e74e8bce508be0d563ec6515750659681c9c42cacb13616a5d46763e6dd2e7fd76b
  Ref-Util-0.110.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Ref-Util/Ref-Util-0.110.tar.gz/sha512/133dde47b344e7cffc4a3fa59393178b84355483c4336e7f91f9948a1d164e74e8bce508be0d563ec6515750659681c9c42cacb13616a5d46763e6dd2e7fd76b/Ref-Util-0.110.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Compress-Raw-Lzma (master). "Update to 2.070 (..more)"

2016-12-29 Thread notifications
From c5c09bfce1eef9531870bbdc270e71eaa88d0b00 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 17:51:21 +
Subject: Update to 2.070

- New upstream release 2.070
  - Fix wrong FLAG_APPEND_OUTPUT logic (CPAN RT#119207)
- Simplify find commands using -empty and -delete
---
 perl-Compress-Raw-Lzma.spec | 15 ++-
 sources |  2 +-
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/perl-Compress-Raw-Lzma.spec b/perl-Compress-Raw-Lzma.spec
index b992132..6340b89 100644
--- a/perl-Compress-Raw-Lzma.spec
+++ b/perl-Compress-Raw-Lzma.spec
@@ -1,6 +1,6 @@
 Name:  perl-Compress-Raw-Lzma
-Version:   2.069
-Release:   4%{?dist}
+Version:   2.070
+Release:   1%{?dist}
 Summary:   Low-level interface to lzma compression library
 Group: Development/Libraries
 License:   GPL+ or Artistic
@@ -61,9 +61,9 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
-%{_fixperms} %{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+find %{buildroot} -type f -name '*.bs' -empty -delete
+%{_fixperms} -c %{buildroot}
 
 %check
 make test
@@ -75,6 +75,11 @@ make test
 %{_mandir}/man3/Compress::Raw::Lzma.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 2.070-1
+- Update to 2.070
+  - Fix wrong FLAG_APPEND_OUTPUT logic (CPAN RT#119207)
+- Simplify find commands using -empty and -delete
+
 * Sun May 15 2016 Jitka Plesnikova  - 2.069-4
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index 9a0556d..5db86cb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-35f0f7af465fc5919d400fb2e48e277e  Compress-Raw-Lzma-2.069.tar.gz
+SHA512 (Compress-Raw-Lzma-2.070.tar.gz) = 
922f4e4d804ee8feb55719b1a4cf5f1c19348ba700d80ce55d51b5d08096615d1598c36994043cd45661e64e5ae4fac77c52dcc649db283a3554502ee1ba5519
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Compress-Raw-Lzma.git/commit/?h=master=c5c09bfce1eef9531870bbdc270e71eaa88d0b00
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc uploaded Compress-Raw-Lzma-2.070.tar.gz for perl-Compress-Raw-Lzma

2016-12-29 Thread notifications
922f4e4d804ee8feb55719b1a4cf5f1c19348ba700d80ce55d51b5d08096615d1598c36994043cd45661e64e5ae4fac77c52dcc649db283a3554502ee1ba5519
  Compress-Raw-Lzma-2.070.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Compress-Raw-Lzma/Compress-Raw-Lzma-2.070.tar.gz/sha512/922f4e4d804ee8feb55719b1a4cf5f1c19348ba700d80ce55d51b5d08096615d1598c36994043cd45661e64e5ae4fac77c52dcc649db283a3554502ee1ba5519/Compress-Raw-Lzma-2.070.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1409085] perl-Compress-Raw-Bzip2-2.070 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409085

Paul Howarth  changed:

   What|Removed |Added

   Assignee|jples...@redhat.com |p...@city-fan.org



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


[Bug 1409086] perl-Compress-Raw-Zlib-2.070 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409086

Paul Howarth  changed:

   What|Removed |Added

 Status|NEW |CLOSED
   Fixed In Version||perl-Compress-Raw-Zlib-2.07
   ||0-1.fc26
 Resolution|--- |RAWHIDE
   Assignee|jples...@redhat.com |p...@city-fan.org
Last Closed||2016-12-29 12:39:41



--- Comment #1 from Paul Howarth  ---
Build done:
https://koji.fedoraproject.org/koji/taskinfo?taskID=17107139

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


pghmcfc pushed to perl-Compress-Raw-Zlib (perl-Compress-Raw-Zlib-2.070-1.fc26). "Update to 2.070 (..more)"

2016-12-29 Thread notifications
From 61784c096722763cc34053b4bc38308c8e13fe5f Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 17:17:06 +
Subject: Update to 2.070

- New upstream release 2.070
  - Fix compilation warning from inflate.c (CPAN RT#107642)
  - Fix wrong FLAG_APPEND logic, analog to Bzip2 (CPAN RT#119007)
- Simplify find commands using -empty and -delete
---
 perl-Compress-Raw-Zlib.spec | 16 +++-
 sources |  2 +-
 2 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/perl-Compress-Raw-Zlib.spec b/perl-Compress-Raw-Zlib.spec
index 5efede9..77e8e68 100644
--- a/perl-Compress-Raw-Zlib.spec
+++ b/perl-Compress-Raw-Zlib.spec
@@ -1,6 +1,6 @@
 Name:   perl-Compress-Raw-Zlib
-Version:2.069
-Release:366%{?dist}
+Version:2.070
+Release:1%{?dist}
 Summary:Low-level interface to the zlib compression library
 # Zlib.xs: (GPL+ or Artistic) and zlib
 # Others:  GPL+ or Artistic
@@ -68,9 +68,9 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} \;
-find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} \;
-%{_fixperms} %{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+find %{buildroot} -type f -name '*.bs' -empty -delete
+%{_fixperms} -c %{buildroot}
 
 %check
 make test COMPRESS_ZLIB_RUN_MOST=1
@@ -82,6 +82,12 @@ make test COMPRESS_ZLIB_RUN_MOST=1
 %{_mandir}/man3/Compress::Raw::Zlib.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 2.070-1
+- Update to 2.070
+  - Fix compilation warning from inflate.c (CPAN RT#107642)
+  - Fix wrong FLAG_APPEND logic, analog to Bzip2 (CPAN RT#119007)
+- Simplify find commands using -empty and -delete
+
 * Wed May 18 2016 Jitka Plesnikova  - 2.069-366
 - Perl 5.24 re-rebuild of bootstrapped packages
 
diff --git a/sources b/sources
index ebeb0c4..31b157b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c1f99178e6e29b0037785afa6d8bbcff  Compress-Raw-Zlib-2.069.tar.gz
+SHA512 (Compress-Raw-Zlib-2.070.tar.gz) = 
cb2b777adecaaa345d0ca38da7ac84a21ab289a3fa8391496c63023057d5d34ecd8a6689f81e38707586a77a255f0cf9dba2530dc1d9778a139b5ee5c355e90e
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Compress-Raw-Zlib.git/commit/?h=perl-Compress-Raw-Zlib-2.070-1.fc26=61784c096722763cc34053b4bc38308c8e13fe5f
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Compress-Raw-Zlib (master). "Update to 2.070 (..more)"

2016-12-29 Thread notifications
From 61784c096722763cc34053b4bc38308c8e13fe5f Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 17:17:06 +
Subject: Update to 2.070

- New upstream release 2.070
  - Fix compilation warning from inflate.c (CPAN RT#107642)
  - Fix wrong FLAG_APPEND logic, analog to Bzip2 (CPAN RT#119007)
- Simplify find commands using -empty and -delete
---
 perl-Compress-Raw-Zlib.spec | 16 +++-
 sources |  2 +-
 2 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/perl-Compress-Raw-Zlib.spec b/perl-Compress-Raw-Zlib.spec
index 5efede9..77e8e68 100644
--- a/perl-Compress-Raw-Zlib.spec
+++ b/perl-Compress-Raw-Zlib.spec
@@ -1,6 +1,6 @@
 Name:   perl-Compress-Raw-Zlib
-Version:2.069
-Release:366%{?dist}
+Version:2.070
+Release:1%{?dist}
 Summary:Low-level interface to the zlib compression library
 # Zlib.xs: (GPL+ or Artistic) and zlib
 # Others:  GPL+ or Artistic
@@ -68,9 +68,9 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} \;
-find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} \;
-%{_fixperms} %{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+find %{buildroot} -type f -name '*.bs' -empty -delete
+%{_fixperms} -c %{buildroot}
 
 %check
 make test COMPRESS_ZLIB_RUN_MOST=1
@@ -82,6 +82,12 @@ make test COMPRESS_ZLIB_RUN_MOST=1
 %{_mandir}/man3/Compress::Raw::Zlib.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 2.070-1
+- Update to 2.070
+  - Fix compilation warning from inflate.c (CPAN RT#107642)
+  - Fix wrong FLAG_APPEND logic, analog to Bzip2 (CPAN RT#119007)
+- Simplify find commands using -empty and -delete
+
 * Wed May 18 2016 Jitka Plesnikova  - 2.069-366
 - Perl 5.24 re-rebuild of bootstrapped packages
 
diff --git a/sources b/sources
index ebeb0c4..31b157b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c1f99178e6e29b0037785afa6d8bbcff  Compress-Raw-Zlib-2.069.tar.gz
+SHA512 (Compress-Raw-Zlib-2.070.tar.gz) = 
cb2b777adecaaa345d0ca38da7ac84a21ab289a3fa8391496c63023057d5d34ecd8a6689f81e38707586a77a255f0cf9dba2530dc1d9778a139b5ee5c355e90e
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Compress-Raw-Zlib.git/commit/?h=master=61784c096722763cc34053b4bc38308c8e13fe5f
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc uploaded Compress-Raw-Zlib-2.070.tar.gz for perl-Compress-Raw-Zlib

2016-12-29 Thread notifications
cb2b777adecaaa345d0ca38da7ac84a21ab289a3fa8391496c63023057d5d34ecd8a6689f81e38707586a77a255f0cf9dba2530dc1d9778a139b5ee5c355e90e
  Compress-Raw-Zlib-2.070.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Compress-Raw-Zlib/Compress-Raw-Zlib-2.070.tar.gz/sha512/cb2b777adecaaa345d0ca38da7ac84a21ab289a3fa8391496c63023057d5d34ecd8a6689f81e38707586a77a255f0cf9dba2530dc1d9778a139b5ee5c355e90e/Compress-Raw-Zlib-2.070.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1409085] perl-Compress-Raw-Bzip2-2.070 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409085

Paul Howarth  changed:

   What|Removed |Added

 Status|NEW |CLOSED
   Fixed In Version||perl-Compress-Raw-Bzip2-2.0
   ||70-1.fc26
 Resolution|--- |RAWHIDE
Last Closed||2016-12-29 12:14:47



--- Comment #1 from Paul Howarth  ---
Build done:
https://koji.fedoraproject.org/koji/taskinfo?taskID=17106873

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


pghmcfc pushed to perl-Compress-Raw-Bzip2 (perl-Compress-Raw-Bzip2-2.070-1.fc26). "Update to 2.070 (..more)"

2016-12-29 Thread notifications
From 246b1e6758ea6a81d96289b310da167e5730e2a2 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 17:03:23 +
Subject: Update to 2.070

- New upstream release 2.070
  - Fix wrong APPEND_OUTPUT logic (CPAN RT#119005, CPAN RT#119141)
  - Fix some gcc warnings (CPAN RT#100817, CPAN RT#105647)
- Simplify find commands using -empty and -delete
---
 perl-Compress-Raw-Bzip2.spec | 16 +++-
 sources  |  2 +-
 2 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/perl-Compress-Raw-Bzip2.spec b/perl-Compress-Raw-Bzip2.spec
index 1de1272..2dccb44 100644
--- a/perl-Compress-Raw-Bzip2.spec
+++ b/perl-Compress-Raw-Bzip2.spec
@@ -1,7 +1,7 @@
 Name:   perl-Compress-Raw-Bzip2
 Summary:Low-level interface to bzip2 compression library
-Version:2.069
-Release:366%{?dist}
+Version:2.070
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Compress-Raw-Bzip2/
@@ -63,9 +63,9 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
-%{_fixperms} %{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+find %{buildroot} -type f -name '*.bs' -empty -delete
+%{_fixperms} -c %{buildroot}
 
 %check
 make test
@@ -77,6 +77,12 @@ make test
 %{_mandir}/man3/Compress::Raw::Bzip2.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 2.070-1
+- Update to 2.070
+  - Fix wrong APPEND_OUTPUT logic (CPAN RT#119005, CPAN RT#119141)
+  - Fix some gcc warnings (CPAN RT#100817, CPAN RT#105647)
+- Simplify find commands using -empty and -delete
+
 * Wed May 18 2016 Jitka Plesnikova  - 2.069-366
 - Perl 5.24 re-rebuild of bootstrapped packages
 
diff --git a/sources b/sources
index 7677f06..2532937 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-18c4312b4fb8b644e9d697803687ea4f  Compress-Raw-Bzip2-2.069.tar.gz
+SHA512 (Compress-Raw-Bzip2-2.070.tar.gz) = 
a8061937b152c81761b5460d7d53306a948f97498cbcdec483c08c1bf5872bf117863993469ea16cac97c0f38a306a3cd728012bb776ebce4de0268dae738890
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Compress-Raw-Bzip2.git/commit/?h=perl-Compress-Raw-Bzip2-2.070-1.fc26=246b1e6758ea6a81d96289b310da167e5730e2a2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Compress-Raw-Bzip2 (master). "Update to 2.070 (..more)"

2016-12-29 Thread notifications
From 246b1e6758ea6a81d96289b310da167e5730e2a2 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 17:03:23 +
Subject: Update to 2.070

- New upstream release 2.070
  - Fix wrong APPEND_OUTPUT logic (CPAN RT#119005, CPAN RT#119141)
  - Fix some gcc warnings (CPAN RT#100817, CPAN RT#105647)
- Simplify find commands using -empty and -delete
---
 perl-Compress-Raw-Bzip2.spec | 16 +++-
 sources  |  2 +-
 2 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/perl-Compress-Raw-Bzip2.spec b/perl-Compress-Raw-Bzip2.spec
index 1de1272..2dccb44 100644
--- a/perl-Compress-Raw-Bzip2.spec
+++ b/perl-Compress-Raw-Bzip2.spec
@@ -1,7 +1,7 @@
 Name:   perl-Compress-Raw-Bzip2
 Summary:Low-level interface to bzip2 compression library
-Version:2.069
-Release:366%{?dist}
+Version:2.070
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Compress-Raw-Bzip2/
@@ -63,9 +63,9 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
-%{_fixperms} %{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+find %{buildroot} -type f -name '*.bs' -empty -delete
+%{_fixperms} -c %{buildroot}
 
 %check
 make test
@@ -77,6 +77,12 @@ make test
 %{_mandir}/man3/Compress::Raw::Bzip2.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 2.070-1
+- Update to 2.070
+  - Fix wrong APPEND_OUTPUT logic (CPAN RT#119005, CPAN RT#119141)
+  - Fix some gcc warnings (CPAN RT#100817, CPAN RT#105647)
+- Simplify find commands using -empty and -delete
+
 * Wed May 18 2016 Jitka Plesnikova  - 2.069-366
 - Perl 5.24 re-rebuild of bootstrapped packages
 
diff --git a/sources b/sources
index 7677f06..2532937 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-18c4312b4fb8b644e9d697803687ea4f  Compress-Raw-Bzip2-2.069.tar.gz
+SHA512 (Compress-Raw-Bzip2-2.070.tar.gz) = 
a8061937b152c81761b5460d7d53306a948f97498cbcdec483c08c1bf5872bf117863993469ea16cac97c0f38a306a3cd728012bb776ebce4de0268dae738890
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Compress-Raw-Bzip2.git/commit/?h=master=246b1e6758ea6a81d96289b310da167e5730e2a2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc uploaded Compress-Raw-Bzip2-2.070.tar.gz for perl-Compress-Raw-Bzip2

2016-12-29 Thread notifications
a8061937b152c81761b5460d7d53306a948f97498cbcdec483c08c1bf5872bf117863993469ea16cac97c0f38a306a3cd728012bb776ebce4de0268dae738890
  Compress-Raw-Bzip2-2.070.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Compress-Raw-Bzip2/Compress-Raw-Bzip2-2.070.tar.gz/sha512/a8061937b152c81761b5460d7d53306a948f97498cbcdec483c08c1bf5872bf117863993469ea16cac97c0f38a306a3cd728012bb776ebce4de0268dae738890/Compress-Raw-Bzip2-2.070.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


Fedora Rawhide-20161229.n.0 compose check report

2016-12-29 Thread Fedora compose checker
Missing expected images:

Cloud_base qcow2 x86_64
Atomic qcow2 x86_64
Cloud_base raw-xz x86_64
Atomic raw-xz x86_64

Failed openQA tests: 10/102 (x86_64), 1/2 (arm)

Old failures (same test failed in Rawhide-20161228.n.0):

ID: 52864   Test: x86_64 Server-dvd-iso server_role_deploy_domain_controller
URL: https://openqa.fedoraproject.org/tests/52864
ID: 52884   Test: x86_64 Workstation-live-iso desktop_update_graphical
URL: https://openqa.fedoraproject.org/tests/52884
ID: 52905   Test: arm Minimal-raw_xz-raw.xz 
install_arm_image_deployment_upload
URL: https://openqa.fedoraproject.org/tests/52905
ID: 52907   Test: x86_64 universal upgrade_desktop_encrypted_64bit
URL: https://openqa.fedoraproject.org/tests/52907
ID: 52918   Test: x86_64 universal install_kickstart_firewall_disabled
URL: https://openqa.fedoraproject.org/tests/52918
ID: 52919   Test: x86_64 universal install_kickstart_firewall_configured
URL: https://openqa.fedoraproject.org/tests/52919
ID: 52928   Test: x86_64 universal install_kickstart_user_creation
URL: https://openqa.fedoraproject.org/tests/52928
ID: 52954   Test: x86_64 universal install_kickstart_hdd
URL: https://openqa.fedoraproject.org/tests/52954
ID: 52960   Test: x86_64 universal install_rescue_encrypted
URL: https://openqa.fedoraproject.org/tests/52960
ID: 52974   Test: x86_64 Server-dvd-iso install_repository_nfs_variation
URL: https://openqa.fedoraproject.org/tests/52974
ID: 52977   Test: x86_64 universal install_kickstart_nfs
URL: https://openqa.fedoraproject.org/tests/52977

Passed openQA tests: 89/102 (x86_64), 17/17 (i386)

New passes (same test did not pass in Rawhide-20161228.n.0):

ID: 52879   Test: x86_64 Workstation-live-iso install_default@uefi
URL: https://openqa.fedoraproject.org/tests/52879
ID: 52889   Test: x86_64 Workstation-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/52889
ID: 52891   Test: i386 Workstation-live-iso install_default
URL: https://openqa.fedoraproject.org/tests/52891
ID: 52901   Test: x86_64 KDE-live-iso desktop_browser
URL: https://openqa.fedoraproject.org/tests/52901
ID: 52912   Test: x86_64 universal upgrade_2_desktop_encrypted_64bit
URL: https://openqa.fedoraproject.org/tests/52912
ID: 52917   Test: x86_64 universal install_cyrillic_language
URL: https://openqa.fedoraproject.org/tests/52917

Skipped openQA tests: 1 of 121

Installed system changes in test i386 Server-boot-iso install_default: 
System load changed from 0.08 to 0.24
Previous test data: https://openqa.fedoraproject.org/tests/52748#downloads
Current test data: https://openqa.fedoraproject.org/tests/52873#downloads

Installed system changes in test i386 Server-dvd-iso install_default: 
System load changed from 0.04 to 0.18
Previous test data: https://openqa.fedoraproject.org/tests/52749#downloads
Current test data: https://openqa.fedoraproject.org/tests/52874#downloads

Installed system changes in test x86_64 Workstation-live-iso 
install_default_upload: 
Mount /run/media/test/Fedora-WS-Live-Rawhide-20161229- appeared since 
previous compose
Mount /run/media/test/Fedora-WS-Live-Rawhide-20161228- disappeared since 
previous compose
System load changed from 0.99 to 0.87
Previous test data: https://openqa.fedoraproject.org/tests/52753#downloads
Current test data: https://openqa.fedoraproject.org/tests/52878#downloads
-- 
Mail generated by check-compose:
https://pagure.io/fedora-qa/check-compose
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Interpreting FAF reports

2016-12-29 Thread Sérgio Basto
BTW 
I received ABRT report for package mlt has reached 100 occurrences 
Packages: mlt
Function: QObject::disconnect(QObject const*, char const*, QObject
const*, char const*)
First occurrence: 2016-12-17
Type: core
Count:100
URL:  
http://retrace.fedoraproject.org/faf/reports/bthash/43f48b90184f02e38f071ebff19966cdb25376cc/

what I can do ? I don't find anything related with mlt package ! 


On Qui, 2016-12-29 at 10:28 +0100, Florian Weimer wrote:
> Any idea what this is about?
> 
>    https://retrace.fedoraproject.org/faf/reports/1154372/
> 
> To me that looks like a combination of several factors.  First of
> all, 
> the backtrace generation likely used incorrect debuginfo data
> because 
> the backtrace is impossible.  Stack corruption is unlikely to yield
> a 
> relatively consistent backtrace—iconv and gconv match up, only the
> nscd 
> and sunrpc functions in the middle do not make sense.
> 
> I got lucky and build ID 25ea1fd961cb2f5a38172614365bd4c1aacb01a6
> refers 
> to the current version of /usr/lib64/gconv/ISO8859-1.so, so I could
> do 
> the disassembly manually.
> 
> The crash is in the gconv function, at address 0xb50:
> 
>   b44:   49 39 d5cmp%rdx,%r13
>   b47:   72 2a   jb b73 
>   b49:   48 89 d3mov%rdx,%rbx
>   b4c:   48 83 c0 01 add$0x1,%rax
>   b50:   0f b6 50 ff movzbl -0x1(%rax),%edx
>   b54:   48 39 c5cmp%rax,%rbp
>   b57:   89 53 fcmov%edx,-0x4(%rbx)
>   b5a:   75 e4   jneb40 
>   b5c:   41 bb 04 00 00 00   mov$0x4,%r11d
>   b62:   e9 1a ff ff ff  jmpq   a81 
>   b67:   66 0f 1f 84 00 00 00nopw   0x0(%rax,%rax,1)
> 
> Experimentation with GDB shows that this is in the part which
> converts 
> from ISO-8859-1, and it is the load from the input buffer.  A crash
> at 
> this point is impossible because we have a bounds check in the gconv 
> implementation framework before this load.
> 
> However, iconv (the command) maps the input file, and something is 
> truncating that file, causing the SIGBUS error.  This is just how
> mmap 
> works in POSIX, unfortunately.
> 
> Is there a way to discover who is submitting these crash reports and 
> what they are trying to do?  I wonder if we should remove the mmap
> from 
> the iconv command, so that we would not crash in this case.
> 
> Florian
> ___
> devel mailing list -- devel@lists.fedoraproject.org
> To unsubscribe send an email to devel-le...@lists.fedoraproject.org
-- 
Sérgio M. B.

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


Broken dependencies: perl-ZMQ-LibZMQ2

2016-12-29 Thread buildsys


perl-ZMQ-LibZMQ2 has broken dependencies in the rawhide tree:
On x86_64:
perl-ZMQ-LibZMQ2-1.09-9.fc25.x86_64 requires libzmq.so.1()(64bit)
On armhfp:
perl-ZMQ-LibZMQ2-1.09-9.fc25.armv7hl requires libzmq.so.1
On ppc64le:
perl-ZMQ-LibZMQ2-1.09-9.fc25.ppc64le requires libzmq.so.1()(64bit)
On aarch64:
perl-ZMQ-LibZMQ2-1.09-9.fc25.aarch64 requires libzmq.so.1()(64bit)
On ppc64:
perl-ZMQ-LibZMQ2-1.09-9.fc25.ppc64 requires libzmq.so.1()(64bit)
On i386:
perl-ZMQ-LibZMQ2-1.09-9.fc25.i686 requires libzmq.so.1
Please resolve this as soon as possible.

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


Broken dependencies: perl-ZMQ-LibZMQ3

2016-12-29 Thread buildsys


perl-ZMQ-LibZMQ3 has broken dependencies in the rawhide tree:
On x86_64:
perl-ZMQ-LibZMQ3-1.19-5.fc25.x86_64 requires libzmq.so.3()(64bit)
On armhfp:
perl-ZMQ-LibZMQ3-1.19-5.fc25.armv7hl requires libzmq.so.3
On ppc64le:
perl-ZMQ-LibZMQ3-1.19-5.fc25.ppc64le requires libzmq.so.3()(64bit)
On aarch64:
perl-ZMQ-LibZMQ3-1.19-5.fc25.aarch64 requires libzmq.so.3()(64bit)
On ppc64:
perl-ZMQ-LibZMQ3-1.19-5.fc25.ppc64 requires libzmq.so.3()(64bit)
On i386:
perl-ZMQ-LibZMQ3-1.19-5.fc25.i686 requires libzmq.so.3
Please resolve this as soon as possible.

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


Broken dependencies: perl-OpenOffice-UNO

2016-12-29 Thread buildsys


perl-OpenOffice-UNO has broken dependencies in the rawhide tree:
On armhfp:
perl-OpenOffice-UNO-0.07-20.fc25.armv7hl requires libuno_cppu.so.3
perl-OpenOffice-UNO-0.07-20.fc25.armv7hl requires 
libuno_cppu.so.3(LIBO_UDK_4.4)
perl-OpenOffice-UNO-0.07-20.fc25.armv7hl requires 
libuno_cppu.so.3(UDK_3.1)
perl-OpenOffice-UNO-0.07-20.fc25.armv7hl requires 
libuno_cppu.so.3(UDK_3_0_0)
perl-OpenOffice-UNO-0.07-20.fc25.armv7hl requires 
libuno_cppuhelpergcc3.so.3
perl-OpenOffice-UNO-0.07-20.fc25.armv7hl requires 
libuno_cppuhelpergcc3.so.3(UDK_3_0_0)
perl-OpenOffice-UNO-0.07-20.fc25.armv7hl requires libuno_sal.so.3
perl-OpenOffice-UNO-0.07-20.fc25.armv7hl requires 
libuno_sal.so.3(UDK_3_0_0)
perl-OpenOffice-UNO-0.07-20.fc25.armv7hl requires 
libuno_salhelpergcc3.so.3
Please resolve this as soon as possible.

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


Broken dependencies: perl-Data-Alias

2016-12-29 Thread buildsys


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

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


Broken dependencies: perl-Alien-ROOT

2016-12-29 Thread buildsys


perl-Alien-ROOT has broken dependencies in the rawhide tree:
On aarch64:
perl-Alien-ROOT-5.34.36.1-2.fc26.noarch requires root-core
On ppc64:
perl-Alien-ROOT-5.34.36.1-2.fc26.noarch requires root-core
On ppc64le:
perl-Alien-ROOT-5.34.36.1-2.fc26.noarch requires root-core
Please resolve this as soon as possible.

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


Broken dependencies: perl-ZeroMQ

2016-12-29 Thread buildsys


perl-ZeroMQ has broken dependencies in the rawhide tree:
On x86_64:
perl-ZeroMQ-0.23-13.fc25.x86_64 requires libzmq.so.1()(64bit)
On armhfp:
perl-ZeroMQ-0.23-13.fc25.armv7hl requires libzmq.so.1
On ppc64le:
perl-ZeroMQ-0.23-13.fc25.ppc64le requires libzmq.so.1()(64bit)
On aarch64:
perl-ZeroMQ-0.23-13.fc25.aarch64 requires libzmq.so.1()(64bit)
On ppc64:
perl-ZeroMQ-0.23-13.fc25.ppc64 requires libzmq.so.1()(64bit)
On i386:
perl-ZeroMQ-0.23-13.fc25.i686 requires libzmq.so.1
Please resolve this as soon as possible.

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


Re: Packages FTBFS with Python 3.6

2016-12-29 Thread Mattias Ellert
ons 2016-12-28 klockan 20:25 +0100 skrev Igor Gnatenko:
> On Wed, Dec 21, 2016 at 12:18 AM, Miro Hrončok 
> wrote:
> > Hi all,
> > We've recently tried to rebuild all Python packages with Python 3.6.
> > However, we currently have bunch of packages that simply fail to build.
> > 
> > As the list contains >200 packages, it would be very helpful, if you
> > (package maintainers) could help us solve the issues, as we cannot go one by
> > one to investigate the issue.
> 
> Attaching current rawhide/koji packages which depend on python 3.5
> instead of 3.6 still.

> root
Fails due to problems generating the debuginfo rpm on aarch64:

https://bugzilla.redhat.com/show_bug.cgi?id=1405570
https://bugzilla.redhat.com/show_bug.cgi?id=1408875

Mattias


smime.p7s
Description: S/MIME cryptographic signature
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[Bug 1409088] New: perl-IO-Compress-2.070 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409088

Bug ID: 1409088
   Summary: perl-IO-Compress-2.070 is available
   Product: Fedora
   Version: rawhide
 Component: perl-IO-Compress
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com, p...@city-fan.org,
perl-devel@lists.fedoraproject.org



Latest upstream release: 2.070
Current version/release in rawhide: 2.069-367.fc26
URL: http://search.cpan.org/dist/IO-Compress/

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

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/2990/

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


[Bug 1409085] New: perl-Compress-Raw-Bzip2-2.070 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409085

Bug ID: 1409085
   Summary: perl-Compress-Raw-Bzip2-2.070 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Compress-Raw-Bzip2
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com, p...@city-fan.org,
perl-devel@lists.fedoraproject.org



Latest upstream release: 2.070
Current version/release in rawhide: 2.069-366.fc25
URL: http://search.cpan.org/dist/Compress-Raw-Bzip2/

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

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/2711/

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


[Bug 1409086] New: perl-Compress-Raw-Zlib-2.070 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1409086

Bug ID: 1409086
   Summary: perl-Compress-Raw-Zlib-2.070 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Compress-Raw-Zlib
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com, p...@city-fan.org,
perl-devel@lists.fedoraproject.org



Latest upstream release: 2.070
Current version/release in rawhide: 2.061-4.el7
URL: http://search.cpan.org/dist/Compress-Raw-Zlib/

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

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/2712/

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


pghmcfc pushed to perl-Modern-Perl (perl-Modern-Perl-1.20161229-1.fc26). "Update to 1.20161229 (..more)"

2016-12-29 Thread notifications
From 32c404e044f94b6c630ede8848c28b45e396282e Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 11:47:26 +
Subject: Update to 1.20161229

- New upstream release 1.20161229
  - Improved VERSION numbering (GH#5)
---
 Modern-Perl-1.20161005-version.patch |  9 -
 perl-Modern-Perl.spec| 13 ++---
 sources  |  2 +-
 3 files changed, 7 insertions(+), 17 deletions(-)
 delete mode 100644 Modern-Perl-1.20161005-version.patch

diff --git a/Modern-Perl-1.20161005-version.patch 
b/Modern-Perl-1.20161005-version.patch
deleted file mode 100644
index 56bd389..000
--- a/Modern-Perl-1.20161005-version.patch
+++ /dev/null
@@ -1,9 +0,0 @@
 lib/Modern/Perl.pm
-+++ lib/Modern/Perl.pm
-@@ -1,5 +1,6 @@
- package Modern::Perl;
- # ABSTRACT: enable all of the features of Modern Perl with one import
-+$Modern::Perl::VERSION = '1.20161005';
- 
- use 5.010_000;
- 
diff --git a/perl-Modern-Perl.spec b/perl-Modern-Perl.spec
index 22daf14..badbcde 100644
--- a/perl-Modern-Perl.spec
+++ b/perl-Modern-Perl.spec
@@ -1,12 +1,11 @@
 Name:   perl-Modern-Perl
-Version:1.20161005
+Version:1.20161229
 Release:1%{?dist}
 Summary:Enable all of the features of Modern Perl with one command
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Modern-Perl/
 Source0:
http://www.cpan.org/authors/id/C/CH/CHROMATIC/Modern-Perl-%{version}.tar.gz
-Patch0: Modern-Perl-1.20161005-version.patch
 BuildArch:  noarch
 # Module Build
 BuildRequires:  coreutils
@@ -34,17 +33,13 @@ and modules.  Wouldn't it be nice to use them all with a 
single command?
 %prep
 %setup -q -n Modern-Perl-%{version}
 
-# Add back in the package version, needed for provides
-# https://github.com/chromatic/Modern-Perl/issues/5
-%patch0
-
 %build
 perl Build.PL --installdirs=vendor
 ./Build
 
 %install
 ./Build install --destdir=%{buildroot} --create_packlist=0
-%{_fixperms} %{buildroot}
+%{_fixperms} -c %{buildroot}
 
 %check
 ./Build test
@@ -56,6 +51,10 @@ perl Build.PL --installdirs=vendor
 %{_mandir}/man3/Modern::Perl.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 1.20161229-1
+- Update to 1.20161229
+  - Improved VERSION numbering (GH#5)
+
 * Thu Oct  6 2016 Paul Howarth  - 1.20161005-1
 - Update to 1.20161005
   - Updated for 2016 release
diff --git a/sources b/sources
index 861b3a3..6074f5d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-660fb7d591a84825ee43475ab5b52889  Modern-Perl-1.20161005.tar.gz
+SHA512 (Modern-Perl-1.20161229.tar.gz) = 
64ed7ea6ec74564fcb06d3e547f12ce8c8a372d8478a6dc47d80d24374cb45097f72c26c86b268c42ebd09b4056b94b21798d7d1b51d82dec672f9357c1d51b9
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Modern-Perl.git/commit/?h=perl-Modern-Perl-1.20161229-1.fc26=32c404e044f94b6c630ede8848c28b45e396282e
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Modern-Perl (master). "Update to 1.20161229 (..more)"

2016-12-29 Thread notifications
From 32c404e044f94b6c630ede8848c28b45e396282e Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 29 Dec 2016 11:47:26 +
Subject: Update to 1.20161229

- New upstream release 1.20161229
  - Improved VERSION numbering (GH#5)
---
 Modern-Perl-1.20161005-version.patch |  9 -
 perl-Modern-Perl.spec| 13 ++---
 sources  |  2 +-
 3 files changed, 7 insertions(+), 17 deletions(-)
 delete mode 100644 Modern-Perl-1.20161005-version.patch

diff --git a/Modern-Perl-1.20161005-version.patch 
b/Modern-Perl-1.20161005-version.patch
deleted file mode 100644
index 56bd389..000
--- a/Modern-Perl-1.20161005-version.patch
+++ /dev/null
@@ -1,9 +0,0 @@
 lib/Modern/Perl.pm
-+++ lib/Modern/Perl.pm
-@@ -1,5 +1,6 @@
- package Modern::Perl;
- # ABSTRACT: enable all of the features of Modern Perl with one import
-+$Modern::Perl::VERSION = '1.20161005';
- 
- use 5.010_000;
- 
diff --git a/perl-Modern-Perl.spec b/perl-Modern-Perl.spec
index 22daf14..badbcde 100644
--- a/perl-Modern-Perl.spec
+++ b/perl-Modern-Perl.spec
@@ -1,12 +1,11 @@
 Name:   perl-Modern-Perl
-Version:1.20161005
+Version:1.20161229
 Release:1%{?dist}
 Summary:Enable all of the features of Modern Perl with one command
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Modern-Perl/
 Source0:
http://www.cpan.org/authors/id/C/CH/CHROMATIC/Modern-Perl-%{version}.tar.gz
-Patch0: Modern-Perl-1.20161005-version.patch
 BuildArch:  noarch
 # Module Build
 BuildRequires:  coreutils
@@ -34,17 +33,13 @@ and modules.  Wouldn't it be nice to use them all with a 
single command?
 %prep
 %setup -q -n Modern-Perl-%{version}
 
-# Add back in the package version, needed for provides
-# https://github.com/chromatic/Modern-Perl/issues/5
-%patch0
-
 %build
 perl Build.PL --installdirs=vendor
 ./Build
 
 %install
 ./Build install --destdir=%{buildroot} --create_packlist=0
-%{_fixperms} %{buildroot}
+%{_fixperms} -c %{buildroot}
 
 %check
 ./Build test
@@ -56,6 +51,10 @@ perl Build.PL --installdirs=vendor
 %{_mandir}/man3/Modern::Perl.3*
 
 %changelog
+* Thu Dec 29 2016 Paul Howarth  - 1.20161229-1
+- Update to 1.20161229
+  - Improved VERSION numbering (GH#5)
+
 * Thu Oct  6 2016 Paul Howarth  - 1.20161005-1
 - Update to 1.20161005
   - Updated for 2016 release
diff --git a/sources b/sources
index 861b3a3..6074f5d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-660fb7d591a84825ee43475ab5b52889  Modern-Perl-1.20161005.tar.gz
+SHA512 (Modern-Perl-1.20161229.tar.gz) = 
64ed7ea6ec74564fcb06d3e547f12ce8c8a372d8478a6dc47d80d24374cb45097f72c26c86b268c42ebd09b4056b94b21798d7d1b51d82dec672f9357c1d51b9
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Modern-Perl.git/commit/?h=master=32c404e044f94b6c630ede8848c28b45e396282e
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc uploaded Modern-Perl-1.20161229.tar.gz for perl-Modern-Perl

2016-12-29 Thread notifications
64ed7ea6ec74564fcb06d3e547f12ce8c8a372d8478a6dc47d80d24374cb45097f72c26c86b268c42ebd09b4056b94b21798d7d1b51d82dec672f9357c1d51b9
  Modern-Perl-1.20161229.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Modern-Perl/Modern-Perl-1.20161229.tar.gz/sha512/64ed7ea6ec74564fcb06d3e547f12ce8c8a372d8478a6dc47d80d24374cb45097f72c26c86b268c42ebd09b4056b94b21798d7d1b51d82dec672f9357c1d51b9/Modern-Perl-1.20161229.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


Re: Mock: cmake having trouble finding libclaw

2016-12-29 Thread Martin Gansser
> Hi Martin!
> 
> 
> Just a wild guess, but does it any help if you remove the explicit
> requested version in asgp/CMakeLists.txt:75? Maybe there is no libclaw
> 1.7.4 in the mock build environment?
> 
> 
> BK

removed the requested version in CMakeLists.txt
sed -i 's|find_package( libclaw 1.7.4 )|find_package( libclaw )|' 
asgp/CMakeLists.txt

but the same error:
CMake Error at /usr/share/cmake/libclaw/libclaw-config.cmake:377 (MESSAGE):
  Could not find Claw library
Call Stack (most recent call first):
  asgp/CMakeLists.txt:75 (find_package)
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: /usr/share/metainfo now ok

2016-12-29 Thread Kalev Lember
On 12/22/2016 02:49 PM, Neal Gompa wrote:
> On Thu, Dec 22, 2016 at 4:27 AM, Kalev Lember  wrote:
>> Hi,
>>
>> A quick heads up that we've fixed the appstream generator that we use in
>> Fedora and it now processes appdata files in /usr/share/metainfo as well. I
>> know some packages in Fedora have been patched to use /usr/share/appdata
>> instead; we now process both directories and it's no longer necessary to
>> patch this.
>>
> 
> When and where did this happen? I don't see any variation of my commit
> in rpm upstream[1] backported to our rpm package, so as far as I can
> tell, it still won't read /usr/share/metainfo.

In appstream-glib, which is what generates appstream metadata for
Fedora.
https://github.com/hughsie/appstream-glib/commit/74f0b2b54890662783ebef64c7f130fa2806a8c0

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


Re: Mock: cmake having trouble finding libclaw

2016-12-29 Thread Benjamin Kircher
Hi Martin!


On Thu, Dec 29, 2016 at 9:14 AM, Martin Gansser 
wrote:

> I'm trying to package the program asgp for fedora, it compiles fine, but
> the mock build fails with the following error messages:
> bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1176273
>
> + /usr/bin/cmake -DCMAKE_C_FLAGS_RELEASE:STRING=-DNDEBUG
> -DCMAKE_CXX_FLAGS_RELEASE:STRING=-DNDEBUG 
> -DCMAKE_Fortran_FLAGS_RELEASE:STRING=-DNDEBUG
> -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr
> -DINCLUDE_INSTALL_DIR:PATH=/usr/include -DLIB_INSTALL_DIR:PATH=/usr/lib64
> -DSYSCONF_INSTALL_DIR:PATH=/etc -DSHARE_INSTALL_PREFIX:PATH=/usr/share
> -DLIB_SUFFIX=64 -DBUILD_SHARED_LIBS:BOOL=ON 
> -DBEAR_ENGINE_INSTALL_LIBRARY_DIR=lib64/bear
> -DBEAR_EDITORS_ENABLED=OFF -DRP_INSTALL_CUSTOM_LIBRARY_DIR=lib64/bear
> -DBEAR_ROOT_DIRECTORY=/usr/include/bear -DRP_INSTALL_DATA_DIR=share/asgp
> -DCMAKE_BUILD_TYPE=release -DRP_BEAR_FACTORY_ENABLED=ON
> -- The C compiler identification is GNU 6.3.1
> -- The CXX compiler identification is GNU 6.3.1
> -- Check for working C compiler: /usr/bin/cc
> -- Check for working C compiler: /usr/bin/cc -- works
> -- Detecting C compiler ABI info
> -- Detecting C compiler ABI info - done
> -- Detecting C compile features
> -- Detecting C compile features - done
> -- Check for working CXX compiler: /usr/bin/c++
> -- Check for working CXX compiler: /usr/bin/c++ -- works
> -- Detecting CXX compiler ABI info
> -- Detecting CXX compiler ABI info - done
> -- Detecting CXX compile features
> -- Detecting CXX compile features - done
> -- Looking for pthread.h
> -- Looking for pthread.h - found
> -- Looking for pthread_create
> -- Looking for pthread_create - not found
> -- Looking for pthread_create in pthreads
> -- Looking for pthread_create in pthreads - not found
> -- Looking for pthread_create in pthread
> -- Looking for pthread_create in pthread - found
> -- Found Threads: TRUE
> -- Found SDL2: /usr/lib64/libSDL2.so;-lpthread
> -- Could NOT find JPEG (missing:  JPEG_LIBRARY JPEG_INCLUDE_DIR)
> -- Found ZLIB: /usr/lib64/libz.so (found version "1.2.8")
> -- Found PNG: /usr/lib64/libpng.so (found version "1.6.26")
> -- Boost version: 1.60.0
> -- Boost version: 1.60.0
> CMake Error at /usr/share/cmake/libclaw/libclaw-config.cmake:377
> (MESSAGE):
>   Could not find Claw library
> Call Stack (most recent call first):
>   asgp/CMakeLists.txt:75 (find_package)
>

Please correct me if I am wrong but `/usr/share/cmake/libclaw` does look
like a very strange path for a package to put its CMake modules, no?

$ dnf provides /usr/share/cmake/libclaw/libclaw-config.cmake

libclaw-devel-1.7.4-13.fc24.x86_64 : Development files for Claw library
Repo: @System

libclaw-devel-1.7.4-13.fc24.i686 : Development files for Claw library
Repo: fedora

libclaw-devel-1.7.4-13.fc24.x86_64 : Development files for Claw library
Repo: fedora


But this may be totally unrelated to your problem at hand.



> -- Configuring incomplete, errors occurred!
> See also "/builddir/build/BUILD/asgp-90d6d90e3196d387dc58f028a04e75af
> 2281e513/CMakeFiles/CMakeOutput.log".
> See also "/builddir/build/BUILD/asgp-90d6d90e3196d387dc58f028a04e75af
> 2281e513/CMakeFiles/CMakeError.log".
> Fehler: Fehler-Status beim Beenden von /var/tmp/rpm-tmp.4xv4r5 (%build)
> Fehler-Status beim Beenden von /var/tmp/rpm-tmp.4xv4r5 (%build)
>
> Fehler beim Bauen des RPM:
> ERROR: Exception(../SRPMS/asgp-1.0.18-3.fc25.src.rpm)
> Config(fedora-rawhide-x86_64) 5 minutes 8 seconds
> INFO: Results and/or logs in: /tmp/mock
> INFO: Cleaning up build root ('cleanup_on_failure=True')
> Start: clean chroot
> Finish: clean chroot
> ERROR: Command failed. See logs for output.
>  # bash --login -c /usr/bin/rpmbuild -bb --target x86_64 --nodeps
> /builddir/build/SPECS/asgp.spec
>
> error logs:
> https://martinkg.fedorapeople.org/ErrorReports/asgp/CMakeError.log
> https://martinkg.fedorapeople.org/ErrorReports/asgp/CMakeOutput.log
>
> any suggestions ?
>


Just a wild guess, but does it any help if you remove the explicit
requested version in asgp/CMakeLists.txt:75? Maybe there is no libclaw
1.7.4 in the mock build environment?


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


Interpreting FAF reports

2016-12-29 Thread Florian Weimer

Any idea what this is about?

  https://retrace.fedoraproject.org/faf/reports/1154372/

To me that looks like a combination of several factors.  First of all, 
the backtrace generation likely used incorrect debuginfo data because 
the backtrace is impossible.  Stack corruption is unlikely to yield a 
relatively consistent backtrace—iconv and gconv match up, only the nscd 
and sunrpc functions in the middle do not make sense.


I got lucky and build ID 25ea1fd961cb2f5a38172614365bd4c1aacb01a6 refers 
to the current version of /usr/lib64/gconv/ISO8859-1.so, so I could do 
the disassembly manually.


The crash is in the gconv function, at address 0xb50:

 b44:   49 39 d5cmp%rdx,%r13
 b47:   72 2a   jb b73 
 b49:   48 89 d3mov%rdx,%rbx
 b4c:   48 83 c0 01 add$0x1,%rax
 b50:   0f b6 50 ff movzbl -0x1(%rax),%edx
 b54:   48 39 c5cmp%rax,%rbp
 b57:   89 53 fcmov%edx,-0x4(%rbx)
 b5a:   75 e4   jneb40 
 b5c:   41 bb 04 00 00 00   mov$0x4,%r11d
 b62:   e9 1a ff ff ff  jmpq   a81 
 b67:   66 0f 1f 84 00 00 00nopw   0x0(%rax,%rax,1)

Experimentation with GDB shows that this is in the part which converts 
from ISO-8859-1, and it is the load from the input buffer.  A crash at 
this point is impossible because we have a bounds check in the gconv 
implementation framework before this load.


However, iconv (the command) maps the input file, and something is 
truncating that file, causing the SIGBUS error.  This is just how mmap 
works in POSIX, unfortunately.


Is there a way to discover who is submitting these crash reports and 
what they are trying to do?  I wonder if we should remove the mmap from 
the iconv command, so that we would not crash in this case.


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


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

2016-12-29 Thread updates
The following Fedora EPEL 7 Security updates need testing:
 Age  URL
 661  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-1087   
dokuwiki-0-0.24.20140929c.el7
 423  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-dac7ed832f   
mcollective-2.8.4-1.el7
 142  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-23fa04bf1c   
redis-3.2.3-1.el7
 125  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-e8f4ff76b3   
chicken-4.11.0-3.el7
  68  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-ee3cc4d1b6   
compat-guile18-1.8.8-14.el7
  13  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-73b4fc1c78   
chromium-55.0.2883.87-1.el7.1
  12  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-d21e337184   
hdf5-1.8.12-8.el7
  12  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-0899019edf   
game-music-emu-0.6.1-1.el7
  10  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-911ea9b639   
fedfind-3.2.3-1.el7 python-wikitcms-2.1.9-1.el7
  10  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-17165c490b   
nagios-plugins-2.1.4-2.el7
   7  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-403020225c   
tor-0.2.8.12-1.el7
   7  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-a189d9c701   
js-jquery1-1.12.4-2.el7
   7  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-11ee6fcfdf   
js-jquery-2.2.4-1.el7
   5  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-04bc9dd81d   
libbsd-0.8.3-1.el7
   4  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-61ae084204   
seamonkey-2.46-1.el7
   2  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-b2e637ff5a   
python-wikitcms-2.1.10-1.el7
   2  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-0fa3a954b0   
borgbackup-1.0.9-1.el7
   0  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-edab07e39a   
php-PHPMailer-5.2.21-1.el7


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

php-Monolog-1.22.0-1.el7
php-PHPMailer-5.2.21-1.el7
youtube-dl-2016.12.22-1.el7

Details about builds:



 php-Monolog-1.22.0-1.el7 (FEDORA-EPEL-2016-7c4a01fd2b)
 Sends your logs to files, sockets, inboxes, databases and various web services

Update Information:

### 1.22.0 (2016-11-26)  * Added SlackbotHandler and SlackWebhookHandler to set
up Slack integration more easily * Added MercurialProcessor to add mercurial
revision and branch names to log records * Added support for AWS SDK v3 in
DynamoDbHandler * Fixed fatal errors occuring when normalizing generators that
have been fully consumed * Fixed RollbarHandler to include a level (rollbar
level), monolog_level (original name), channel and datetime (unix) * Fixed
RollbarHandler not flushing records automatically, calling close() explicitly is
not necessary anymore * Fixed SyslogUdpHandler to avoid sending empty frames *
Fixed a few PHP 7.0 and 7.1 compatibility issues

References:

  [ 1 ] Bug #1398780 - php-Monolog-1.22.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1398780




 php-PHPMailer-5.2.21-1.el7 (FEDORA-EPEL-2016-edab07e39a)
 PHP email transport class with a lot of features

Update Information:

**Version 5.2.21** (December 28th 2016)  * Fix missed number update in version
file - no functional changes    **Version 5.2.20** (December 28th 2016)  *
**SECURITY** Critical security update for CVE-2016-10045 please update now!
Thanks to [Dawid Golunski](https://legalhackers.com) and Paul Buonopane
(Zenexer).    ** Version 5.2.19** (December 26th 2016)  * Minor cleanup
  ** Version 5.2.18** (December 24th 2016)  * **SECURITY** Critical security
update for CVE-2016-10033 please update now! Thanks to [Dawid
Golunski](https://legalhackers.com). * Add ability to extract the SMTP
transaction ID from some common SMTP success messages * Minor documentation
tweaks    ** Version 5.2.17** (December 9th 2016)  * This is officially the
last feature release of 5.2. Security fixes only from now on; use PHPMailer 6.0!
* Allow DKIM private key to be provided as a string * Provide mechanism to allow
overriding of boundary and message ID creation * Improve Brazilian Portuguese,
Spanish, Swedish, Romanian, and German translations * PHP 7.1 support for
Travis-CI * Fix some language codes * Add security notices * Improve DKIM
compatibility in older PHP versions * Improve trapping and capture of SMTP
connection errors * Improve passthrough of error levels for debug output *
PHPDoc cleanup

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

2016-12-29 Thread updates
The following Fedora EPEL 6 Security updates need testing:
 Age  URL
 539  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-7031   
python-virtualenv-12.0.7-1.el6
 533  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-7168   
rubygem-crack-0.3.2-2.el6
 465  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-8156   
nagios-4.0.8-1.el6
 423  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-e2b4b5b2fb   
mcollective-2.8.4-1.el6
 395  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-35e240edd9   
thttpd-2.25b-24.el6
 125  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-8594ed3a53   
chicken-4.11.0-3.el6
  65  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-cb5398893b   
nodejs-0.10.48-3.el6
  22  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-851b04cffd   
golang-1.7.4-1.el6
  12  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-681fa1a146   
hdf5-1.8.5.patch1-10.el6
  12  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-a9e593c654   
game-music-emu-0.6.1-1.el6
   9  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-dc9e470823   
nagios-plugins-2.1.4-2.el6
   7  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-7559e54702   
tor-0.2.8.12-1.el6
   5  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-e3e50897ac   
libbsd-0.8.3-2.el6
   4  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-6adac96e8a   
seamonkey-2.46-1.el6
   0  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-245929d91a   
tinymce-4.5.1-1.el6
   0  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-19db31df00   
php-PHPMailer-5.2.21-1.el6


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

php-PHPMailer-5.2.21-1.el6
youtube-dl-2016.12.22-1.el6

Details about builds:



 php-PHPMailer-5.2.21-1.el6 (FEDORA-EPEL-2016-19db31df00)
 PHP email transport class with a lot of features

Update Information:

**Version 5.2.21** (December 28th 2016)  * Fix missed number update in version
file - no functional changes    **Version 5.2.20** (December 28th 2016)  *
**SECURITY** Critical security update for CVE-2016-10045 please update now!
Thanks to [Dawid Golunski](https://legalhackers.com) and Paul Buonopane
(Zenexer).     ** Version 5.2.19** (December 26th 2016)  * Minor cleanup  **
Version 5.2.18** (December 24th 2016)  * **SECURITY** Critical security update
for CVE-2016-10033 please update now! Thanks to [Dawid
Golunski](https://legalhackers.com). * Add ability to extract the SMTP
transaction ID from some common SMTP success messages * Minor documentation
tweaks  ** Version 5.2.17** (December 9th 2016)  * This is officially the last
feature release of 5.2. Security fixes only from now on; use PHPMailer 6.0! *
Allow DKIM private key to be provided as a string * Provide mechanism to allow
overriding of boundary and message ID creation * Improve Brazilian Portuguese,
Spanish, Swedish, Romanian, and German translations * PHP 7.1 support for
Travis-CI * Fix some language codes * Add security notices * Improve DKIM
compatibility in older PHP versions * Improve trapping and capture of SMTP
connection errors * Improve passthrough of error levels for debug output *
PHPDoc cleanup




 youtube-dl-2016.12.22-1.el6 (FEDORA-EPEL-2016-1fd595d2ea)
 A small command-line program to download online videos

Update Information:

New upstream release.

References:

  [ 1 ] Bug #1403632 - youtube-dl-2016.12.22 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1403632

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


[Bug 1406581] perl-CPAN-Perl-Releases-3.02 is available

2016-12-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1406581

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|perl-CPAN-Perl-Releases-3.0 |perl-CPAN-Perl-Releases-3.0
   |2-1.fc26|2-1.fc26
   |perl-CPAN-Perl-Releases-3.0 |perl-CPAN-Perl-Releases-3.0
   |2-1.fc25|2-1.fc25
   ||perl-CPAN-Perl-Releases-3.0
   ||2-1.fc24



--- Comment #6 from Fedora Update System  ---
perl-CPAN-Perl-Releases-3.02-1.fc24 has been pushed to the Fedora 24 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.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


Mock: cmake having trouble finding libclaw

2016-12-29 Thread Martin Gansser
Hi,

I'm trying to package the program asgp for fedora, it compiles fine, but the 
mock build fails with the following error messages:
bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1176273

+ /usr/bin/cmake -DCMAKE_C_FLAGS_RELEASE:STRING=-DNDEBUG 
-DCMAKE_CXX_FLAGS_RELEASE:STRING=-DNDEBUG 
-DCMAKE_Fortran_FLAGS_RELEASE:STRING=-DNDEBUG -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON 
-DCMAKE_INSTALL_PREFIX:PATH=/usr -DINCLUDE_INSTALL_DIR:PATH=/usr/include 
-DLIB_INSTALL_DIR:PATH=/usr/lib64 -DSYSCONF_INSTALL_DIR:PATH=/etc 
-DSHARE_INSTALL_PREFIX:PATH=/usr/share -DLIB_SUFFIX=64 
-DBUILD_SHARED_LIBS:BOOL=ON -DBEAR_ENGINE_INSTALL_LIBRARY_DIR=lib64/bear 
-DBEAR_EDITORS_ENABLED=OFF -DRP_INSTALL_CUSTOM_LIBRARY_DIR=lib64/bear 
-DBEAR_ROOT_DIRECTORY=/usr/include/bear -DRP_INSTALL_DATA_DIR=share/asgp 
-DCMAKE_BUILD_TYPE=release -DRP_BEAR_FACTORY_ENABLED=ON
-- The C compiler identification is GNU 6.3.1
-- The CXX compiler identification is GNU 6.3.1
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE  
-- Found SDL2: /usr/lib64/libSDL2.so;-lpthread  
-- Could NOT find JPEG (missing:  JPEG_LIBRARY JPEG_INCLUDE_DIR) 
-- Found ZLIB: /usr/lib64/libz.so (found version "1.2.8") 
-- Found PNG: /usr/lib64/libpng.so (found version "1.6.26") 
-- Boost version: 1.60.0
-- Boost version: 1.60.0
CMake Error at /usr/share/cmake/libclaw/libclaw-config.cmake:377 (MESSAGE):
  Could not find Claw library
Call Stack (most recent call first):
  asgp/CMakeLists.txt:75 (find_package)


-- Configuring incomplete, errors occurred!
See also 
"/builddir/build/BUILD/asgp-90d6d90e3196d387dc58f028a04e75af2281e513/CMakeFiles/CMakeOutput.log".
See also 
"/builddir/build/BUILD/asgp-90d6d90e3196d387dc58f028a04e75af2281e513/CMakeFiles/CMakeError.log".
Fehler: Fehler-Status beim Beenden von /var/tmp/rpm-tmp.4xv4r5 (%build)
Fehler-Status beim Beenden von /var/tmp/rpm-tmp.4xv4r5 (%build)

Fehler beim Bauen des RPM:
ERROR: Exception(../SRPMS/asgp-1.0.18-3.fc25.src.rpm) 
Config(fedora-rawhide-x86_64) 5 minutes 8 seconds
INFO: Results and/or logs in: /tmp/mock
INFO: Cleaning up build root ('cleanup_on_failure=True')
Start: clean chroot
Finish: clean chroot
ERROR: Command failed. See logs for output.
 # bash --login -c /usr/bin/rpmbuild -bb --target x86_64 --nodeps 
/builddir/build/SPECS/asgp.spec

error logs:
https://martinkg.fedorapeople.org/ErrorReports/asgp/CMakeError.log
https://martinkg.fedorapeople.org/ErrorReports/asgp/CMakeOutput.log

any suggestions ?

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