Re: Modularity and the system-upgrade path

2019-10-12 Thread Kevin Kofler
Stephen Gallagher wrote:
> To be clear, I am reading every single reply to this thread very
> carefully. We *will* be taking all of this feedback into consideration,
> but please understand that we're also trying to balance things. As Neal
> noted upthread, we do have a responsibility to our downstream to make sure
> that we do not break the ability to manage default streams. This becomes
> much more difficult if we cannot have them in Fedora, because the testing
> of them is lost.

It has been repeatedly stated that Fedora is NOT a beta version of RHEL. So 
it must not be treated as one.

Fedora needs to ship what makes sense for Fedora, not what makes sense for 
RHEL.

> We are absolutely considering the option of disallowing default streams in
> Fedora, but we *really* don't want to rush into that. For one thing, we do
> have a number of packages that have moved to modules-only that would have
> to convert back.

Well, yes, they would. But it is better to do it now than to wait until even 
more packages are affected.

If the wrong decision to use default streams had not been made to begin 
with, we would not have to do this extra work now! And the longer we wait, 
the worse it will become. So let's fix things as quickly as possible!

No matter how far down the wrong road you have gone, turn back. (That 
sentence is frequently quoted on the Internet, it is allegedly a Turkish 
proverb.)

> For some projects, this is probably just an annoyance, but for others this
> may be a major impediment. In particular, one of the advantages of
> Modularity is the ability to have buildroot-only packages that are
> different from the base operating system (and don't end up delivered as
> artifacts from the module). There are likely modules out there that rely
> on this behavior because their build requires a newer or older version of
> some package than the non-modular buildroot provides.

The whole concept of buildroot-only packages is incompatible with the 
definition of Fedora as a self-hosting system and should never have been 
allowed. I agree with Neal Gompa that it is absolutely anti-community. In 
addition to the points he already stated, that misfeature makes it painful 
for users to rebuild the packages, or to compile other software with the 
same build requirements.

If the package truly needs a different version of the dependency (and cannot 
be fixed to work with the system version), compatibility packages with a 
versioned name can be introduced.

But in most cases, buildroot-only packages are actually being abused to hide 
the only version of a package used at build time from users, because the 
maintainer does not want to "support" the package for some reason. This is 
obviously the worst in RHEL, where the decision to not support something is 
probably taken by management, but reportedly, this situation (packages 
private to some module) also exists in Fedora, where there is just no valid 
reason to do that.

> I'm wary of assuming that this thread represents the whole of Fedoran
> opinions, however. As we all know, it's generally the set of people who
> are upset that speak up the loudest.

But that does not imply that they are a minority. It is too easy to discount 
criticism as coming from a "vocal minority" with no evidence whatsoever. And 
as far as I can tell, the only people speaking out in favor of default-
enabled Modularity in this thread are directly involved with the Modularity 
WG, all other packagers who replied support Miro's proposal.

> I'm not discounting your concerns (far from it!), but if we only base
> development decisions on "make sure no one is upset about it", we'd never
> accomplish anything new at all.

That wrongly assumes that you cannot innovate without breaking things. 
Innovation can and ought to be done in a way that does not upset people.

> I've been trying to carefully describe both the use-cases and the
> technical limitations (both intrinsic to the design and those that are the
> result of imperfect implementation) each time. It's somewhat disheartening
> to hear responses that largely boil down to "If you can't get it perfectly
> right, stop trying!".

If, just from the design, it is possible to prove by simple logic that the 
system will not work no matter the implementation (which is the case with 
Modularity because the design allows modules to require a specific non-
default version of another module while not allowing 2 versions of the same 
module to coexist, so it is a recipe for version conflicts), then yes, it is 
better to stop trying.

Kevin Kofler
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 

Re: Defining the future of the packager workflow in Fedora

2019-10-12 Thread Neal Gompa
On Sat, Oct 12, 2019 at 11:35 PM Kevin Kofler  wrote:
>
> Randy Barlow wrote:
> > Why have branches at all if you are going to have the file be the same
> > in all branches?
>
> Because the policies require them, and the tooling (fedpkg) is designed for
> them.
>

If I could, I'd drop branches for most of my packages...
Unfortunately, fedpkg doesn't yet support what I need:
https://pagure.io/fedpkg/issue/352



-- 
真実はいつも一つ!/ Always, there's only one truth!
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Defining the future of the packager workflow in Fedora

2019-10-12 Thread Kevin Kofler
Randy Barlow wrote:
> Why have branches at all if you are going to have the file be the same
> in all branches?

Because the policies require them, and the tooling (fedpkg) is designed for 
them.

Kevin Kofler
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Defining the future of the packager workflow in Fedora

2019-10-12 Thread Kevin Kofler
Randy Barlow wrote:

> On Sat, 2019-10-05 at 02:38 +0200, Kevin Kofler wrote:
>> No. Resolving conflicts implies that you need to do an actual merge,
>> NOT a fast forward. Fast-forwarding means that I am shipping the SAME
>> commit on all branches, so the changelog must be identical (unless I play
>> games with %if in the changelog, which is not going to happen).
> 
> The same commit is in all branches, there's just also a merge commit.
> Subsequent commits that don't conflict do fast-forward.

Not by the git definition of "fast forward".

A git "fast forward" means that when merging branch A into branch B, branch 
B's HEAD is before the merge an ancestor of branch A's HEAD, and after the 
merge, branch B's HEAD is the exact same revision as branch A's HEAD. No 
merge commit is created.

A merge with a merge commit is NOT a fast forward.

And as soon as you have a merge commit, the branches are no longer fast-
forwardable, any subsequent merge will also require a merge commit. Unless, 
that is, you first merge branch A into branch B (which will create a merge 
commit and make branch B's HEAD that merge commit), then merge branch B
back (!) into branch A (which will fast-forward A's HEAD to the merge 
commit). But if you do that, the branches are identical again (their HEAD is 
the exact same revision), so the contents are exactly the same too. Hence, 
in particular, the RPM changelogs are also the same.

Conflict resolution and fast forwarding are mutually exclusive concepts in 
git.

Kevin Kofler
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


[389-devel] 389 DS nightly 2019-10-13 - 96% PASS

2019-10-12 Thread vashirov
https://fedorapeople.org/groups/389ds/ci/nightly/2019/10/13/report-389-ds-base-1.4.2.2-20191012gitc95f6cf.fc30.x86_64.html
___
389-devel mailing list -- 389-devel@lists.fedoraproject.org
To unsubscribe send an email to 389-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-devel@lists.fedoraproject.org


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

2019-10-12 Thread updates
The following Fedora EPEL 8 Security updates need testing:
 Age  URL
  13  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-4ca0c60e5b   
mbedtls-2.16.3-1.el8
   6  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-04183e6fbf   
scapy-2.4.3-2.el8
   3  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-1c488e885d   
python-ecdsa-0.13.3-1.el8
   1  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-942baf668f   
nsd-4.2.2-1.el8


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

acme-tiny-4.1.0-1.el8
fcgiwrap-1.1.0-12.20181108git99c942c.el8
icewm-1.6.2-3.el8
ipv6calc-2.2.0-38.el8
libprelude-5.1.0-1.el8
libpreludedb-5.1.0-1.el8
perl-Astro-SunTime-0.06-7.el8
perl-Class-Std-Fast-0.0.8-11.el8
perl-IO-Socket-Multicast-1.12-12.el8
perl-Module-Extract-Use-1.043-10.el8
perl-Net-SFTP-Foreign-1.90-4.el8
perl-Schedule-Cron-1.01-3.el8
perl-Test-Manifest-2.021-6.el8
perl-Test-Prereq-2.002-11.el8
perl-X10-0.04-10.el8
python-cloudflare-2.3.0-5.el8
python-configargparse-0.14.0-5.el8
python-josepy-1.2.0-5.el8
python-txaio-18.8.1-7.el8
yara-3.11.0-1.el8

Details about builds:



 acme-tiny-4.1.0-1.el8 (FEDORA-EPEL-2019-1065d80f17)
 Tiny auditable script to issue, renew Let's Encrypt certificates

Update Information:

Still working on setting up a CentOS-8 VM to test this, so caveat emptor.

References:

  [ 1 ] Bug #1760954 - Request to build acme-tiny for EPEL8
https://bugzilla.redhat.com/show_bug.cgi?id=1760954
  [ 2 ] Bug #1727698 - acme-tiny-4.1.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1727698




 fcgiwrap-1.1.0-12.20181108git99c942c.el8 (FEDORA-EPEL-2019-aa8adac709)
 Simple FastCGI wrapper for CGI scripts

Update Information:

Update SETUP instructions. Fixes RHBZ 1740030.




 icewm-1.6.2-3.el8 (FEDORA-EPEL-2019-2916f38119)
 Window manager designed for speed, usability, and consistency

Update Information:

Theming improving and better defaults (work still in progress)

ChangeLog:

* Sat Oct 12 2019 Artem Polishchuk  - 1.6.2-3
- Theming improving and better defaults (work still in progress)




 ipv6calc-2.2.0-38.el8 (FEDORA-EPEL-2019-5d9c1cc218)
 IPv6 address format change and calculation utility

Update Information:

new release 2.2.0




 libprelude-5.1.0-1.el8 (FEDORA-EPEL-2019-af6e0fc85c)
 Secure Connections between all Sensors and the Prelude Manager

Update Information:

Bump version




 libpreludedb-5.1.0-1.el8 (FEDORA-EPEL-2019-af6e0fc85c)
 Framework for easy access to the IDMEF database

Update Information:

Bump version




 perl-Astro-SunTime-0.06-7.el8 (FEDORA-EPEL-2019-b85694c319)
 Calculates sun rise/set times

Update Information:

Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild




 perl-Class-Std-Fast-0.0.8-11.el8 (FEDORA-EPEL-2019-8a88c1a269)
 Faster but less secure replacement for Class::Std

Update Information:

Rebuilt for 

[Bug 1761113] Plans for EPEL8

2019-10-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1761113

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #3 from Fedora Update System  ---
perl-Module-Extract-Use-1.043-10.el8, perl-Test-Manifest-2.021-6.el8,
perl-Test-Prereq-2.002-11.el8 has been pushed to the Fedora EPEL 8 testing
repository. If problems still persist, please make note of it in this bug
report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-94038f8c62

-- 
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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


[Bug 1756308] [RFE] EPEL8 branch of perl-Module-Build-Deprecated

2019-10-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1756308

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version||perl-Module-Build-Deprecate
   ||d-0.4210-15.el8
 Resolution|--- |ERRATA
Last Closed||2019-10-13 02:01:21



--- Comment #4 from Fedora Update System  ---
perl-Module-Build-Deprecated-0.4210-15.el8 has been pushed to the Fedora EPEL 8
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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


[Bug 1744709] [RFE] EPEL8 branch of perl-FCGI-Client

2019-10-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1744709
Bug 1744709 depends on bug 1756098, which changed state.

Bug 1756098 Summary: [RFE] perl-strictures build for epel8
https://bugzilla.redhat.com/show_bug.cgi?id=1756098

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA



-- 
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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


[Bug 1756098] [RFE] perl-strictures build for epel8

2019-10-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1756098

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version||perl-strictures-2.06-6.
   ||el8
 Resolution|--- |ERRATA
Last Closed||2019-10-13 02:01:11



--- Comment #4 from Fedora Update System  ---
perl-strictures-2.06-6.el8 has been pushed to the Fedora EPEL 8 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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


[Bug 1756037] [RFE] perl-XML-LibXSLT build for epel8

2019-10-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1756037

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version||perl-XML-LibXSLT-1.96-6.el8
 Resolution|--- |ERRATA
Last Closed||2019-10-13 02:01:09



--- Comment #4 from Fedora Update System  ---
perl-XML-LibXSLT-1.96-6.el8 has been pushed to the Fedora EPEL 8 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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


Re: calibre and hedgewars missed in qt5 5.12.5 update

2019-10-12 Thread Kevin Fenzi
On Sat, Oct 12, 2019 at 05:49:15PM -0700, Kevin Fenzi wrote:
> On Sat, Oct 12, 2019 at 10:45:23AM -0500, Richard Shaw wrote:
> > Just can fyi but at least two packages were missed in the updates:
> > 
> > https://bodhi.fedoraproject.org/updates/FEDORA-2019-2a4f82aa58
> > https://bodhi.fedoraproject.org/updates/FEDORA-2019-80800c5c83
> > 
> > I can rebuild both (I maintain hedgewars) but can someone rebuild and push
> > them directly in?
> 
> I got the reports on calibre and was just going to rebuild it. 
> 
> There's no way to push directly to stable. 
> We can ask for quick feedback... I suspect we can get folks to test them
> pretty quickly. 

Except sadly, it doesn't build: 

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

...
* Running build
*
Fatal Python error: PyQt5.QtCore: Unable to embed qt.conf
/var/tmp/rpm-tmp.vEjk0u: line 31:  9198 Aborted (core dumped) 
OVERRIDE_CFLAGS="-O2 -g -pipe -Wall -Werror=format-security 
-Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions 
-fstack-protector-strong -grecord-gcc-switches 
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 
-specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -march=armv7-a -mfpu=vfpv3-d16 
-mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard" /usr/bin/python2 
setup.py build
error: Bad exit status from /var/tmp/rpm-tmp.vEjk0u (%build)
...

kevin


signature.asc
Description: PGP signature
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: calibre and hedgewars missed in qt5 5.12.5 update

2019-10-12 Thread Kevin Fenzi
On Sat, Oct 12, 2019 at 10:45:23AM -0500, Richard Shaw wrote:
> Just can fyi but at least two packages were missed in the updates:
> 
> https://bodhi.fedoraproject.org/updates/FEDORA-2019-2a4f82aa58
> https://bodhi.fedoraproject.org/updates/FEDORA-2019-80800c5c83
> 
> I can rebuild both (I maintain hedgewars) but can someone rebuild and push
> them directly in?

I got the reports on calibre and was just going to rebuild it. 

There's no way to push directly to stable. 
We can ask for quick feedback... I suspect we can get folks to test them
pretty quickly. 

kevin


signature.asc
Description: PGP signature
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 31 Self-Contained Change proposal: AArch64 Xfce Desktop image

2019-10-12 Thread Alexander Ploumistos
Hi,

The change proposal submitted here lists the Pi 4 among the supported
devices, whereas the wiki page does not. I checked the
SUPPORTED-BOARDS file in the accompanying documentation of
arm-image-installer and there is no rpi4 in the list of target boards.
Will the the Pi 4 be supported at Fedora 31 launch or not?

Best regards,
A
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


[Bug 1761157] New: Plans for EPEL8

2019-10-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1761157

Bug ID: 1761157
   Summary: Plans for EPEL8
   Product: Fedora EPEL
   Version: epel8
Status: NEW
 Component: perl-Test-MockObject
  Assignee: lkund...@v3.sk
  Reporter: zonexpertconsult...@outlook.com
QA Contact: extras...@fedoraproject.org
CC: jose.p.oliveira@gmail.com, lkund...@v3.sk,
perl-devel@lists.fedoraproject.org,
tcall...@redhat.com, trem...@tremble.org.uk
  Target Milestone: ---
Classification: Fedora



perl-Test-MockObject is part of the el7, and thus no need for it to live in
epel.

It appears this has changed for el8, however, as this package does not exist in
el8 repos.

> $ dnf whatprovides 'perl(Test::MockObject)'
> Error: No Matches found

Can you build perl-Test-MockObject for epel8?


I've got a package of my own with a build dependency on it.

-- 
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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


Re: Modularity and the system-upgrade path

2019-10-12 Thread Lukas Ruzicka
Thank you for clarifications.

It's somewhat disheartening to hear responses that largely boil down to "If
> you can't get it perfectly right, stop trying!".
>

I am sorry if this is what you feel about my comments. I never wanted to
say that you should stop trying if you cannot get it perfectly right. I
agree that trying (and perhaps failing or winning) is the motor to
development and evolution. What I wanted to say was "Until we can't get it
perfectly right, let's not make it a default." Do you think this a stupid
approach from a QE's perspective?

You have said a couple of times, that users should not switch off modular
repos, because they could break their system. What if, until we know it's
perfectly safe, users would not break their system with modular repos off?
In that case, we could have a modularity opt-in for the time's being, and
we could buy us time to test default streams and whatever you need to test.




> ___
> devel mailing list -- devel@lists.fedoraproject.org
> To unsubscribe send an email to devel-le...@lists.fedoraproject.org
> Fedora Code of Conduct:
> https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives:
> https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
>


-- 

Lukáš Růžička

FEDORA QE, RHCE

Red Hat



Purkyňova 115

612 45 Brno - Královo Pole

lruzi...@redhat.com
TRIED AND PERSONALLY TESTED, ERGO TRUSTED. 
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


[Bug 1761155] New: Plans for EPEL8

2019-10-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1761155

Bug ID: 1761155
   Summary: Plans for EPEL8
   Product: Fedora EPEL
   Version: epel8
Status: NEW
 Component: perl-Class-Load
  Assignee: p...@city-fan.org
  Reporter: zonexpertconsult...@outlook.com
QA Contact: extras...@fedoraproject.org
CC: p...@city-fan.org, perl-devel@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora



perl-class-load is part of the el7, and thus no need for it to live in epel.

It appears this has changed for el8, however, as this package does not exist in
el8 repos.

>$ dnf whatprovides 'perl(Class::Load)'
>Error: No Matches found

Can you build perl-class-load for epel8?


I've got a package of my own with a build dependency on it.

-- 
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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


Re: Way to visualize where Fedora contributors are around the world?

2019-10-12 Thread Code Zombie
Hi. I like the idea. Is that really needed? What are the benefits to such a
map?


On Fri, Oct 11, 2019, 10:18 PM Richard Shaw  wrote:

> Just a random thought I had but I actually have no idea which
> contributors/packagers are closest to me here in Mississippi, USA.
>
> That got me thinking it would be pretty neat if a map could be
> automagically creating showing where everyone is. Wouldn't need exact
> addresses for privacy reasons but something that gets you close like a zip
> code (or equivalent).
>
> Thoughts?
>
> Thanks,
> Richard
> ___
> devel mailing list -- devel@lists.fedoraproject.org
> To unsubscribe send an email to devel-le...@lists.fedoraproject.org
> Fedora Code of Conduct:
> https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives:
> https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
>
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Way to visualize where Fedora contributors are around the world?

2019-10-12 Thread Marius Schwarz
hi,

Am 12.10.19 um 22:38 schrieb Silvia Sánchez:
>
> I don't think the Ambassadors map is still working. I opened it but it
> shows only the geography, not Ambassadors or contributors pinpointed. 
> I couldn't even see myself.
>

It does work,sort of, but some graphics are missing. The positions are
just white boxes with a border.

It needs Javascript and the tiles are coming in via http, while the
website has https in use => security warning.

Best regards,
Marius
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Way to visualize where Fedora contributors are around the world?

2019-10-12 Thread Silvia Sánchez
Hello folks!

I don't think the Ambassadors map is still working. I opened it but it
shows only the geography, not Ambassadors or contributors pinpointed.  I
couldn't even see myself.

Regards,
Lailah





On Sat, 12 Oct 2019 at 01:28, Kevin Fenzi  wrote:

> On Fri, Oct 11, 2019 at 02:59:19PM -0600, Orion Poplawski wrote:
> > On 10/11/19 12:47 PM, Richard Shaw wrote:
> > > Just a random thought I had but I actually have no idea which
> > > contributors/packagers are closest to me here in Mississippi, USA.
> > >
> > > That got me thinking it would be pretty neat if a map could be
> automagically
> > > creating showing where everyone is. Wouldn't need exact addresses for
> privacy
> > > reasons but something that gets you close like a zip code (or
> equivalent).
> > >
> > > Thoughts?
> >
> > FWIW - Fedora Account allows you to enter your Lat/Lon coordinates.  This
> > isn't displayed in the view though.  But presumably a map could be built
> with
> > that.  I do like the idea.
>
> The ambassadors did this a while back:
>
> https://fedoraproject.org/wiki/Fedora_ambassadors_map
>
> I'm not sure it's updating, but it was working for a while there.
>
> kevin
> ___
> devel mailing list -- devel@lists.fedoraproject.org
> To unsubscribe send an email to devel-le...@lists.fedoraproject.org
> Fedora Code of Conduct:
> https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives:
> https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
>
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


[Bug 1761113] Plans for EPEL8

2019-10-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1761113

Fedora Update System  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED



--- Comment #2 from Fedora Update System  ---
FEDORA-EPEL-2019-94038f8c62 has been submitted as an update to Fedora EPEL 8.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-94038f8c62

-- 
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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "Use author-independent source URL"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From 46f53787e91c3f1163a819ae2cf8f404405ee51e Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Oct 12 2019 18:07:09 +
Subject: Use author-independent source URL


---

diff --git a/perl-Module-Extract-Use.rpmlintrc 
b/perl-Module-Extract-Use.rpmlintrc
new file mode 100644
index 000..e4537db
--- /dev/null
+++ b/perl-Module-Extract-Use.rpmlintrc
@@ -0,0 +1,3 @@
+from Config import *
+addFilter("spelling-error %description -l en_US eval -> ")
+addFilter("spelling-error %description -l en_US pragmas -> ")
diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index 46a89f8..2daeac2 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -4,14 +4,14 @@ Version:  1.043
 Release:   10%{?dist}
 License:   Artistic 2.0
 URL:   https://metacpan.org/release/Module-Extract-Use
-Source0:   
https://cpan.metacpan.org/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
+Source0:   
https://cpan.metacpan.org/modules/by-module/Module/Module-Extract-Use-%{version}.tar.gz
 BuildArch: noarch
 # Module Build
 BuildRequires: coreutils
 BuildRequires: findutils
 BuildRequires: make
-BuildRequires: perl-interpreter >= 4:5.10.0
 BuildRequires: perl-generators
+BuildRequires: perl-interpreter >= 4:5.10.0
 BuildRequires: perl(ExtUtils::MakeMaker) >= 6.64
 BuildRequires: perl(File::Spec)
 BuildRequires: perl(File::Spec::Functions)



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/46f53787e91c3f1163a819ae2cf8f404405ee51e?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "Perl 5.30 rebuild"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From b2fb411f2d122b5a1fc93f85f66950878a5ce36c Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Oct 12 2019 18:07:09 +
Subject: Perl 5.30 rebuild


---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index e74c1d2..be50652 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -1,7 +1,7 @@
 Summary:   Pull out the modules a module explicitly uses
 Name:  perl-Module-Extract-Use
 Version:   1.043
-Release:   8%{?dist}
+Release:   9%{?dist}
 License:   Artistic 2.0
 URL:   https://metacpan.org/release/Module-Extract-Use
 Source0:   
https://cpan.metacpan.org/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
@@ -67,6 +67,9 @@ make test
 %{_mandir}/man3/Module::Extract::Use.3*
 
 %changelog
+* Fri May 31 2019 Jitka Plesnikova  - 1.043-9
+- Perl 5.30 rebuild
+
 * Fri Feb 01 2019 Fedora Release Engineering  - 
1.043-8
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/b2fb411f2d122b5a1fc93f85f66950878a5ce36c?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "cpan.org addresses moved to MetaCPAN "

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From 207a520a3f25105546ff2fb2636c250f2ce3138f Mon Sep 17 00:00:00 2001
From: Petr Písař 
Date: Oct 12 2019 18:07:09 +
Subject: cpan.org addresses moved to MetaCPAN 



---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index e5fd287..7073a80 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -3,8 +3,8 @@ Name:   perl-Module-Extract-Use
 Version:   1.043
 Release:   5%{?dist}
 License:   Artistic 2.0
-URL:   http://search.cpan.org/dist/Module-Extract-Use/
-Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
+URL:   https://metacpan.org/release/Module-Extract-Use
+Source0:   
https://cpan.metacpan.org/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
 BuildArch: noarch
 # Module Build
 BuildRequires: coreutils



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/207a520a3f25105546ff2fb2636c250f2ce3138f?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild (..more)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From 1b37e839dc1e0f058b3081d5fa4d3ba8d105eab6 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Oct 12 2019 18:07:09 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index be1bf52..df76636 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -1,7 +1,7 @@
 Summary:   Pull out the modules a module explicitly uses
 Name:  perl-Module-Extract-Use
 Version:   1.043
-Release:   6%{?dist}
+Release:   7%{?dist}
 License:   Artistic 2.0
 URL:   https://metacpan.org/release/Module-Extract-Use
 Source0:   
https://cpan.metacpan.org/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
@@ -67,6 +67,9 @@ make test
 %{_mandir}/man3/Module::Extract::Use.3*
 
 %changelog
+* Fri Jul 13 2018 Fedora Release Engineering  - 
1.043-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
 * Fri Jun 29 2018 Jitka Plesnikova  - 1.043-6
 - Perl 5.28 rebuild
 



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/1b37e839dc1e0f058b3081d5fa4d3ba8d105eab6?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild (..more)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From 62e9b9994ee66920a9837c31508b4f535a312513 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Oct 12 2019 18:07:09 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index be50652..46a89f8 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -1,7 +1,7 @@
 Summary:   Pull out the modules a module explicitly uses
 Name:  perl-Module-Extract-Use
 Version:   1.043
-Release:   9%{?dist}
+Release:   10%{?dist}
 License:   Artistic 2.0
 URL:   https://metacpan.org/release/Module-Extract-Use
 Source0:   
https://cpan.metacpan.org/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
@@ -67,6 +67,9 @@ make test
 %{_mandir}/man3/Module::Extract::Use.3*
 
 %changelog
+* Fri Jul 26 2019 Fedora Release Engineering  - 
1.043-10
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
 * Fri May 31 2019 Jitka Plesnikova  - 1.043-9
 - Perl 5.30 rebuild
 



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/62e9b9994ee66920a9837c31508b4f535a312513?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild (..more)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From a7f2f8bb065fac5d853e77ec0cc747f1f5a552ec Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Oct 12 2019 18:07:09 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index df76636..e74c1d2 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -1,7 +1,7 @@
 Summary:   Pull out the modules a module explicitly uses
 Name:  perl-Module-Extract-Use
 Version:   1.043
-Release:   7%{?dist}
+Release:   8%{?dist}
 License:   Artistic 2.0
 URL:   https://metacpan.org/release/Module-Extract-Use
 Source0:   
https://cpan.metacpan.org/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
@@ -67,6 +67,9 @@ make test
 %{_mandir}/man3/Module::Extract::Use.3*
 
 %changelog
+* Fri Feb 01 2019 Fedora Release Engineering  - 
1.043-8
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
 * Fri Jul 13 2018 Fedora Release Engineering  - 
1.043-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/a7f2f8bb065fac5d853e77ec0cc747f1f5a552ec?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild (..more)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From 0711b278a9d7b8c7e1365a7e99a5e75b979ae510 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Feb 08 2018 22:52:15 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index 8ec63ae..e5fd287 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -1,7 +1,7 @@
 Summary:   Pull out the modules a module explicitly uses
 Name:  perl-Module-Extract-Use
 Version:   1.043
-Release:   4%{?dist}
+Release:   5%{?dist}
 License:   Artistic 2.0
 URL:   http://search.cpan.org/dist/Module-Extract-Use/
 Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
@@ -67,6 +67,9 @@ make test
 %{_mandir}/man3/Module::Extract::Use.3*
 
 %changelog
+* Thu Feb 08 2018 Fedora Release Engineering  - 
1.043-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+
 * Thu Jul 27 2017 Fedora Release Engineering  - 
1.043-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/0711b278a9d7b8c7e1365a7e99a5e75b979ae510?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "Perl 5.28 rebuild"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From bcf6b8fce0c9a0e41cfd76805f0c533b76197d87 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Oct 12 2019 18:07:09 +
Subject: Perl 5.28 rebuild


---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index 7073a80..be1bf52 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -1,7 +1,7 @@
 Summary:   Pull out the modules a module explicitly uses
 Name:  perl-Module-Extract-Use
 Version:   1.043
-Release:   5%{?dist}
+Release:   6%{?dist}
 License:   Artistic 2.0
 URL:   https://metacpan.org/release/Module-Extract-Use
 Source0:   
https://cpan.metacpan.org/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
@@ -67,6 +67,9 @@ make test
 %{_mandir}/man3/Module::Extract::Use.3*
 
 %changelog
+* Fri Jun 29 2018 Jitka Plesnikova  - 1.043-6
+- Perl 5.28 rebuild
+
 * Thu Feb 08 2018 Fedora Release Engineering  - 
1.043-5
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/bcf6b8fce0c9a0e41cfd76805f0c533b76197d87?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "Merge remote-tracking branch 'origin/f28' into epel8"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From 5fd4974431b935f973b7426d630e076b8d5c3c5b Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Oct 12 2019 18:06:51 +
Subject: Merge remote-tracking branch 'origin/f28' into epel8


---

diff --git a/.gitignore b/.gitignore
index e69de29..f26524c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Module-Extract-Use-[0-9.]*.tar.gz
diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
new file mode 100644
index 000..e5fd287
--- /dev/null
+++ b/perl-Module-Extract-Use.spec
@@ -0,0 +1,98 @@
+Summary:   Pull out the modules a module explicitly uses
+Name:  perl-Module-Extract-Use
+Version:   1.043
+Release:   5%{?dist}
+License:   Artistic 2.0
+URL:   http://search.cpan.org/dist/Module-Extract-Use/
+Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
+BuildArch: noarch
+# Module Build
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: make
+BuildRequires: perl-interpreter >= 4:5.10.0
+BuildRequires: perl-generators
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.64
+BuildRequires: perl(File::Spec)
+BuildRequires: perl(File::Spec::Functions)
+BuildRequires: perl(Test::Manifest) >= 1.21
+# Module Runtime
+BuildRequires: perl(PPI)
+BuildRequires: perl(strict)
+BuildRequires: perl(subs)
+BuildRequires: perl(vars)
+BuildRequires: perl(warnings)
+# Test Suite
+BuildRequires: perl(Data::Dumper)
+BuildRequires: perl(File::Basename)
+BuildRequires: perl(Test::More)
+# Optional Tests
+BuildRequires: perl(Test::Pod) >= 1.00
+BuildRequires: perl(Test::Pod::Coverage) >= 1.00
+# Dependencies
+Requires:  perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:  perl(PPI)
+
+%description
+Extract the names of the modules used in a file using a static analysis. Since
+this module does not run code, it cannot find dynamic uses of modules, such as
+eval "require $class". It only reports modules that the file loads directly.
+Modules loaded with parent or base, for instance, will be in the import list
+for those pragmas but won't have separate entries in the data this module
+returns.
+
+%prep
+%setup -q -n Module-Extract-Use-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+%{_fixperms} -c %{buildroot}
+
+%check
+make test
+
+%files
+%if 0%{?_licensedir:1}
+%license LICENSE
+%else
+%doc LICENSE
+%endif
+%doc Changes examples/ README.pod
+%{perl_vendorlib}/Module/
+%{_mandir}/man3/Module::Extract::Use.3*
+
+%changelog
+* Thu Feb 08 2018 Fedora Release Engineering  - 
1.043-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+
+* Thu Jul 27 2017 Fedora Release Engineering  - 
1.043-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
+* Mon Jun 05 2017 Jitka Plesnikova  - 1.043-3
+- Perl 5.26 rebuild
+
+* Sat Feb 11 2017 Fedora Release Engineering  - 
1.043-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
+* Fri Feb  3 2017 Paul Howarth  - 1.043-1
+- Update to 1.043
+  - Clarified license as Artistic 2.0
+(https://github.com/briandfoy/module-extract-use/issues/3)
+
+* Wed Feb  1 2017 Paul Howarth  - 1.04.2-1
+- Update to 1.042
+  - The -l and -j options work on the list of namespaces from all files
+together instead of the list per file; otherwise, strict and warnings
+for example always show up multiple times
+  - Add JSON and simple list outputs for examples/extract_modules
+
+* Fri Nov 25 2016 Paul Howarth  - 1.04-2
+- Sanitize for Fedora submission
+
+* Fri Nov 25 2016 Paul Howarth  - 1.04-1
+- Initial RPM version
diff --git a/sources b/sources
index e69de29..996d7f6 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (Module-Extract-Use-1.043.tar.gz) = 
f45cc1e20fc01cca2126c60402aa2962bd982df7df5ef8548729e07b029df5379b1a9cbb598244f34c869c0d14741ddc490984623aeb8b8893ef680414b3acbc



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/5fd4974431b935f973b7426d630e076b8d5c3c5b?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "Update to 1.042 (..more)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From d5ab3a67d3719b27108eea22d609e4a3187008e4 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Feb 01 2017 10:56:24 +
Subject: Update to 1.042


- New upstream release 1.042
  - The -l and -j options work on the list of namespaces from all files
together instead of the list per file; otherwise, strict and warnings
for example always show up multiple times
  - Add JSON and simple list outputs for examples/extract_modules

---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index be2f69e..1886c52 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -1,18 +1,25 @@
+# Work around differences between perl and rpm versioning
+%global upstream_version 1.042
+%global downstream_version 1.04.2
+
 Summary:   Pull out the modules a module explicitly uses
 Name:  perl-Module-Extract-Use
-Version:   1.04
-Release:   2%{?dist}
+Version:   %{downstream_version}
+Release:   1%{?dist}
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/Module-Extract-Use/
-Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
+Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-Use-%{upstream_version}.tar.gz
 BuildArch: noarch
 # Module Build
 BuildRequires: coreutils
 BuildRequires: findutils
 BuildRequires: make
-BuildRequires: perl
+BuildRequires: perl >= 4:5.10.0
 BuildRequires: perl-generators
-BuildRequires: perl(ExtUtils::MakeMaker) >= 6.48
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.64
+BuildRequires: perl(File::Spec)
+BuildRequires: perl(File::Spec::Functions)
+BuildRequires: perl(Test::Manifest) >= 1.21
 # Module Runtime
 BuildRequires: perl(PPI)
 BuildRequires: perl(strict)
@@ -22,7 +29,6 @@ BuildRequires:perl(warnings)
 # Test Suite
 BuildRequires: perl(Data::Dumper)
 BuildRequires: perl(File::Basename)
-BuildRequires: perl(File::Spec::Functions)
 BuildRequires: perl(Test::More)
 # Optional Tests
 BuildRequires: perl(Test::Pod) >= 1.00
@@ -40,7 +46,7 @@ for those pragmas but won't have separate entries in the data 
this module
 returns.
 
 %prep
-%setup -q -n Module-Extract-Use-%{version}
+%setup -q -n Module-Extract-Use-%{upstream_version}
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor
@@ -60,11 +66,18 @@ make test
 %else
 %doc LICENSE
 %endif
-%doc Changes examples/ README
+%doc Changes examples/ README.pod
 %{perl_vendorlib}/Module/
 %{_mandir}/man3/Module::Extract::Use.3*
 
 %changelog
+* Wed Feb  1 2017 Paul Howarth  - 1.04.2-1
+- Update to 1.042
+  - The -l and -j options work on the list of namespaces from all files
+together instead of the list per file; otherwise, strict and warnings
+for example always show up multiple times
+  - Add JSON and simple list outputs for examples/extract_modules
+
 * Fri Nov 25 2016 Paul Howarth  - 1.04-2
 - Sanitize for Fedora submission
 
diff --git a/sources b/sources
index 8a39a58..f7a9d77 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-ac724177aa58e683dc5fbb58810ebdfe  Module-Extract-Use-1.04.tar.gz
+SHA512 (Module-Extract-Use-1.042.tar.gz) = 
d721dee30f9b0813b9ec92724ce47da0506113fb8c611071c74583032bcaf61eef926d7a15600d64027d36f048646a4861fcd70da9e99ad8084e5654cdaabd3f



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/d5ab3a67d3719b27108eea22d609e4a3187008e4?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "Initial import (perl-Module-Extract-Use-1.04-2) (..more)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From fbd7d20385b66b7d266debf98e0490250122cf05 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Nov 28 2016 15:14:30 +
Subject: Initial import (perl-Module-Extract-Use-1.04-2)


Extract the names of the modules used in a file using a static analysis. Since
this module does not run code, it cannot find dynamic uses of modules, such as
eval "require $class". It only reports modules that the file loads directly.
Modules loaded with parent or base, for instance, will be in the import list
for those pragmas but won't have separate entries in the data this module
returns.

---

diff --git a/.gitignore b/.gitignore
index e69de29..f26524c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Module-Extract-Use-[0-9.]*.tar.gz
diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
new file mode 100644
index 000..be2f69e
--- /dev/null
+++ b/perl-Module-Extract-Use.spec
@@ -0,0 +1,72 @@
+Summary:   Pull out the modules a module explicitly uses
+Name:  perl-Module-Extract-Use
+Version:   1.04
+Release:   2%{?dist}
+License:   GPL+ or Artistic
+URL:   http://search.cpan.org/dist/Module-Extract-Use/
+Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
+BuildArch: noarch
+# Module Build
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: make
+BuildRequires: perl
+BuildRequires: perl-generators
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.48
+# Module Runtime
+BuildRequires: perl(PPI)
+BuildRequires: perl(strict)
+BuildRequires: perl(subs)
+BuildRequires: perl(vars)
+BuildRequires: perl(warnings)
+# Test Suite
+BuildRequires: perl(Data::Dumper)
+BuildRequires: perl(File::Basename)
+BuildRequires: perl(File::Spec::Functions)
+BuildRequires: perl(Test::More)
+# Optional Tests
+BuildRequires: perl(Test::Pod) >= 1.00
+BuildRequires: perl(Test::Pod::Coverage) >= 1.00
+# Dependencies
+Requires:  perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:  perl(PPI)
+
+%description
+Extract the names of the modules used in a file using a static analysis. Since
+this module does not run code, it cannot find dynamic uses of modules, such as
+eval "require $class". It only reports modules that the file loads directly.
+Modules loaded with parent or base, for instance, will be in the import list
+for those pragmas but won't have separate entries in the data this module
+returns.
+
+%prep
+%setup -q -n Module-Extract-Use-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+%{_fixperms} -c %{buildroot}
+
+%check
+make test
+
+%files
+%if 0%{?_licensedir:1}
+%license LICENSE
+%else
+%doc LICENSE
+%endif
+%doc Changes examples/ README
+%{perl_vendorlib}/Module/
+%{_mandir}/man3/Module::Extract::Use.3*
+
+%changelog
+* Fri Nov 25 2016 Paul Howarth  - 1.04-2
+- Sanitize for Fedora submission
+
+* Fri Nov 25 2016 Paul Howarth  - 1.04-1
+- Initial RPM version
diff --git a/sources b/sources
index e69de29..8a39a58 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+ac724177aa58e683dc5fbb58810ebdfe  Module-Extract-Use-1.04.tar.gz



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/fbd7d20385b66b7d266debf98e0490250122cf05?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "Update to 1.043 (..more)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From e317157b5e7ce02825332e368eddb374bb7a4678 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Feb 03 2017 09:39:42 +
Subject: Update to 1.043


- New upstream release 1.043
  - Clarified license as Artistic 2.0
(https://github.com/briandfoy/module-extract-use/issues/3)

---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index 1886c52..8fe5fc4 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -1,14 +1,10 @@
-# Work around differences between perl and rpm versioning
-%global upstream_version 1.042
-%global downstream_version 1.04.2
-
 Summary:   Pull out the modules a module explicitly uses
 Name:  perl-Module-Extract-Use
-Version:   %{downstream_version}
+Version:   1.043
 Release:   1%{?dist}
-License:   GPL+ or Artistic
+License:   Artistic 2.0
 URL:   http://search.cpan.org/dist/Module-Extract-Use/
-Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-Use-%{upstream_version}.tar.gz
+Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
 BuildArch: noarch
 # Module Build
 BuildRequires: coreutils
@@ -46,7 +42,7 @@ for those pragmas but won't have separate entries in the data 
this module
 returns.
 
 %prep
-%setup -q -n Module-Extract-Use-%{upstream_version}
+%setup -q -n Module-Extract-Use-%{version}
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor
@@ -71,6 +67,11 @@ make test
 %{_mandir}/man3/Module::Extract::Use.3*
 
 %changelog
+* Fri Feb  3 2017 Paul Howarth  - 1.043-1
+- Update to 1.043
+  - Clarified license as Artistic 2.0
+(https://github.com/briandfoy/module-extract-use/issues/3)
+
 * Wed Feb  1 2017 Paul Howarth  - 1.04.2-1
 - Update to 1.042
   - The -l and -j options work on the list of namespaces from all files
diff --git a/sources b/sources
index f7a9d77..996d7f6 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (Module-Extract-Use-1.042.tar.gz) = 
d721dee30f9b0813b9ec92724ce47da0506113fb8c611071c74583032bcaf61eef926d7a15600d64027d36f048646a4861fcd70da9e99ad8084e5654cdaabd3f
+SHA512 (Module-Extract-Use-1.043.tar.gz) = 
f45cc1e20fc01cca2126c60402aa2962bd982df7df5ef8548729e07b029df5379b1a9cbb598244f34c869c0d14741ddc490984623aeb8b8893ef680414b3acbc



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/e317157b5e7ce02825332e368eddb374bb7a4678?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "perl dependency renamed to perl-interpreter "

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From 53c9ba619721a75ae83d309d9ec9f84c073afde2 Mon Sep 17 00:00:00 2001
From: Petr Písař 
Date: Jul 12 2017 12:57:10 +
Subject: perl dependency renamed to perl-interpreter 



---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index ee919bf..169376d 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -10,7 +10,7 @@ BuildArch:noarch
 BuildRequires: coreutils
 BuildRequires: findutils
 BuildRequires: make
-BuildRequires: perl >= 4:5.10.0
+BuildRequires: perl-interpreter >= 4:5.10.0
 BuildRequires: perl-generators
 BuildRequires: perl(ExtUtils::MakeMaker) >= 6.64
 BuildRequires: perl(File::Spec)



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/53c9ba619721a75ae83d309d9ec9f84c073afde2?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From 3b7405be474381e23fb54b0a4531797cd1edc82f Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jul 27 2017 04:57:59 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild


---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index 169376d..8ec63ae 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -1,7 +1,7 @@
 Summary:   Pull out the modules a module explicitly uses
 Name:  perl-Module-Extract-Use
 Version:   1.043
-Release:   3%{?dist}
+Release:   4%{?dist}
 License:   Artistic 2.0
 URL:   http://search.cpan.org/dist/Module-Extract-Use/
 Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
@@ -67,6 +67,9 @@ make test
 %{_mandir}/man3/Module::Extract::Use.3*
 
 %changelog
+* Thu Jul 27 2017 Fedora Release Engineering  - 
1.043-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
 * Mon Jun 05 2017 Jitka Plesnikova  - 1.043-3
 - Perl 5.26 rebuild
 



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/3b7405be474381e23fb54b0a4531797cd1edc82f?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "Perl 5.26 rebuild"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From af9aa81a43ae31037c967c8cc5c226b4d1fe3261 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Jun 05 2017 19:53:13 +
Subject: Perl 5.26 rebuild


---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index ed47894..ee919bf 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -1,7 +1,7 @@
 Summary:   Pull out the modules a module explicitly uses
 Name:  perl-Module-Extract-Use
 Version:   1.043
-Release:   2%{?dist}
+Release:   3%{?dist}
 License:   Artistic 2.0
 URL:   http://search.cpan.org/dist/Module-Extract-Use/
 Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
@@ -67,6 +67,9 @@ make test
 %{_mandir}/man3/Module::Extract::Use.3*
 
 %changelog
+* Mon Jun 05 2017 Jitka Plesnikova  - 1.043-3
+- Perl 5.26 rebuild
+
 * Sat Feb 11 2017 Fedora Release Engineering  - 
1.043-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/af9aa81a43ae31037c967c8cc5c226b4d1fe3261?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (epel8). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 18:08:23 UTC

From 29de4e121a8b7776df7c659e316abf0cad101c36 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Feb 11 2017 04:08:08 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild


---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index 8fe5fc4..ed47894 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -1,7 +1,7 @@
 Summary:   Pull out the modules a module explicitly uses
 Name:  perl-Module-Extract-Use
 Version:   1.043
-Release:   1%{?dist}
+Release:   2%{?dist}
 License:   Artistic 2.0
 URL:   http://search.cpan.org/dist/Module-Extract-Use/
 Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
@@ -67,6 +67,9 @@ make test
 %{_mandir}/man3/Module::Extract::Use.3*
 
 %changelog
+* Sat Feb 11 2017 Fedora Release Engineering  - 
1.043-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
 * Fri Feb  3 2017 Paul Howarth  - 1.043-1
 - Update to 1.043
   - Clarified license as Artistic 2.0



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/29de4e121a8b7776df7c659e316abf0cad101c36?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


limb pushed to perl-Module-Extract-Use (epel8). ""Adding package.cfg file""

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 17:13:58 UTC

From f60904e3507f3ef3feafcc636a424eb39be420f6 Mon Sep 17 00:00:00 2001
From: Gwyn Ciesla 
Date: Oct 12 2019 17:13:51 +
Subject: "Adding package.cfg file"


---

diff --git a/package.cfg b/package.cfg
new file mode 100644
index 000..66ea79d
--- /dev/null
+++ b/package.cfg
@@ -0,0 +1,2 @@
+[koji]
+targets = epel8 epel8-playground
\ No newline at end of file



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/f60904e3507f3ef3feafcc636a424eb39be420f6?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


[Bug 1761113] Plans for EPEL8

2019-10-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1761113

Paul Howarth  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED



--- Comment #1 from Paul Howarth  ---
https://pagure.io/releng/fedora-scm-requests/issue/18199
https://pagure.io/releng/fedora-scm-requests/issue/18200

-- 
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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Module-Extract-Use (master). "Use author-independent source URL"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 16:16:10 UTC

From cbfa036a1841e9f97d2567d8570a032e24cb2f31 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Oct 12 2019 16:14:47 +
Subject: Use author-independent source URL


---

diff --git a/perl-Module-Extract-Use.rpmlintrc 
b/perl-Module-Extract-Use.rpmlintrc
new file mode 100644
index 000..e4537db
--- /dev/null
+++ b/perl-Module-Extract-Use.rpmlintrc
@@ -0,0 +1,3 @@
+from Config import *
+addFilter("spelling-error %description -l en_US eval -> ")
+addFilter("spelling-error %description -l en_US pragmas -> ")
diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index 46a89f8..2daeac2 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -4,14 +4,14 @@ Version:  1.043
 Release:   10%{?dist}
 License:   Artistic 2.0
 URL:   https://metacpan.org/release/Module-Extract-Use
-Source0:   
https://cpan.metacpan.org/authors/id/B/BD/BDFOY/Module-Extract-Use-%{version}.tar.gz
+Source0:   
https://cpan.metacpan.org/modules/by-module/Module/Module-Extract-Use-%{version}.tar.gz
 BuildArch: noarch
 # Module Build
 BuildRequires: coreutils
 BuildRequires: findutils
 BuildRequires: make
-BuildRequires: perl-interpreter >= 4:5.10.0
 BuildRequires: perl-generators
+BuildRequires: perl-interpreter >= 4:5.10.0
 BuildRequires: perl(ExtUtils::MakeMaker) >= 6.64
 BuildRequires: perl(File::Spec)
 BuildRequires: perl(File::Spec::Functions)



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/cbfa036a1841e9f97d2567d8570a032e24cb2f31?branch=master
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


calibre and hedgewars missed in qt5 5.12.5 update

2019-10-12 Thread Richard Shaw
Just can fyi but at least two packages were missed in the updates:

https://bodhi.fedoraproject.org/updates/FEDORA-2019-2a4f82aa58
https://bodhi.fedoraproject.org/updates/FEDORA-2019-80800c5c83

I can rebuild both (I maintain hedgewars) but can someone rebuild and push
them directly in?

Thanks,
Richard
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


[Bug 1761113] New: Plans for EPEL8

2019-10-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1761113

Bug ID: 1761113
   Summary: Plans for EPEL8
   Product: Fedora EPEL
   Version: epel8
Status: NEW
 Component: perl-Test-Prereq
  Assignee: p...@city-fan.org
  Reporter: zonexpertconsult...@outlook.com
QA Contact: extras...@fedoraproject.org
CC: p...@city-fan.org, perl-devel@lists.fedoraproject.org,
st...@silug.org
  Target Milestone: ---
Classification: Fedora



Hi - I am the maintainer of Perl-Std-Fast package, which has a build dependency
on Perl-Test-Prereq.

Please build Perl-Test-Prereq for EPEL8.

Note I am willing to build the package myself if you grant me commit access.
Thank you.

My FAS Account: kni

-- 
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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


Fedora 31 compose report: 20191012.n.0 changes

2019-10-12 Thread Fedora Branched Report
OLD: Fedora-31-20191011.n.0
NEW: Fedora-31-20191012.n.0

= SUMMARY =
Added images:0
Dropped images:  0
Added packages:  0
Dropped packages:0
Upgraded packages:   3
Downgraded packages: 0

Size of added packages:  0 B
Size of dropped packages:0 B
Size of upgraded packages:   79.71 MiB
Size of downgraded packages: 0 B

Size change of upgraded packages:   106.97 KiB
Size change of downgraded packages: 0 B

= ADDED IMAGES =

= DROPPED IMAGES =

= ADDED PACKAGES =

= DROPPED PACKAGES =

= UPGRADED PACKAGES =
Package:  gnome-software-3.34.1-4.fc31
Old package:  gnome-software-3.34.1-1.fc31
Summary:  A software center for GNOME
RPMs: gnome-software gnome-software-devel gnome-software-editor 
gnome-software-rpm-ostree
Size: 33.66 MiB
Size change:  10.10 KiB
Changelog:
  * Thu Oct 10 2019 Richard Hughes  - 3.34.1-2
  - Backport a patch to correct the applications shown in the installed list
  - Resolves #1759193

  * Fri Oct 11 2019 Richard Hughes  - 3.34.1-3
  - Backport a better patch to correct the installed applications
  - Resolves #1759193

  * Fri Oct 11 2019 Richard Hughes  - 3.34.1-4
  - Backport a simpler to correct the installed applications
  - Resolves #1759193


Package:  selinux-policy-3.14.4-37.fc31
Old package:  selinux-policy-3.14.4-35.fc31
Summary:  SELinux policy configuration
RPMs: selinux-policy selinux-policy-devel selinux-policy-doc 
selinux-policy-minimum selinux-policy-mls selinux-policy-sandbox 
selinux-policy-targeted
Size: 32.35 MiB
Size change:  11.77 KiB
Changelog:
  * Fri Oct 04 2019 Lukas Vrabec  - 3.14.4-36
  - Update aide_t domain to allow this tool to analyze also /dev filesystem
  - Allow bitlbee_t domain map files in /usr
  - Allow stratisd to getattr of fixed disk device nodes
  - Add net_broadcast capability to openvswitch_t domain BZ(1716044)
  - Allow exim_t to read mysqld conf files if exim_can_connect_db is enabled. 
BZ(1756973)
  - Allow cobblerd_t domain search apache configuration dirs
  - Dontaudit NetworkManager_t domain to write to kdump temp pipies BZ(1750428)
  - Label /var/log/collectd.log as collectd_log_t
  - Allow boltd_t domain to manage sysfs files and dirs BZ(1754360)
  - Add fowner capability to the pcp_pmlogger_t domain BZ(1754767)
  - networkmanager: allow NetworkManager_t to create bluetooth_socket
  - Fix ipa_custodia_stream_connect interface
  - Add new interface udev_getattr_rules_chr_files()
  - Make dbus-broker service working on s390x arch
  - Add new interface dev_mounton_all_device_nodes()
  - Add new interface dev_create_all_files()
  - Allow systemd(init_t) to load kernel modules
  - Allow ldconfig_t domain to manage initrc_tmp_t objects
  - Add new interface init_write_initrc_tmp_pipes()
  - Add new interface init_manage_script_tmp_files()
  - Allow xdm_t setpcap capability in user namespace BZ(1756790)
  - Allow xdm_t domain to user netlink_route sockets BZ(1756791)
  - Update files_create_var_lib_dirs() interface to allow caller domain also 
set attributes of var_lib_t directory BZ(1754245)
  - Allow sudo userdomain to run rpm related commands
  - Add sys_admin capability for ipsec_t domain
  - Allow systemd_modules_load_t domain to read systemd pid files
  - Add new interface init_read_pid_files()
  - Allow systemd labeled as init_t domain to manage faillog_t objects
  - Add file context ipsec_var_run_t for /var/run/charon\.dck to ipsec.fc
  - Make ipa_custodia policy active
  - Make stratisd policy active

  * Wed Oct 09 2019 Lukas Vrabec  - 3.14.4-37
  - Remove duplicate file context for /usr//bin/nova-api-metadata
  - Introduce new bolean httpd_use_opencryptoki
  - Allow setroubleshoot_fixit_t to read random_device_t
  - Label /etc/named direcotory as named_conf_t BZ(1759495)
  - Allow dkim to execute sendmail
  - Update virt_read_content interface to allow caller domain mmap 
virt_content_t block devices and files
  - Update aide_t domain to allow this tool to analyze also /dev filesystem
  - Update interface modutils_read_module_deps to allow caller domain also mmap 
modules_dep_t files BZ(1758634)
  - Allow avahi_t to send msg to xdm_t
  - Update dev_manage_sysfs() to support managing also lnk files BZ(1759019)
  - Allow systemd_logind_t domain to read blk_files in domain removable_device_t
  - Add new interface udev_getattr_rules_chr_files()


Package:  uboot-tools-2019.10-2.fc31
Old package:  uboot-tools-2019.10-0.5.rc4.fc31
Summary:  U-Boot utilities
RPMs: uboot-images-armv7 uboot-images-armv8 uboot-tools
Size: 13.70 MiB
Size change:  85.10 KiB
Changelog:
  * Mon Oct 07 2019 Peter Robinson  2019.10-1
  - 2019.10

  * Wed Oct 09 2019 Peter Robinson  2019.10-2
  - Fixes for Rockchips rk3328 and rk3399 platforms



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

Fedora-31-20191012.n.0 compose check report

2019-10-12 Thread Fedora compose checker
No missing expected images.

Failed openQA tests: 5/153 (x86_64), 1/2 (arm)

New failures (same test not failed in Fedora-31-20191011.n.0):

ID: 468270  Test: x86_64 KDE-live-iso install_no_user
URL: https://openqa.fedoraproject.org/tests/468270
ID: 468280  Test: x86_64 KDE-live-iso desktop_notifications_postinstall
URL: https://openqa.fedoraproject.org/tests/468280
ID: 468292  Test: x86_64 Silverblue-dvd_ostree-iso desktop_terminal
URL: https://openqa.fedoraproject.org/tests/468292
ID: 468339  Test: x86_64 universal install_asian_language
URL: https://openqa.fedoraproject.org/tests/468339

Old failures (same test failed in Fedora-31-20191011.n.0):

ID: 468221  Test: x86_64 Server-dvd-iso modularity_tests
URL: https://openqa.fedoraproject.org/tests/468221
ID: 468283  Test: arm Minimal-raw_xz-raw.xz 
install_arm_image_deployment_upload
URL: https://openqa.fedoraproject.org/tests/468283

Soft failed openQA tests: 8/153 (x86_64)
(Tests completed, but using a workaround for a known bug)

Old soft failures (same test soft failed in Fedora-31-20191011.n.0):

ID: 468260  Test: x86_64 Workstation-live-iso desktop_update_graphical
URL: https://openqa.fedoraproject.org/tests/468260
ID: 468310  Test: x86_64 universal upgrade_desktop_64bit
URL: https://openqa.fedoraproject.org/tests/468310
ID: 468311  Test: x86_64 universal upgrade_server_64bit
URL: https://openqa.fedoraproject.org/tests/468311
ID: 468330  Test: x86_64 universal upgrade_minimal_64bit
URL: https://openqa.fedoraproject.org/tests/468330
ID: 468331  Test: x86_64 universal upgrade_server_domain_controller
URL: https://openqa.fedoraproject.org/tests/468331
ID: 468332  Test: x86_64 universal upgrade_kde_64bit
URL: https://openqa.fedoraproject.org/tests/468332
ID: 468333  Test: x86_64 universal upgrade_desktop_encrypted_64bit
URL: https://openqa.fedoraproject.org/tests/468333
ID: 468369  Test: x86_64 universal upgrade_realmd_client
URL: https://openqa.fedoraproject.org/tests/468369

Passed openQA tests: 140/153 (x86_64)

New passes (same test not passed in Fedora-31-20191011.n.0):

ID: 468275  Test: x86_64 KDE-live-iso desktop_update_graphical
URL: https://openqa.fedoraproject.org/tests/468275

Skipped non-gating openQA tests: 1 of 155

Installed system changes in test x86_64 KDE-live-iso install_default_upload: 
Used mem changed from 738 MiB to 896 MiB
System load changed from 1.52 to 0.66
Average CPU usage changed from 74.42857143 to 29.58095238
Previous test data: https://openqa.fedoraproject.org/tests/467499#downloads
Current test data: https://openqa.fedoraproject.org/tests/468267#downloads

Installed system changes in test x86_64 KDE-live-iso install_default@uefi: 
Used mem changed from 883 MiB to 726 MiB
System load changed from 1.20 to 1.63
Previous test data: https://openqa.fedoraproject.org/tests/467501#downloads
Current test data: https://openqa.fedoraproject.org/tests/468269#downloads

Installed system changes in test x86_64 Silverblue-dvd_ostree-iso 
install_default_upload: 
Used swap changed from 5 MiB to 8 MiB
Previous test data: https://openqa.fedoraproject.org/tests/467517#downloads
Current test data: https://openqa.fedoraproject.org/tests/468285#downloads

Installed system changes in test x86_64 Silverblue-dvd_ostree-iso 
install_default@uefi: 
Used swap changed from 8 MiB to 7 MiB
System load changed from 0.28 to 0.49
Previous test data: https://openqa.fedoraproject.org/tests/467519#downloads
Current test data: https://openqa.fedoraproject.org/tests/468287#downloads

Installed system changes in test x86_64 universal install_package_set_minimal: 
System load changed from 0.00 to 0.18
Previous test data: https://openqa.fedoraproject.org/tests/467577#downloads
Current test data: https://openqa.fedoraproject.org/tests/468345#downloads

Installed system changes in test x86_64 universal install_package_set_kde: 
Used mem changed from 768 MiB to 977 MiB
System load changed from 0.80 to 2.49
Average CPU usage changed from 2.07142857 to 87.29523810
Previous test data: https://openqa.fedoraproject.org/tests/467592#downloads
Current test data: https://openqa.fedoraproject.org/tests/468360#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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


kni pushed to perl-Class-Std-Fast (epel8). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild (..more)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From 5640378e5657ee8b143f3a4f4b1031ba7bf602df Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Feb 08 2018 19:42:03 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index efac615..d0b6199 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -1,6 +1,6 @@
 Name:   perl-Class-Std-Fast
 Version:0.0.8
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Faster but less secure replacement for Class::Std
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -66,6 +66,9 @@ RELEASE_TESTING=1 %make_build test
 
 
 %changelog
+* Thu Feb 08 2018 Fedora Release Engineering  - 
0.0.8-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+
 * Thu Jul 27 2017 Fedora Release Engineering  - 
0.0.8-5
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/5640378e5657ee8b143f3a4f4b1031ba7bf602df?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


kni pushed to perl-Class-Std-Fast (epel8). "Remove obsolete Group tag (..more)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From 03887cd9e382275b869c588ad87d5f047b9aaf84 Mon Sep 17 00:00:00 2001
From: Igor Gnatenko 
Date: Jan 28 2019 19:24:26 +
Subject: Remove obsolete Group tag


References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag

---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index 2fd5312..3e18cdb 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -3,7 +3,6 @@ Version:0.0.8
 Release:8%{?dist}
 Summary:Faster but less secure replacement for Class::Std
 License:GPL+ or Artistic
-Group:  Development/Libraries
 URL:https://metacpan.org/release/Class-Std-Fast
 Source0:
https://cpan.metacpan.org/authors/id/A/AC/ACID/Class-Std-Fast-v%{version}.tar.gz
 # Based on the statement in the README file:



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/03887cd9e382275b869c588ad87d5f047b9aaf84?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


kni pushed to perl-Class-Std-Fast (epel8). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From 31a21065db92a3ca1314db887b9403d1c85ad7ec Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Feb 11 2017 02:09:34 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild


---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index 9a431f0..334e84c 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -1,6 +1,6 @@
 Name:   perl-Class-Std-Fast
 Version:0.0.8
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Faster but less secure replacement for Class::Std
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -66,6 +66,9 @@ RELEASE_TESTING=1 %make_build test
 
 
 %changelog
+* Sat Feb 11 2017 Fedora Release Engineering  - 
0.0.8-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
 * Thu Feb 02 2017 Damian Wrobel  - 0.0.8-2
 - Remove duplicate perl-generators BR
 - Update license URL



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/31a21065db92a3ca1314db887b9403d1c85ad7ec?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


kni pushed to perl-Class-Std-Fast (epel8). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild (..more)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From 99b3f724118f55334f9a08bac2dd18de33b1cd4a Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jul 26 2019 01:26:51 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index e1b5adb..b5671db 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -1,6 +1,6 @@
 Name:   perl-Class-Std-Fast
 Version:0.0.8
-Release:10%{?dist}
+Release:11%{?dist}
 Summary:Faster but less secure replacement for Class::Std
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Class-Std-Fast
@@ -65,6 +65,9 @@ RELEASE_TESTING=1 %make_build test
 
 
 %changelog
+* Fri Jul 26 2019 Fedora Release Engineering  - 
0.0.8-11
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
 * Fri May 31 2019 Jitka Plesnikova  - 0.0.8-10
 - Perl 5.30 rebuild
 



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/99b3f724118f55334f9a08bac2dd18de33b1cd4a?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


kni pushed to perl-Class-Std-Fast (epel8). "Perl 5.26 rebuild"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From 4a306b8e542582350e5dc4ae79d960c6bca98c57 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Jun 06 2017 12:10:45 +
Subject: Perl 5.26 rebuild


---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index 334e84c..630231f 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -1,6 +1,6 @@
 Name:   perl-Class-Std-Fast
 Version:0.0.8
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Faster but less secure replacement for Class::Std
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -66,6 +66,9 @@ RELEASE_TESTING=1 %make_build test
 
 
 %changelog
+* Tue Jun 06 2017 Jitka Plesnikova  - 0.0.8-4
+- Perl 5.26 rebuild
+
 * Sat Feb 11 2017 Fedora Release Engineering  - 
0.0.8-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/4a306b8e542582350e5dc4ae79d960c6bca98c57?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


kni pushed to perl-Class-Std-Fast (epel8). "Perl 5.28 rebuild"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From d7afc7ed34eb84aac19c7f4c4f45554ba7120c65 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Jun 29 2018 07:27:35 +
Subject: Perl 5.28 rebuild


---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index b9618ff..13e4486 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -1,6 +1,6 @@
 Name:   perl-Class-Std-Fast
 Version:0.0.8
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Faster but less secure replacement for Class::Std
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -66,6 +66,9 @@ RELEASE_TESTING=1 %make_build test
 
 
 %changelog
+* Fri Jun 29 2018 Jitka Plesnikova  - 0.0.8-7
+- Perl 5.28 rebuild
+
 * Thu Feb 08 2018 Fedora Release Engineering  - 
0.0.8-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/d7afc7ed34eb84aac19c7f4c4f45554ba7120c65?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


kni pushed to perl-Class-Std-Fast (epel8). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild (..more)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From 96fb33aa69095eee8cd0ae8ed2d6b99327a748f8 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Feb 01 2019 19:17:28 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index 3e18cdb..6a5587f 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -1,6 +1,6 @@
 Name:   perl-Class-Std-Fast
 Version:0.0.8
-Release:8%{?dist}
+Release:9%{?dist}
 Summary:Faster but less secure replacement for Class::Std
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Class-Std-Fast
@@ -65,6 +65,9 @@ RELEASE_TESTING=1 %make_build test
 
 
 %changelog
+* Fri Feb 01 2019 Fedora Release Engineering  - 
0.0.8-9
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
 * Fri Jul 13 2018 Fedora Release Engineering  - 
0.0.8-8
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/96fb33aa69095eee8cd0ae8ed2d6b99327a748f8?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


kni pushed to perl-Class-Std-Fast (epel8). "Merge branch 'master' into epel8"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From 7f5331e790526c80af4603d01ca6cd7afec3e946 Mon Sep 17 00:00:00 2001
From: Andrew Bauer 
Date: Oct 12 2019 13:32:24 +
Subject: Merge branch 'master' into epel8


---

diff --git a/.gitignore b/.gitignore
index e69de29..ec4ec77 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Class-Std-Fast-v0.0.8.tar.gz
diff --git a/perl-Class-Std-Fast-Licensing.html 
b/perl-Class-Std-Fast-Licensing.html
new file mode 100644
index 000..cb19356
--- /dev/null
+++ b/perl-Class-Std-Fast-Licensing.html
@@ -0,0 +1,216 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+
+Perl Licensing - dev.perl.org
+
+
+
+
+
+
+   
+   
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   Perl Licensing
+
+
+   
+
+
+
+
+
+dev.perl.org
+
+
+
+
+
+
+
+
+
+Home
+
+
+Perl 5
+
+
+http://www.perl6.org/;>Perl6.org
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Perl5 is Copyright (C) 1993-2005, by Larry Wall and others.
+
+
+
+It is free software; you can redistribute it and/or modify it under
+the terms of either:
+
+
+
+   a) the GNU General Public License as
+   published by the http://www.fsf.org/;>Free Software
+   Foundation; either version 1, or (at your
+   option) any http://www.fsf.org/licenses/licenses.html#GNUGPL;>later
+   version, or
+
+
+
+   b) the "Artistic License".
+
+
+
+
+
+For those of you that choose to use the GNU General Public
+License, my interpretation of the GNU General Public License is
+that no Perl script falls under the terms of the GPL unless you
+explicitly put said script under the terms of the GPL yourself.
+
+
+Furthermore, any object code linked with perl does not
+automatically fall under the terms of the GPL, provided such
+object code only adds definitions of subroutines and variables,
+and does not otherwise impair the resulting interpreter from
+executing any standard Perl script.  I consider linking in C
+subroutines in this manner to be the moral equivalent of defining
+subroutines in the Perl language itself.  You may sell such an
+object file as proprietary provided that you provide or offer to
+provide the Perl source, as specified by the GNU General Public
+License.  (This is merely an alternate way of specifying input to
+the program.)  You may also sell a binary produced by the dumping
+of a running Perl script that belongs to you, provided that you
+provide or offer to provide the Perl source as specified by the
+GPL.  (The fact that a Perl interpreter and your code are in the
+same binary file is, in this case, a form of mere aggregation.)
+
+
+This is my interpretation of the GPL.  If you still have concerns
+or difficulties understanding my intent, feel free to contact me.
+Of course, the Artistic License spells all this out for your
+protection, so you may prefer to use that.
+
+
+
+  -- Larry Wall
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+When you need Perl think Perl.org: 
https://www.perl.org/;>www | http://blogs.perl.org/;>blogs | https://jobs.perl.org/;>jobs | https://learn.perl.org/;>learn  | https://dev.perl.org/;>dev
+
+
+http://creativecommons.org/licenses/by-nc-nd/3.0/us/;> © 2002-2017 Perl.org | Site Info
+
+
+
+
+
+
+
+
+
+
+  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new 
Date();a=s.createElement(o),
+  
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+
+  ga('create', 'UA-50555-6', 'auto');
+  ga('require', 'linkid', 'linkid.js');
+  ga('set', 'dimension1', window.location.protocol);
+  ga('send', 'pageview');
+
+
+
+
+
+
+
+
+function googleTranslateElementInit() {
+  new google.translate.TranslateElement({
+pageLanguage: 'en',
+autoDisplay: false
+,
+gaTrack: true,
+gaId: 'UA-50555-6'
+  }, 'google_translate_element');
+}
+
+
+
+
+
+
+
+
+
+
diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
new file mode 100644
index 000..b5671db
--- /dev/null
+++ b/perl-Class-Std-Fast.spec
@@ -0,0 +1,100 @@
+Name:   perl-Class-Std-Fast
+Version:0.0.8
+Release:11%{?dist}
+Summary:Faster but less secure replacement for Class::Std
+License: 

kni pushed to perl-Class-Std-Fast (epel8). "Perl 5.30 rebuild"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From 86500dcedb7feb19ff4b26b9730d3cac60f85652 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: May 31 2019 14:08:26 +
Subject: Perl 5.30 rebuild


---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index 6a5587f..e1b5adb 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -1,6 +1,6 @@
 Name:   perl-Class-Std-Fast
 Version:0.0.8
-Release:9%{?dist}
+Release:10%{?dist}
 Summary:Faster but less secure replacement for Class::Std
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Class-Std-Fast
@@ -65,6 +65,9 @@ RELEASE_TESTING=1 %make_build test
 
 
 %changelog
+* Fri May 31 2019 Jitka Plesnikova  - 0.0.8-10
+- Perl 5.30 rebuild
+
 * Fri Feb 01 2019 Fedora Release Engineering  - 
0.0.8-9
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/86500dcedb7feb19ff4b26b9730d3cac60f85652?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


kni pushed to perl-Class-Std-Fast (epel8). "cpan.org addresses moved to MetaCPAN "

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From 2905bacaa9ff10b900b5597165183e1670482b78 Mon Sep 17 00:00:00 2001
From: Petr Písař 
Date: Jun 04 2018 12:37:24 +
Subject: cpan.org addresses moved to MetaCPAN 



---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index d0b6199..b9618ff 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -4,8 +4,8 @@ Release:6%{?dist}
 Summary:Faster but less secure replacement for Class::Std
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Class-Std-Fast/
-Source0:
http://www.cpan.org/authors/id/A/AC/ACID/Class-Std-Fast-v%{version}.tar.gz
+URL:https://metacpan.org/release/Class-Std-Fast
+Source0:
https://cpan.metacpan.org/authors/id/A/AC/ACID/Class-Std-Fast-v%{version}.tar.gz
 # Based on the statement in the README file:
 # "This library is free software; you can redistribute it and/or modify
 # it under the same terms as Perl itself."



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/2905bacaa9ff10b900b5597165183e1670482b78?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


kni pushed to perl-Class-Std-Fast (epel8). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From db59c64eeecf642ecc1abbe2a38a7cae56207002 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jul 27 2017 03:03:00 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild


---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index 5e5cb2c..efac615 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -1,6 +1,6 @@
 Name:   perl-Class-Std-Fast
 Version:0.0.8
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Faster but less secure replacement for Class::Std
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -66,6 +66,9 @@ RELEASE_TESTING=1 %make_build test
 
 
 %changelog
+* Thu Jul 27 2017 Fedora Release Engineering  - 
0.0.8-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
 * Tue Jun 06 2017 Jitka Plesnikova  - 0.0.8-4
 - Perl 5.26 rebuild
 



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/db59c64eeecf642ecc1abbe2a38a7cae56207002?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


kni pushed to perl-Class-Std-Fast (epel8). "Initial import (#1400038)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From 23053304af041dfc7e793bea57ed30adb3b5e2d9 Mon Sep 17 00:00:00 2001
From: Damian Wrobel 
Date: Feb 02 2017 17:22:20 +
Subject: Initial import (#1400038)


---

diff --git a/.gitignore b/.gitignore
index e69de29..ec4ec77 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Class-Std-Fast-v0.0.8.tar.gz
diff --git a/perl-Class-Std-Fast-Licensing.html 
b/perl-Class-Std-Fast-Licensing.html
new file mode 100644
index 000..cb19356
--- /dev/null
+++ b/perl-Class-Std-Fast-Licensing.html
@@ -0,0 +1,216 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+
+Perl Licensing - dev.perl.org
+
+
+
+
+
+
+   
+   
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   Perl Licensing
+
+
+   
+
+
+
+
+
+dev.perl.org
+
+
+
+
+
+
+
+
+
+Home
+
+
+Perl 5
+
+
+http://www.perl6.org/;>Perl6.org
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Perl5 is Copyright (C) 1993-2005, by Larry Wall and others.
+
+
+
+It is free software; you can redistribute it and/or modify it under
+the terms of either:
+
+
+
+   a) the GNU General Public License as
+   published by the http://www.fsf.org/;>Free Software
+   Foundation; either version 1, or (at your
+   option) any http://www.fsf.org/licenses/licenses.html#GNUGPL;>later
+   version, or
+
+
+
+   b) the "Artistic License".
+
+
+
+
+
+For those of you that choose to use the GNU General Public
+License, my interpretation of the GNU General Public License is
+that no Perl script falls under the terms of the GPL unless you
+explicitly put said script under the terms of the GPL yourself.
+
+
+Furthermore, any object code linked with perl does not
+automatically fall under the terms of the GPL, provided such
+object code only adds definitions of subroutines and variables,
+and does not otherwise impair the resulting interpreter from
+executing any standard Perl script.  I consider linking in C
+subroutines in this manner to be the moral equivalent of defining
+subroutines in the Perl language itself.  You may sell such an
+object file as proprietary provided that you provide or offer to
+provide the Perl source, as specified by the GNU General Public
+License.  (This is merely an alternate way of specifying input to
+the program.)  You may also sell a binary produced by the dumping
+of a running Perl script that belongs to you, provided that you
+provide or offer to provide the Perl source as specified by the
+GPL.  (The fact that a Perl interpreter and your code are in the
+same binary file is, in this case, a form of mere aggregation.)
+
+
+This is my interpretation of the GPL.  If you still have concerns
+or difficulties understanding my intent, feel free to contact me.
+Of course, the Artistic License spells all this out for your
+protection, so you may prefer to use that.
+
+
+
+  -- Larry Wall
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+When you need Perl think Perl.org: 
https://www.perl.org/;>www | http://blogs.perl.org/;>blogs | https://jobs.perl.org/;>jobs | https://learn.perl.org/;>learn  | https://dev.perl.org/;>dev
+
+
+http://creativecommons.org/licenses/by-nc-nd/3.0/us/;> © 2002-2017 Perl.org | Site Info
+
+
+
+
+
+
+
+
+
+
+  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new 
Date();a=s.createElement(o),
+  
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+
+  ga('create', 'UA-50555-6', 'auto');
+  ga('require', 'linkid', 'linkid.js');
+  ga('set', 'dimension1', window.location.protocol);
+  ga('send', 'pageview');
+
+
+
+
+
+
+
+
+function googleTranslateElementInit() {
+  new google.translate.TranslateElement({
+pageLanguage: 'en',
+autoDisplay: false
+,
+gaTrack: true,
+gaId: 'UA-50555-6'
+  }, 'google_translate_element');
+}
+
+
+
+
+
+
+
+
+
+
diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
new file mode 100644
index 000..9a431f0
--- /dev/null
+++ b/perl-Class-Std-Fast.spec
@@ -0,0 +1,74 @@
+Name:   perl-Class-Std-Fast
+Version:0.0.8
+Release:2%{?dist}
+Summary:Faster but less secure replacement for Class::Std
+License:GPL+ 

kni pushed to perl-Class-Std-Fast (epel8). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild (..more)"

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From 17d533ab2bfff139751c76fe794d5f6fe030 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jul 13 2018 16:23:14 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index 13e4486..2fd5312 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -1,6 +1,6 @@
 Name:   perl-Class-Std-Fast
 Version:0.0.8
-Release:7%{?dist}
+Release:8%{?dist}
 Summary:Faster but less secure replacement for Class::Std
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -66,6 +66,9 @@ RELEASE_TESTING=1 %make_build test
 
 
 %changelog
+* Fri Jul 13 2018 Fedora Release Engineering  - 
0.0.8-8
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
 * Fri Jun 29 2018 Jitka Plesnikova  - 0.0.8-7
 - Perl 5.28 rebuild
 



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/17d533ab2bfff139751c76fe794d5f6fe030?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


kni pushed to perl-Class-Std-Fast (epel8). "perl dependency renamed to perl-interpreter "

2019-10-12 Thread notifications
Notification time stamped 2019-10-12 13:32:37 UTC

From 823225b542b17272112ed82fc6ad4fd9cdae5feb Mon Sep 17 00:00:00 2001
From: Petr Písař 
Date: Jul 12 2017 12:28:55 +
Subject: perl dependency renamed to perl-interpreter 



---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index 630231f..5e5cb2c 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -14,7 +14,7 @@ Source1:
http://dev.perl.org/licenses/#/%{name}-Licensing.html
 BuildArch:  noarch
 
 BuildRequires:  findutils
-BuildRequires:  perl
+BuildRequires:  perl-interpreter
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl-generators
 BuildRequires:  perl(Carp)



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/823225b542b17272112ed82fc6ad4fd9cdae5feb?branch=epel8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


Fedora-Rawhide-20191012.n.0 compose check report

2019-10-12 Thread Fedora compose checker
No missing expected images.

Compose FAILS proposed Rawhide gating check!
4 of 45 required tests failed, 2 results missing
openQA tests matching unsatisfied gating requirements shown with **GATING** 
below
Unsatisfied gating requirements that could not be mapped to openQA tests:
FAILED: compose.cloud.all
MISSING: fedora.Workstation-boot-iso.x86_64.64bit - compose.install_default
MISSING: fedora.Workstation-boot-iso.x86_64.uefi - compose.install_default

Failed openQA tests: 7/143 (x86_64), 1/2 (arm)

New failures (same test not failed in Fedora-Rawhide-20191011.n.1):

ID: 468124  Test: x86_64 KDE-live-iso install_default@uefi **GATING**
URL: https://openqa.fedoraproject.org/tests/468124
ID: 468125  Test: x86_64 KDE-live-iso install_no_user **GATING**
URL: https://openqa.fedoraproject.org/tests/468125
ID: 468176  Test: x86_64 universal upgrade_server_domain_controller
URL: https://openqa.fedoraproject.org/tests/468176
ID: 468208  Test: x86_64 universal install_european_language
URL: https://openqa.fedoraproject.org/tests/468208
ID: 468209  Test: x86_64 universal install_cyrillic_language
URL: https://openqa.fedoraproject.org/tests/468209

Old failures (same test failed in Fedora-Rawhide-20191011.n.1):

ID: 468076  Test: x86_64 Server-dvd-iso modularity_tests
URL: https://openqa.fedoraproject.org/tests/468076
ID: 468117  Test: x86_64 Workstation-live-iso desktop_browser **GATING**
URL: https://openqa.fedoraproject.org/tests/468117
ID: 468138  Test: arm Minimal-raw_xz-raw.xz 
install_arm_image_deployment_upload
URL: https://openqa.fedoraproject.org/tests/468138

Soft failed openQA tests: 4/143 (x86_64)
(Tests completed, but using a workaround for a known bug)

Old soft failures (same test soft failed in Fedora-Rawhide-20191011.n.1):

ID: 468115  Test: x86_64 Workstation-live-iso desktop_update_graphical
URL: https://openqa.fedoraproject.org/tests/468115
ID: 468177  Test: x86_64 universal upgrade_kde_64bit
URL: https://openqa.fedoraproject.org/tests/468177
ID: 468182  Test: x86_64 universal upgrade_2_kde_64bit
URL: https://openqa.fedoraproject.org/tests/468182
ID: 468184  Test: x86_64 universal install_asian_language
URL: https://openqa.fedoraproject.org/tests/468184

Passed openQA tests: 131/143 (x86_64)

New passes (same test not passed in Fedora-Rawhide-20191011.n.1):

ID: 468070  Test: x86_64 Server-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/468070
ID: 468071  Test: x86_64 Server-boot-iso install_default@uefi
URL: https://openqa.fedoraproject.org/tests/468071
ID: 468105  Test: x86_64 Everything-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/468105
ID: 468106  Test: x86_64 Everything-boot-iso install_default@uefi
URL: https://openqa.fedoraproject.org/tests/468106
ID: 468133  Test: x86_64 KDE-live-iso desktop_notifications_live
URL: https://openqa.fedoraproject.org/tests/468133
ID: 468151  Test: x86_64 universal install_kickstart_firewall_disabled
URL: https://openqa.fedoraproject.org/tests/468151
ID: 468152  Test: x86_64 universal install_kickstart_firewall_configured
URL: https://openqa.fedoraproject.org/tests/468152
ID: 468158  Test: x86_64 universal install_mirrorlist_graphical
URL: https://openqa.fedoraproject.org/tests/468158
ID: 468160  Test: x86_64 universal install_delete_pata@uefi
URL: https://openqa.fedoraproject.org/tests/468160
ID: 468197  Test: x86_64 universal install_kickstart_user_creation
URL: https://openqa.fedoraproject.org/tests/468197
ID: 468202  Test: x86_64 universal install_kickstart_hdd
URL: https://openqa.fedoraproject.org/tests/468202
ID: 468210  Test: x86_64 universal install_arabic_language
URL: https://openqa.fedoraproject.org/tests/468210
ID: 468211  Test: x86_64 universal install_kickstart_nfs
URL: https://openqa.fedoraproject.org/tests/468211

Skipped non-gating openQA tests: 1 of 145

Installed system changes in test x86_64 Server-boot-iso install_default: 
Mount / contents changed to 89.76267715% of previous size
1 services(s) removed since previous compose: getty@tty6.service
Previous test data: https://openqa.fedoraproject.org/tests/467921#downloads
Current test data: https://openqa.fedoraproject.org/tests/468070#downloads

Installed system changes in test x86_64 Server-boot-iso install_default@uefi: 
1 services(s) removed since previous compose: getty@tty6.service
Previous test data: https://openqa.fedoraproject.org/tests/467922#downloads
Current test data: https://openqa.fedoraproject.org/tests/468071#downloads

Installed system changes in test x86_64 Server-dvd-iso install_default@uefi: 
System load changed from 0.04 to 0.17
Previous test data: https://openqa.fedoraproject.org/tests/467925#downloads
Current test data: https://openqa.fedoraproject.org/tests/468074#downloads

Installed system changes in test x86_64 Everything-boot-iso install_default: 
Mount / contents changed to 87.51007768% of previous 

Fedora rawhide compose report: 20191012.n.0 changes

2019-10-12 Thread Fedora Rawhide Report
OLD: Fedora-Rawhide-20191011.n.1
NEW: Fedora-Rawhide-20191012.n.0

= SUMMARY =
Added images:2
Dropped images:  0
Added packages:  1
Dropped packages:0
Upgraded packages:   21
Downgraded packages: 0

Size of added packages:  221.34 KiB
Size of dropped packages:0 B
Size of upgraded packages:   440.23 MiB
Size of downgraded packages: 0 B

Size change of upgraded packages:   -366.60 KiB
Size change of downgraded packages: 0 B

= ADDED IMAGES =
Image: Workstation raw-xz armhfp
Path: 
Workstation/armhfp/images/Fedora-Workstation-armhfp-Rawhide-20191012.n.0-sda.raw.xz
Image: Workstation raw-xz aarch64
Path: 
Workstation/aarch64/images/Fedora-Workstation-Rawhide-20191012.n.0.aarch64.raw.xz

= DROPPED IMAGES =

= ADDED PACKAGES =
Package: libretro-prosystem-0-0.1.20190914gitcb4aa3e.fc32
Summary: Port of ProSystem to the libretro API
RPMs:libretro-prosystem
Size:221.34 KiB


= DROPPED PACKAGES =

= UPGRADED PACKAGES =
Package:  apache-commons-compress-1.19-1.fc32
Old package:  apache-commons-compress-1.18-7.fc32
Summary:  Java API for working with compressed files and archivers
RPMs: apache-commons-compress apache-commons-compress-javadoc
Size: 1.20 MiB
Size change:  51.93 KiB
Changelog:
  * Fri Oct 04 2019 Fabio Valentini  - 1.19-1
  - Update to version 1.19.


Package:  buildah-1.12.0-0.38.dev.gitd6f11ba.fc32
Old package:  buildah-1.12.0-0.37.dev.git68b2aa5.fc32
Summary:  A command line tool used for creating OCI Images
RPMs: buildah
Size: 38.67 MiB
Size change:  -100.15 KiB
Changelog:
  * Fri Oct 11 2019 RH Container Bot  - 
1.12.0-0.38.dev.gitd6f11ba
  - autobuilt d6f11ba


Package:  castget-2.0.0-1.fc32
Old package:  castget-1.2.4-3.fc31
Summary:  A command-line podcast downloader
RPMs: castget
Size: 238.76 KiB
Size change:  9.11 KiB
Changelog:
  * Fri Oct 11 2019 Ed Marshall  - 2.0.0-1
  - Update to 2.0.0.


Package:  gnome-shell-extension-desktop-icons-19.10.2-1.fc32
Old package:  gnome-shell-extension-desktop-icons-19.10.1-1.fc32
Summary:  GNOME Shell extension for providing desktop icons
RPMs: gnome-shell-extension-desktop-icons
Size: 61.15 KiB
Size change:  470 B
Changelog:
  * Sat Oct 12 2019 Artem Polishchuk  - 19.10.2-1
  - Update to 19.10.2


Package:  gnome-software-3.34.1-4.fc32
Old package:  gnome-software-3.34.1-3.fc32
Summary:  A software center for GNOME
RPMs: gnome-software gnome-software-devel gnome-software-editor 
gnome-software-rpm-ostree
Size: 33.67 MiB
Size change:  17.21 KiB
Changelog:
  * Fri Oct 11 2019 Richard Hughes  - 3.34.1-4
  - Backport a simpler to correct the installed applications
  - Resolves #1759193


Package:  grafana-pcp-1.0.0-1.fc32
Old package:  grafana-pcp-0.0.7-1.fc32
Summary:  Performance Co-Pilot Grafana Plugin
RPMs: grafana-pcp
Size: 412.55 KiB
Size change:  325.40 KiB
Changelog:
  * Fri Oct 11 2019 Andreas Gerstmayr  1.0.0-1
  - bpftrace: support for Flame Graphs
  - bpftrace: context-sensitive auto completion for bpftrace probes, builtin 
variables and functions incl. help texts
  - bpftrace: parse output of bpftrace scripts (e.g. using `printf()`) as CSV 
and display it in the Grafana table panel
  - bpftrace: sample dashboards (BPFtrace System Analysis, BPFtrace Flame 
Graphs)
  - vector: table output: show instance name in left column
  - vector: table output: support non-matching instance names (cells of metrics 
which don't have the specific instance will be blank)
  - vector & bpftrace: if the metric/script gets changed in the query editor, 
immeditately stop polling the old metric/deregister the old script
  - vector & bpftrace: improve pmwebd compatibility
  - misc: help texts for all datasources (visible with the **[ ? ]** button in 
the query editor)
  - misc: renamed PCP Live to PCP Vector
  - misc: logos for all datasources
  - misc: improved error handling


Package:  hedgewars-1.0.0-1.fc32
Old package:  hedgewars-0.9.25-9.fc32
Summary:  Funny turn-based artillery game, featuring fighting Hedgehogs!
RPMs: hedgewars hedgewars-data hedgewars-server
Size: 150.11 MiB
Size change:  1.03 MiB
Changelog:
  * Fri Oct 11 2019 Richard Shaw  - 1.0.0-1
  - Update to 1.0.0.


Package:  libguestfs-1:1.41.5-1.fc32
Old package:  libguestfs-1:1.41.4-1.fc32
Summary:  Access and modify virtual machine disk images
RPMs: erlang-libguestfs libguestfs libguestfs-bash-completion 
libguestfs-benchmarking libguestfs-devel libguestfs-forensics libguestfs-gfs2 
libguestfs-gobject libguestfs-gobject-devel libguestfs-hfsplus 
libguestfs-inspect-icons libguestfs-jfs libguestfs-man-pages-ja 
libguestfs-man-pages-uk libguestfs-nilfs libguestfs-reiserfs libguestfs-rescue 
libguestfs-rsync libguestfs-tools libguestfs-tools-c libguestfs-ufs 
libguestfs-xfs libguestfs-zfs lua-guestfs ocaml-libguestfs 
ocaml-libguest

[Bug 1757301] Upgrade perl-Net-FTPSSL to 0.42

2019-10-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1757301

Emmanuel Seyman  changed:

   What|Removed |Added

 Status|NEW |CLOSED
   Fixed In Version||perl-Net-FTPSSL-0.42-1.fc32
 Resolution|--- |RAWHIDE
Last Closed||2019-10-12 07:16:39



--- Comment #1 from Emmanuel Seyman  ---
Built for rawhide:
https://koji.fedoraproject.org/koji/buildinfo?buildID=1396904

-- 
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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


[Bug 1758685] perl-HTML-Form-6.05 is available

2019-10-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1758685

Emmanuel Seyman  changed:

   What|Removed |Added

 Status|NEW |CLOSED
   Fixed In Version||perl-HTML-Form-6.05-1.fc32
 Resolution|--- |RAWHIDE
Last Closed||2019-10-12 07:14:16



--- Comment #1 from Emmanuel Seyman  ---
Built for rawhide:
https://koji.fedoraproject.org/koji/buildinfo?buildID=1396871

-- 
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
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


Re: Question regarding systemd service unit cleanup

2019-10-12 Thread Ravindra Kumar via devel
> You need something like this in a scriptlet:
> if systemctl is-enabled A; systemctl reenable A; done
>
> This will remove the old links and create the new ones.

Thanks Zbigniew for the idea. It seemed very promising and I tried it. 
Unfortunately, it still did not help because "reenable" command seems to 
recreate the links based on the service unit file which is newer and does not 
reference the dropped dependency. So, the old link to service B was still left 
around.

The only working solution I have found is to disable service B explicitly in 
post install scriptlet when it is called during upgrade.

Thanks,
Ravindra
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org