Re: Docker/Libvirt networking issue / bug?

2016-10-14 Thread Nathanael D. Noblet
On Thu, 2016-10-06 at 14:02 -0500, Dan Williams wrote:
> 
> Try running 'iptables-save' before you start docker, and then running
> 'iptables-save' after.  Diff the results.  Did docker remove
> anything?

Hello,

  So this seems to be the source of the problem but I'm a little out of
my depth to all its doing.

So I've attached three files

[1] iptables.onBoot (which is iptables after a clean boot)
[2] iptables.afterDockerService (which is iptables after systemctl
start docker)
[3] iptables.diff ( the difference between the two files where I've
removed differences that don't matter like packet counts etc).

So this seems like docker doesn't play well with libvirtd? Should I be
filing a bug on docker? Or is this just a mis-configuration on my part?
I don't think I've changed either libvirtd/qemu or docker's default
configuration. Other than my VMs all attach to bridge0 instead of using
NAT.

I'll start looking up what the -m addrtype --dst-type LOCAL does and
all the docker related rules that are added but I'm really not sure
what's going on. Particularly since VMs that are running and network
connected when before I run a docker container continue to be. Only VMs
brought up after that aren't. Also at a minimum if I stop the docker
service I would expect these rules to go away which they don't. For
example after systemctl stop docker I still have docker0 bridge
interface up and 

[gnat@iridium ~]$ sudo iptables -L -n | grep DOCKER
DOCKER-ISOLATION  all  --  0.0.0.0/00.0.0.0/0   
DOCKER all  --  0.0.0.0/00.0.0.0/0   
Chain DOCKER (1 references)
Chain DOCKER-ISOLATION (1 references)

still shows the chains are in place...# Generated by iptables-save v1.6.0 on Fri Oct 14 14:49:48 2016
*nat
:PREROUTING ACCEPT [25:1604]
:INPUT ACCEPT [0:0]
:OUTPUT ACCEPT [126:9336]
:POSTROUTING ACCEPT [126:9336]
:DOCKER - [0:0]
:OUTPUT_direct - [0:0]
:POSTROUTING_ZONES - [0:0]
:POSTROUTING_ZONES_SOURCE - [0:0]
:POSTROUTING_direct - [0:0]
:POST_FedoraWorkstation - [0:0]
:POST_FedoraWorkstation_allow - [0:0]
:POST_FedoraWorkstation_deny - [0:0]
:POST_FedoraWorkstation_log - [0:0]
:POST_dmz - [0:0]
:POST_dmz_allow - [0:0]
:POST_dmz_deny - [0:0]
:POST_dmz_log - [0:0]
:POST_trusted - [0:0]
:POST_trusted_allow - [0:0]
:POST_trusted_deny - [0:0]
:POST_trusted_log - [0:0]
:PREROUTING_ZONES - [0:0]
:PREROUTING_ZONES_SOURCE - [0:0]
:PREROUTING_direct - [0:0]
:PRE_FedoraWorkstation - [0:0]
:PRE_FedoraWorkstation_allow - [0:0]
:PRE_FedoraWorkstation_deny - [0:0]
:PRE_FedoraWorkstation_log - [0:0]
:PRE_dmz - [0:0]
:PRE_dmz_allow - [0:0]
:PRE_dmz_deny - [0:0]
:PRE_dmz_log - [0:0]
:PRE_trusted - [0:0]
:PRE_trusted_allow - [0:0]
:PRE_trusted_deny - [0:0]
:PRE_trusted_log - [0:0]
-A PREROUTING -j PREROUTING_direct
-A PREROUTING -j PREROUTING_ZONES_SOURCE
-A PREROUTING -j PREROUTING_ZONES
-A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER
-A OUTPUT -j OUTPUT_direct
-A OUTPUT ! -d 127.0.0.0/8 -m addrtype --dst-type LOCAL -j DOCKER
-A POSTROUTING -s 172.17.0.0/16 ! -o docker0 -j MASQUERADE
-A POSTROUTING -s 192.168.121.0/24 -d 224.0.0.0/24 -j RETURN
-A POSTROUTING -s 192.168.121.0/24 -d 255.255.255.255/32 -j RETURN
-A POSTROUTING -s 192.168.121.0/24 ! -d 192.168.121.0/24 -p tcp -j MASQUERADE 
--to-ports 1024-65535
-A POSTROUTING -s 192.168.121.0/24 ! -d 192.168.121.0/24 -p udp -j MASQUERADE 
--to-ports 1024-65535
-A POSTROUTING -s 192.168.121.0/24 ! -d 192.168.121.0/24 -j MASQUERADE
-A POSTROUTING -j POSTROUTING_direct
-A POSTROUTING -j POSTROUTING_ZONES_SOURCE
-A POSTROUTING -j POSTROUTING_ZONES
-A DOCKER -i docker0 -j RETURN
-A POSTROUTING_ZONES -o em1 -g POST_dmz
-A POSTROUTING_ZONES -o bridge0 -g POST_dmz
-A POSTROUTING_ZONES -o virbr0 -j POST_trusted
-A POSTROUTING_ZONES -o virbr0-nic -j POST_trusted
-A POSTROUTING_ZONES -g POST_FedoraWorkstation
-A POSTROUTING_ZONES_SOURCE -d 192.168.121.0/24 -g POST_dmz
-A POSTROUTING_ZONES_SOURCE -d 192.168.4.0/24 -g POST_dmz
-A POST_FedoraWorkstation -j POST_FedoraWorkstation_log
-A POST_FedoraWorkstation -j POST_FedoraWorkstation_deny
-A POST_FedoraWorkstation -j POST_FedoraWorkstation_allow
-A POST_dmz -j POST_dmz_log
-A POST_dmz -j POST_dmz_deny
-A POST_dmz -j POST_dmz_allow
-A POST_trusted -j POST_trusted_log
-A POST_trusted -j POST_trusted_deny
-A POST_trusted -j POST_trusted_allow
-A PREROUTING_ZONES -i em1 -g PRE_dmz
-A PREROUTING_ZONES -i bridge0 -g PRE_dmz
-A PREROUTING_ZONES -i virbr0 -j PRE_trusted
-A PREROUTING_ZONES -i virbr0-nic -j PRE_trusted
-A PREROUTING_ZONES -g PRE_FedoraWorkstation
-A PREROUTING_ZONES_SOURCE -s 192.168.121.0/24 -g PRE_dmz
-A PREROUTING_ZONES_SOURCE -s 192.168.4.0/24 -g PRE_dmz
-A PRE_FedoraWorkstation -j PRE_FedoraWorkstation_log
-A PRE_FedoraWorkstation -j PRE_FedoraWorkstation_deny
-A PRE_FedoraWorkstation -j PRE_FedoraWorkstation_allow
-A PRE_dmz -j PRE_dmz_log
-A PRE_dmz -j PRE_dmz_deny
-A PRE_dmz -j PRE_dmz_allow
-A PRE_trusted -j PRE_trusted_log
-A PRE_trusted -j PRE_trusted_deny
-A PRE_trusted -j PRE_trusted_allow

Re: [ANITYA] easy way to strip suffix from version

2016-10-14 Thread Pierre-Yves Chibon
On Fri, Oct 14, 2016 at 12:10:25PM +0200, Björn "besser82" Esser wrote:
> Am 14.10.2016 um 11:54 schrieb Pierre-Yves Chibon:
> > On Fri, Oct 14, 2016 at 10:41:15AM +0200, Björn "besser82" Esser wrote:
> > > Hello together,
> > > 
> > > is there an easy solution, maybe by regex, to strip a suffix, e.g. 
> > > '.orig',
> > > from the version-string found by Anitya / release-monitoring?
> > The easiest is likely to just edit the regex to account for it.
> > 
> 
> Thank you!  Do you have a quick example for me?

Do you have the URL to the project in anitya?
The default regex is documented at: https://release-monitoring.org/about under
the list of backends but some backends have their own regex.

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


Re: [ANITYA] easy way to strip suffix from version

2016-10-14 Thread Pierre-Yves Chibon
On Fri, Oct 14, 2016 at 10:41:15AM +0200, Björn "besser82" Esser wrote:
> Hello together,
> 
> is there an easy solution, maybe by regex, to strip a suffix, e.g. '.orig',
> from the version-string found by Anitya / release-monitoring?

The easiest is likely to just edit the regex to account for it.


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


Schedule for Friday's FESCo Meeting (2016-10-14)

2016-10-14 Thread Parag Nemade
Following is the list of topics that will be discussed in the
FESCo meeting Friday at 16:00UTC in #fedora-meeting onirc.freenode.net.

If needed any more topics to discuss we can discuss it in Open Floor.

 To convert UTC to your local time, take a look at
  http://fedoraproject.org/wiki/UTCHowto

or run:
  date -d '2016-10-14 16:00 UTC'


Links to all tickets below can be found at:
https://fedorahosted.org/fesco/report/9

= Followups =

#topic #1626 Release blocking deliverables for Fedora 25
.fesco 1626https://fedorahosted.org/fesco/ticket/1626

= New business =

#topic #1635 F26 Self Contained Changes
.fesco 1635https://fedorahosted.org/fesco/ticket/1635
#topic #1634 EOL and vulnerable software
.fesco 1634https://fedorahosted.org/fesco/ticket/1634

= Open Floor =

For more complete details, please visit each individual
ticket.  The report of the agenda items can be found
athttps://fedorahosted.org/fesco/report/9

If you would like to add something to this agenda, you can
reply to this e-mail, file a new ticket
athttps://fedorahosted.org/fesco, e-mail me directly, or bring it
up at the end of the meeting, during the open floor topic. Note
that added topics may be deferred until the following meeting.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[ANITYA] easy way to strip suffix from version

2016-10-14 Thread besser82

Hello together,

is there an easy solution, maybe by regex, to strip a suffix, e.g. 
'.orig', from the version-string found by Anitya / release-monitoring?


Cheers,
  Björn
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: [ANITYA] easy way to strip suffix from version

2016-10-14 Thread besser82

Am 14.10.2016 um 11:54 schrieb Pierre-Yves Chibon:

On Fri, Oct 14, 2016 at 10:41:15AM +0200, Björn "besser82" Esser wrote:

Hello together,

is there an easy solution, maybe by regex, to strip a suffix, e.g. '.orig',
from the version-string found by Anitya / release-monitoring?

The easiest is likely to just edit the regex to account for it.


Pierre


Thank you!  Do you have a quick example for me?
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: [ANITYA] easy way to strip suffix from version

2016-10-14 Thread besser82

Am 14.10.2016 um 12:28 schrieb Pierre-Yves Chibon:

On Fri, Oct 14, 2016 at 12:10:25PM +0200, Björn "besser82" Esser wrote:

Am 14.10.2016 um 11:54 schrieb Pierre-Yves Chibon:

On Fri, Oct 14, 2016 at 10:41:15AM +0200, Björn "besser82" Esser wrote:

Hello together,

is there an easy solution, maybe by regex, to strip a suffix, e.g. '.orig',
from the version-string found by Anitya / release-monitoring?

The easiest is likely to just edit the regex to account for it.


Thank you!  Do you have a quick example for me?

Do you have the URL to the project in anitya?
The default regex is documented at: https://release-monitoring.org/about under
the list of backends but some backends have their own regex.

Pierre


Thank you again!  Problem solved!  =)
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: /sbin/nologin in /etc/shells

2016-10-14 Thread Jakub Svoboda
1) /sbin/nologin does display a nice message upon login, while /bin/false
does not.
2) /sbin/nologin displays the message upon login regardless of whether it
is in /etc/shells or not.
These two sentences ^^ describe two independent properties. Nobody loses
the "message upon login" feature of nologin by nologin being removed from
shells.

Let's look at the history of /sbin/nologin. According to the OpenBSD man
pages nologin was introduced in 4.4BSD.

4.4BSD has both /sbin/nologin [1] and /etc/shells [2]. /sbin/nologin is not
in /etc/shells. (I tried to search for the string "nologin" to see whether
there is a setup script that adds /sbin/nologin to /etc/shells and found
nothing [6].) So, we might think the makers of nologin either didn't want
to include it or made a mistake. Since the current OpenBSD still doesn't
include /sbin/nologin in /etc/shells, I'd guess it has been intentional all
along.

The behavior of su in 4.4BSD is to disallow a change to a shell not listed
in /etc/shells. su in 4.4BSD doesn't have the -s switch but does have the
-m switch and it uses getusershell() [3]. getusershell() reads /etc/shells
[4]. Internally, su has a function that changes the user shell (with -m) if
it is in /etc/shells [5].

The original source code of su [5] is short and quite readable. It's clear
that adding /sbin/nologin to /etc/shells in 4.4BSD would break the
assumptions laid down by the man pages, the source code, and by the
apparent meaning of nologin's name. The current man pages in Fedora do not
suggest a change in the philosophy of /etc/shells, su, or nologin.


[1] https://github.com/sergev/4.4BSD-Lite2/tree/master/usr/src/sbin/nologin
[2] https://github.com/sergev/4.4BSD-Lite2/blob/master/etc/shells
[3] http://man.openbsd.org/4.4BSD-Lite2/man1/su.1
[4] http://man.openbsd.org/4.4BSD-Lite2/getusershell.3
[5]
https://github.com/sergev/4.4BSD-Lite2/blob/master/usr/src/usr.bin/su/su.c#L246
[6]
https://github.com/sergev/4.4BSD-Lite2/search?p=1=nologin=%E2%9C%93

--
Jakub Svoboda / Red Hat Product Security
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: redhat-rpm-config config.sub/guess are old

2016-10-14 Thread Pavel Raiskup
On Thursday, October 13, 2016 4:50:20 PM CEST Richard W.M. Jones wrote:
> Also automake which carries config.sub and config.guess around too.
> Perhaps these should be combined?!

I don't think merging is right way to do.  To be honest, I should update
gnuconfig files in automake more often than I've done so far.  That's because
automake brings sources into autotooled distribution tarballs, and those should
be upd2date.

On the other hand, updating gnuconfig files in redhat-rpm-config is something
which is used by %configure, and something which is worth updating once we have
a request for it.

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


[Test-Announce] 2016-10-17 @ 16:00 UTC - Fedora 25 Blocker Review

2016-10-14 Thread Adam Williamson
# F25 Blocker Review meeting
# Date: 2016-10-17
# Time: 16:00 UTC
# Location: #fedora-blocker-review on irc.freenode.net

Hi folks! We currently have 4 proposed Final blockers to review. There
are also 10 accepted Final blockers to check in on.

If you have time this weekend, you can take a look at the proposed or
accepted blockers before the meeting -  the full lists can be found
here: https://qa.fedoraproject.org/blockerbugs/ .

We'll be evaluating these bugs to see if they violate any of the 
Release Criteria and warrant the blocking of a release if they're not 
fixed. Information on the release criteria for F25 can be found on the 
wiki [0].

For more information about the Blocker and Freeze exception process, 
check out these links:
 - https://fedoraproject.org/wiki/QA:SOP_blocker_bug_process
 - https://fedoraproject.org/wiki/QA:SOP_freeze_exception_bug_process

And for those of you who are curious how a Blocker Review Meeting 
works - or how it's supposed to go and you want to run one - check out 
the SOP on the wiki:
 - https://fedoraproject.org/wiki/QA:SOP_Blocker_Bug_Meeting

Have a good weekend and see you on Monday!

[0] https://fedoraproject.org/wiki/Fedora_Release_Criteria
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . net
http://www.happyassassin.net
___
test-announce mailing list -- test-annou...@lists.fedoraproject.org
To unsubscribe send an email to test-announce-le...@lists.fedoraproject.org
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: [HEADS UP] openbabel-2.4 update (ABI bump)

2016-10-14 Thread Dominik 'Rathann' Mierzejewski
On Tuesday, 11 October 2016 at 15:34, Dominik 'Rathann' Mierzejewski wrote:
> Hello,
> I've just pushed (not built yet) openbabel-2.4.1 in rawhide. I rebuilt
> all the affected packages locally to ensure there are no issues.
> The only thing failing is xdrawchem, which I maintain and that's
> not due to openbabel update anyway.
> 
> Affected packages which I'll be rebuilding later today, after openbabel:
> IQmol
> avogadro
> ghemical
> gnome-chemistry-utils
> kalzium
> xdrawchem

All rebuilt, finally.

Regards,
Dominik
-- 
Fedora http://fedoraproject.org/wiki/User:Rathann
RPMFusion http://rpmfusion.org
"Faith manages."
-- Delenn to Lennier in Babylon 5:"Confessions and Lamentations"
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[Test-Announce] Fedora 25 Workstation Wayland-by-default Test Day report

2016-10-14 Thread Adam Williamson
Hi folks! [Yesterday's Test Day][1] on Wayland-by-default was a great
success! Here's the Test Day report.

49 testers combined ran a total of 341 tests and filed or referenced 35
bugs. 9 of those have since been closed as duplicates, leaving 26 open
reports:

*   [#1299505][2] gnome-calculator prints "Currency LTL is not provided by IMF 
or ECB" in Financial mode
*   [#1330034][3] [abrt] calibre: QObject::disconnect() : python2.7 killed by 
SIGSEGV
*   [#1367846][4] Scrolling is way too fast in writer
*   [#1376471][5] global menu can't be used for 15-30 seconds, startup 
notification stuck, missing item in alt+tab (on wayland) 
*   [#1379098][6] [Regression] Gnome-shell crashes on switching back from tty 
([abrt] gnome-shell: wl_resource_post_event() : gnome-shell killed by SIGSEGV) 
*   [#1383471][7] [abrt] WARNING: CPU: 3 PID: 12176 at 
./include/linux/swap.h:276 page_cache_tree_insert+0x1cc/0x1e0
*   [#1384431][8] activities screen shows applications and search results at 
the same time
*   [#1384440][9] dragging gnome dash application to a specific workplace 
doesn't open the application to this workspace (on wayland) 
*   [#1384489][10] Music not recognizing/importing files
*   [#1384502][11] Recent tab not available
*   [#1384537][12] Opening a new gnome-software window creates a new entry 
without a proper icon
*   [#1384546][13] Removing application does not bring back the install icon 
immediately
*   [#1384551][14] Printing directions using maps do not show the marked path
*   [#1384560][15] Screenshot of gnome-maps does not show the map part at all
*   [#1384569][16] Places dropdown search does not function if weather is open 
on secondary monitor
*   [#1384570][17] gnome-initial-setup does not exit at the end
*   [#1384572][18] Places dropdown search does not function if clocks is open 
on secondary monitor
*   [#1384590][19] [abrt] gnome-photos: babl_get_name() : gnome-photos killed 
by SIGABRT
*   [#1384596][20] gnome-boxes: starting fails without any feedback
*   [#1384599][21] gnome-calculator currency conversion is hard to use
*   [#1384616][22] thumbnail "border" seems misaligned in activities overview
*   [#1384651][23] Selecting city should automatically be added on Clock 
Application
*   [#1384665][24] [abrt] authconfig-gtk: 
gdk_window_enable_synchronized_configure() : python2.7 killed by SIGSEGV
*   [#1384671][25] system-config-language does not work under Wayland
*   [#1384675][26] system-config-users does not work under Wayland
*   [#1384678][27] Missing top-left icon (and full application name) on Wayland

Some of these are not Wayland bugs, but it's not a bad thing that
people found some non-Wayland bugs as well while testing! We did find
several new Wayland issues, but on the positive side, no really big
bugs that weren't already known and on the radar for the final release.

So the event looks like a success on all fronts: we found some new bugs
to squish, but it also gives us a decent indication that the
Workstation-on-Wayland experience is in a good enough condition for a
first stable release. We also confirmed that the Workstation-on-X11
session is available as a fallback and that works properly, for anyone
who can't use Wayland for any reason.

Many thanks to all the testers for their hard work!

 [1]: https://fedoraproject.org/wiki/Test_Day:2016-10-13_Wayland
 [2]: https://bugzilla.redhat.com/show_bug.cgi?id=1299505
 [3]: https://bugzilla.redhat.com/show_bug.cgi?id=1330034
 [4]: https://bugzilla.redhat.com/show_bug.cgi?id=1367846
 [5]: https://bugzilla.redhat.com/show_bug.cgi?id=1376471
 [6]: https://bugzilla.redhat.com/show_bug.cgi?id=1379098
 [7]: https://bugzilla.redhat.com/show_bug.cgi?id=1383471
 [8]: https://bugzilla.redhat.com/show_bug.cgi?id=1384431
 [9]: https://bugzilla.redhat.com/show_bug.cgi?id=1384440
 [10]: https://bugzilla.redhat.com/show_bug.cgi?id=1384489
 [11]: https://bugzilla.redhat.com/show_bug.cgi?id=1384502
 [12]: https://bugzilla.redhat.com/show_bug.cgi?id=1384537
 [13]: https://bugzilla.redhat.com/show_bug.cgi?id=1384546
 [14]: https://bugzilla.redhat.com/show_bug.cgi?id=1384551
 [15]: https://bugzilla.redhat.com/show_bug.cgi?id=1384560
 [16]: https://bugzilla.redhat.com/show_bug.cgi?id=1384569
 [17]: https://bugzilla.redhat.com/show_bug.cgi?id=1384570
 [18]: https://bugzilla.redhat.com/show_bug.cgi?id=1384572
 [19]: https://bugzilla.redhat.com/show_bug.cgi?id=1384590
 [20]: https://bugzilla.redhat.com/show_bug.cgi?id=1384596
 [21]: https://bugzilla.redhat.com/show_bug.cgi?id=1384599
 [22]: https://bugzilla.redhat.com/show_bug.cgi?id=1384616
 [23]: https://bugzilla.redhat.com/show_bug.cgi?id=1384651
 [24]: https://bugzilla.redhat.com/show_bug.cgi?id=1384665
 [25]: https://bugzilla.redhat.com/show_bug.cgi?id=1384671
 [26]: https://bugzilla.redhat.com/show_bug.cgi?id=1384675
 [27]: https://bugzilla.redhat.com/show_bug.cgi?id=1384678
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . 

Re: Someone needs to stop texlive madness!!!

2016-10-14 Thread Tomasz Kłoczko
> "TeX live is maintained IMO by real MORONS."

> is what you wrote.

Yes it is.

Probably you never had occasion to have closer look what exactly is
maintained in texlive source tree.
I had fist time been trying to contemplate what exactly is texlive tree
about 9 years ago.
What was scarry 9 years ago now is even more scary today.
Will try to present you what is in texlive today over now available
rpm packages.
So lets go alphabetically:

Name: texlive-ESIEEcv
Summary : Curriculum vitae for French use
Description :
The package allows the user to set up a curriculum vitae as a
French employer will expect.

Package contains style template to write some CV. Using google you can find
few examples of how it looks like.
Number of google results: ~2.9k. I can give anyone £10 to anyone who in
last 5 years been using this template installed on any Linux distro
installed from packages to wrote own CV.

Name: texlive-allrunes
Summary : Fonts and LaTeX package for almost all runes
Description :
This large collection of fonts (in Adobe Type 1 format), with
the LaTeX package gives access to almost all runes ever used in
Europe. The bundle covers not only the main forms but also a
lot of varieties.

Few questions:
What is the size of the cross section of the sets: "we are using Linux" and
"we uses runes fonts"?
Maybe few artist in whole word are using runes .. how many of them are
using Linux?
Why those vectorised resources are only available as TeX users?
Why TeX is not prepared to use system wide Type1 font and is not able to
share those fonts with other applications?
Why most Type1/TTF fonts are at least served three times as: ghoscript
fonts, X11/Weyland fonts and TeX fonts?
Why TeX live is not able to share those fonts with other applications?
Maybe someone who what to quickly prepare some post card want to use those
runes as some funny markings? However probability that he/she will use TeX
is probably the same as probability that bucket of water left on open fire
will freeze (according to quantum physics probability of something like
this is greater than zero) and probably more likely will try to use
LibreOffice. Isn't it?
Does Fedora really need to regenerate package with these fonts every time
when someone will change even single bit in any TeX live resources?

Name: texlive-a2ping
Summary : Advanced PS, PDF, EPS converter
Description :
a2ping is a Perl script command line utility written for Unix
that converts many raster image and vector graphics formats to
EPS or PDF and other page description formats. Accepted input
file formats are: PS (PostScript), EPS, PDF, PNG, JPEG, TIFF,
PNM, BMP, GIF, LBM, XPM, PCX, TGA. Accepted output formats are:
EPS, PCL5, PDF, PDF1, PBM, PGM, PPM, PS, markedEPS, markedPS,
PNG, XWD, BMP, TIFF, JPEG, GIF, XPM. a2ping delegates the low-
level work to Ghostscript (GS), pdftops and sam2p. a2ping fixes
many glitches during the EPS to EPS conversion, so its output
is often more compatible and better embeddable than its input.

If anyone today will need to convert any of those formats to EPS or PDF
more likely will use convert from ImageMagic.
Isn't it?

I'll stop here after only three examples but still more than 2.5k more
remains.
Really please try to go package by package. In source texlive tree all this
garbage has own .tlpobj file marking this as separated TeX package where in
reality most of those resources are needed by anyone. In most cases they
are kind of examples, POCs or something which was useful but 10 years ago.

I don't remember name of this TeX package but I'm almost 100% sure that it
is still in texlive tree somewhere. "The Package" generates using metapost
cube view with visable only one side, two sides and EVEN THREE sides!!! 8-O
As example of generating some graphics it was obsolete in the time when
people started using Corel Draw in Win 3.11 era (anyone remember this
program?).

Probably more than 50% (if not more than 80%) of the TeX live is like this.
Most of the resources should be archived and preserved for next generation
cyber archeologist however now they should not be served as regular rpm
packages because it will make look Fedora stupid ("who is more stupid?
someone who is stupid or someone else who follows stupid one?").

I'm pretty sure that someone who had this grand idea converting TeX
packages to rpm packages never red even 5% of the descriptions of those
"packages" stored in .tlpobj files or been trying to as themselves "do I
really need to package this TeX package as rpm one?"

And now back to what I wrote about TeX maintainers.
TeX live is more like black hole sucking every bit of anything related to
TeX. Ones something stored in the tree doesn't matter is it still usefull
or not still will be "maintained". Those people are thinking that they are
doing great job but in reality as now TeX live holds probably almost
everything what was produced as TeX tool/example it shows how small this
world is.

What happens 

Summary/Minutes from today's FESCo Meeting (2016-10-14)

2016-10-14 Thread Parag Nemade
Hi,
   Thanks to Kevin for running this meeting.

===
#fedora-meeting: FESCO (2016-10-14)
===


Meeting started by paragan at 16:00:37 UTC. The full logs are available
at
https://meetbot.fedoraproject.org/fedora-meeting/2016-10-14/fesco.2016-10-14-16.00.log.html
.



Meeting summary
---
* init process  (paragan, 16:00:38)

* #1626 Release blocking deliverables for Fedora 25  (paragan, 16:03:56)
  * LINK: https://fedorahosted.org/fesco/ticket/1626   (paragan,
16:03:57)
  * AGREED: Accept the current status of Release blocking deliverables
as given on its wiki page and close the ticket (+6,0,0)  (nirik,
16:16:57)

* #1635 F26 Self Contained Changes  (nirik, 16:17:30)
  * AGREED: self contained changes approved (+5,0,0)  (nirik, 16:22:45)

* #1634 EOL and vulnerable software  (nirik, 16:23:07)
  * will discuss more on list/ticket and revisit next week  (nirik,
16:42:17)

* Next weeks chair  (nirik, 16:42:38)
  * maxamillion to chair next week  (nirik, 16:43:16)

* Open Floor  (nirik, 16:43:20)

Meeting ended at 16:46:49 UTC.




Action Items






Action Items, by person
---
* **UNASSIGNED**
  * (none)




People Present (lines said)
---
* nirik (52)
* mhroncok (24)
* kalev_ (18)
* zodbot (14)
* paragan (14)
* jwb (14)
* maxamillion (13)
* cstratak (5)
* nb (4)
* sgallagh (0)
* kalev (0)
* Rathann (0)
* jsmith (0)
* dgilmore (0)




Generated by `MeetBot`_ 0.1.4

.. _`MeetBot`: http://wiki.debian.org/MeetBot
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: [POC-change] Fedora packages point of contact updates

2016-10-14 Thread Tim Orling
Looking at the upstream [0], it says "An obsolete library. Don't use it in
new projects."


So we should probably decide what to do with it. I would be willing to pick
it up, but since it won't see any new development according to upstream, we
should "do the right thing".

[0]: https://github.com/algernon/libmongo-client

On Fri, Oct 14, 2016 at 12:26 PM, Till Maas  wrote:

> On Mon, Oct 03, 2016 at 10:00:09AM +, nob...@fedoraproject.org wrote:
> > Change in package status over the last 168 hours
> > 
>
> > libmongo-client [f23, master, epel7, f24] was orphaned by kevin
> >  Alternative C driver for MongoDB
> >  https://admin.fedoraproject.org/pkgdb/package/libmongo-client
>
> 3306 packages depend on this via rsyslog (and perl) or syslog-ng. Are
> there plans to drop support for mongodb in the logging daemons or is
> there someone willing to adopt libmongo-client?
>
> Kind regards
> Till
> ___
> devel mailing list -- devel@lists.fedoraproject.org
> To unsubscribe send an email to devel-le...@lists.fedoraproject.org
>
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: dotnet on Fedora

2016-10-14 Thread Tim Orling
FYI,

I'm quite involved with upstream IronPython [0] and plan to eventually
package IronPython [1] (and ironpython3 [2] when it is ready) for Fedora.
Also, come join us if you are interested [3].

Cheers.
Tim "moto-timo"
FAS: ttorling

[0]: http://ironpython.net
[1]:
https://github.com/IronLanguages/main/tree/ipy-2.7-maint/Languages/IronPython
[2]: https://github.com/IronLanguages/ironpython3
[3]: https://gitter.im/IronLanguages/main


On Fri, Oct 14, 2016 at 11:08 AM, Radka Janekova 
wrote:

> Yes and no, it will evolve... there will be info about dotnet itself which
> has nothing to do witht he sig... a bit too exhausted to explain today (im
> after surgery that went wrong) but you can leave questions or suggestions
> here or catch me on irc tomorrow.
>
>
>
>
> Best regards,
> Radka
>
> --
> *Radka Janeková*
> *radka.ja...@redhat.com *
>
>
> On Fri, Oct 14, 2016 at 7:27 PM, Miro Hrončok  wrote:
>
>> On 14.10.2016 18:50, Radka Janekova wrote:
>>
>>> Hello there,
>>>
>>> I'd like to introduce new SIG to you, i'm RHs dotnet person and when i
>>> noticed that Fedora lacks any dotnet presence I felt like I need to
>>> change that =)
>>>
>>> Feel free to join up, team up, discuss C# stuffs and eventually I hope
>>> that we can get into crafting reliable packages!
>>>
>>> Wiki: https://fedoraproject.org/wiki/DotNet
>>> 
>>>
>>
>> Shouldn't that be https://fedoraproject.org/wiki/SIGs/DotNet ?
>>
>> List: https://lists.fedoraproject.org/admin/lists/dotnet-sig.lists
>>> .fedoraproject.org
>>> >> s.fedoraproject.org>
>>> IRC: #fedora-dotnet
>>>
>>> Taking it slowly though, please don't expect miracles yet :]
>>>
>>> Best regards,
>>> Radka
>>>
>>> 
>>> *Radka Janeková*
>>> *radka.ja...@redhat.com *
>>>
>>>
>>>
>>> ___
>>> devel mailing list -- devel@lists.fedoraproject.org
>>> To unsubscribe send an email to devel-le...@lists.fedoraproject.org
>>>
>>>
>> --
>> Miro Hrončok
>> --
>> Phone: +420777974800
>> IRC: mhroncok
>> ___
>> devel mailing list -- devel@lists.fedoraproject.org
>> To unsubscribe send an email to devel-le...@lists.fedoraproject.org
>>
>
>
> ___
> devel mailing list -- devel@lists.fedoraproject.org
> To unsubscribe send an email to devel-le...@lists.fedoraproject.org
>
>
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: F25: user system_u not in password file

2016-10-14 Thread Orion Poplawski

On 10/14/2016 12:54 PM, Francisco J. Tsao Santin wrote:

Hi,

Yesterday I was upgrading from 24 stable to F25 beta, and I saw this message
while upgrading some SELinux related packages:
[...]
 Upgrading   : selinux-policy-3.13.1-218.fc25.noarch
916/3612
libsemanage.add_user: user system_u not in password file
[...]
  Upgrading   : selinux-policy-targeted-3.13.1-218.fc25.noarch  
 964/3612
libsemanage.add_user: user system_u not in password file
mmap: Invalid argument
[...]
  Upgrading   : docker-selinux-2:1.12.1-13.git9a3752d.fc25.x86_64   
 965/3612
libsemanage.add_user: user system_u not in password file
mmap: Invalid argument

It seems it's harmless, but I comment it for packagers review ;-)


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

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


Re: [Test-Announce] Fedora 25 Workstation Wayland-by-default Test Day report

2016-10-14 Thread Abdel G . Martínez L .
Great work on this Test Day!

2016-10-14 17:33 GMT-05:00 Adam Williamson :

> Hi folks! [Yesterday's Test Day][1] on Wayland-by-default was a great
> success! Here's the Test Day report.
>
> 49 testers combined ran a total of 341 tests and filed or referenced 35
> bugs. 9 of those have since been closed as duplicates, leaving 26 open
> reports:
>
> *   [#1299505][2] gnome-calculator prints "Currency LTL is not provided by
> IMF or ECB" in Financial mode
> *   [#1330034][3] [abrt] calibre: QObject::disconnect() : python2.7 killed
> by SIGSEGV
> *   [#1367846][4] Scrolling is way too fast in writer
> *   [#1376471][5] global menu can't be used for 15-30 seconds, startup
> notification stuck, missing item in alt+tab (on wayland)
> *   [#1379098][6] [Regression] Gnome-shell crashes on switching back from
> tty ([abrt] gnome-shell: wl_resource_post_event() : gnome-shell killed by
> SIGSEGV)
> *   [#1383471][7] [abrt] WARNING: CPU: 3 PID: 12176 at
> ./include/linux/swap.h:276 page_cache_tree_insert+0x1cc/0x1e0
> *   [#1384431][8] activities screen shows applications and search results
> at the same time
> *   [#1384440][9] dragging gnome dash application to a specific workplace
> doesn't open the application to this workspace (on wayland)
> *   [#1384489][10] Music not recognizing/importing files
> *   [#1384502][11] Recent tab not available
> *   [#1384537][12] Opening a new gnome-software window creates a new entry
> without a proper icon
> *   [#1384546][13] Removing application does not bring back the install
> icon immediately
> *   [#1384551][14] Printing directions using maps do not show the marked
> path
> *   [#1384560][15] Screenshot of gnome-maps does not show the map part at
> all
> *   [#1384569][16] Places dropdown search does not function if weather is
> open on secondary monitor
> *   [#1384570][17] gnome-initial-setup does not exit at the end
> *   [#1384572][18] Places dropdown search does not function if clocks is
> open on secondary monitor
> *   [#1384590][19] [abrt] gnome-photos: babl_get_name() : gnome-photos
> killed by SIGABRT
> *   [#1384596][20] gnome-boxes: starting fails without any feedback
> *   [#1384599][21] gnome-calculator currency conversion is hard to use
> *   [#1384616][22] thumbnail "border" seems misaligned in activities
> overview
> *   [#1384651][23] Selecting city should automatically be added on Clock
> Application
> *   [#1384665][24] [abrt] authconfig-gtk: 
> gdk_window_enable_synchronized_configure()
> : python2.7 killed by SIGSEGV
> *   [#1384671][25] system-config-language does not work under Wayland
> *   [#1384675][26] system-config-users does not work under Wayland
> *   [#1384678][27] Missing top-left icon (and full application name) on
> Wayland
>
> Some of these are not Wayland bugs, but it's not a bad thing that
> people found some non-Wayland bugs as well while testing! We did find
> several new Wayland issues, but on the positive side, no really big
> bugs that weren't already known and on the radar for the final release.
>
> So the event looks like a success on all fronts: we found some new bugs
> to squish, but it also gives us a decent indication that the
> Workstation-on-Wayland experience is in a good enough condition for a
> first stable release. We also confirmed that the Workstation-on-X11
> session is available as a fallback and that works properly, for anyone
> who can't use Wayland for any reason.
>
> Many thanks to all the testers for their hard work!
>
>  [1]: https://fedoraproject.org/wiki/Test_Day:2016-10-13_Wayland
>  [2]: https://bugzilla.redhat.com/show_bug.cgi?id=1299505
>  [3]: https://bugzilla.redhat.com/show_bug.cgi?id=1330034
>  [4]: https://bugzilla.redhat.com/show_bug.cgi?id=1367846
>  [5]: https://bugzilla.redhat.com/show_bug.cgi?id=1376471
>  [6]: https://bugzilla.redhat.com/show_bug.cgi?id=1379098
>  [7]: https://bugzilla.redhat.com/show_bug.cgi?id=1383471
>  [8]: https://bugzilla.redhat.com/show_bug.cgi?id=1384431
>  [9]: https://bugzilla.redhat.com/show_bug.cgi?id=1384440
>  [10]: https://bugzilla.redhat.com/show_bug.cgi?id=1384489
>  [11]: https://bugzilla.redhat.com/show_bug.cgi?id=1384502
>  [12]: https://bugzilla.redhat.com/show_bug.cgi?id=1384537
>  [13]: https://bugzilla.redhat.com/show_bug.cgi?id=1384546
>  [14]: https://bugzilla.redhat.com/show_bug.cgi?id=1384551
>  [15]: https://bugzilla.redhat.com/show_bug.cgi?id=1384560
>  [16]: https://bugzilla.redhat.com/show_bug.cgi?id=1384569
>  [17]: https://bugzilla.redhat.com/show_bug.cgi?id=1384570
>  [18]: https://bugzilla.redhat.com/show_bug.cgi?id=1384572
>  [19]: https://bugzilla.redhat.com/show_bug.cgi?id=1384590
>  [20]: https://bugzilla.redhat.com/show_bug.cgi?id=1384596
>  [21]: https://bugzilla.redhat.com/show_bug.cgi?id=1384599
>  [22]: https://bugzilla.redhat.com/show_bug.cgi?id=1384616
>  [23]: https://bugzilla.redhat.com/show_bug.cgi?id=1384651
>  [24]: https://bugzilla.redhat.com/show_bug.cgi?id=1384665
>  [25]: 

Re: Schedule for Friday's FESCo Meeting (2016-10-14)

2016-10-14 Thread Parag Nemade
On Fri, Oct 14, 2016 at 4:57 PM, Josh Boyer  wrote:
> On Fri, Oct 14, 2016 at 4:03 AM, Parag Nemade  wrote:
>> Following is the list of topics that will be discussed in the
>> FESCo meeting Friday at 16:00UTC in #fedora-meeting on
>> irc.freenode.net.
>>
>> If needed any more topics to discuss we can discuss it in Open Floor.
>>
>>  To convert UTC to your local time, take a look at
>>   http://fedoraproject.org/wiki/UTCHowto
>>
>> or run:
>>   date -d '2016-10-14 16:00 UTC'
>>
>>
>> Links to all tickets below can be found at:
>> https://fedorahosted.org/fesco/report/9
>>
>> = Followups =
>>
>> #topic #1626 Release blocking deliverables for Fedora 25
>> .fesco 1626
>> https://fedorahosted.org/fesco/ticket/1626
>>
>> = New business =
>>
>> #topic #1635 F26 Self Contained Changes
>> .fesco 1635
>> https://fedorahosted.org/fesco/ticket/1635
>>
>> #topic #1634 EOL and vulnerable software
>> .fesco 1634
>> https://fedorahosted.org/fesco/ticket/1634
>>
>> = Open Floor =
>>
>> For more complete details, please visit each individual
>> ticket.  The report of the agenda items can be found at
>> https://fedorahosted.org/fesco/report/9
>>
>> If you would like to add something to this agenda, you can
>> reply to this e-mail, file a new ticket at
>> https://fedorahosted.org/fesco, e-mail me directly, or bring it
>> up at the end of the meeting, during the open floor topic. Note
>> that added topics may be deferred until the following meeting.
>
> Perhaps we could get an update on when the FESCo trac instance will be
> retired and replaced with pagure?

I think last week only I asked about this to Kevin and he said he
wanted to do first fedora-infra trac migration as it was having huge
number of tickets to check if the migration triggers any pagure bugs.

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


Koji build stalled on rawhide

2016-10-14 Thread Antonio Trande
Hi all.

I don't know why this package is not built on rawhide:
http://koji.fedoraproject.org/koji/taskinfo?taskID=16086346

Root log:
https://kojipkgs.fedoraproject.org//work/tasks/6349/16086349/root.log

Thanks.
-- 
---
Antonio Trande
mailto: sagitter 'at' fedoraproject 'dot' org
http://fedoraos.wordpress.com/
https://fedoraproject.org/wiki/User:Sagitter
GPG Key: 0x6CE6D08A
Check on https://keys.fedoraproject.org/



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


Re: Schedule for Friday's FESCo Meeting (2016-10-14)

2016-10-14 Thread Josh Boyer
On Fri, Oct 14, 2016 at 4:03 AM, Parag Nemade  wrote:
> Following is the list of topics that will be discussed in the
> FESCo meeting Friday at 16:00UTC in #fedora-meeting on
> irc.freenode.net.
>
> If needed any more topics to discuss we can discuss it in Open Floor.
>
>  To convert UTC to your local time, take a look at
>   http://fedoraproject.org/wiki/UTCHowto
>
> or run:
>   date -d '2016-10-14 16:00 UTC'
>
>
> Links to all tickets below can be found at:
> https://fedorahosted.org/fesco/report/9
>
> = Followups =
>
> #topic #1626 Release blocking deliverables for Fedora 25
> .fesco 1626
> https://fedorahosted.org/fesco/ticket/1626
>
> = New business =
>
> #topic #1635 F26 Self Contained Changes
> .fesco 1635
> https://fedorahosted.org/fesco/ticket/1635
>
> #topic #1634 EOL and vulnerable software
> .fesco 1634
> https://fedorahosted.org/fesco/ticket/1634
>
> = Open Floor =
>
> For more complete details, please visit each individual
> ticket.  The report of the agenda items can be found at
> https://fedorahosted.org/fesco/report/9
>
> If you would like to add something to this agenda, you can
> reply to this e-mail, file a new ticket at
> https://fedorahosted.org/fesco, e-mail me directly, or bring it
> up at the end of the meeting, during the open floor topic. Note
> that added topics may be deferred until the following meeting.

Perhaps we could get an update on when the FESCo trac instance will be
retired and replaced with pagure?

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


Re: OpenSSL 1.1.0 in Rawhide very soon

2016-10-14 Thread Tomas Mraz
On St, 2016-10-12 at 12:40 +0200, Tomas Mraz wrote:
> On St, 2016-10-12 at 10:28 +0200, Vít Ondruch wrote:
> > 
> > But what about stable versions of libraries applications? For
> > example,
> > in current Rawhide, you won't be able to build any stable Ruby
> > version
> > downloaded as tarball without the compat-openssl-devel. And it is
> > question, if upstream will be able to backport the OpenSSL 1.1.0
> > support
> > into stable Ruby versions [1]. Not mentioning all the older Ruby
> > versions which are unsupported, but up until now, you could build
> > them
> > on your own (actually it should be possible to disable the OpenSSL
> > support, but that is not common scenario).
> > 
> > I personally don't care much about this scenario, but I am pretty
> > sure
> > that others might care more 
> Yes, I am getting more and more inclined to ship compat-openssl10-
> devel. However I will make it conflicting with openssl-devel and its
> use for Fedora packages should be strongly discouraged.

So I've added compat-openssl10-devel subpackage to the compat-openssl10 
package. Please use it only in case all of these three conditions are
true:

1. port of your dependent package is not straightforward
2. upstream does not work on the port
3. you are not able to port it yourself

Please also in that case fill a bug against your package and make it
block the FTBFS with OpenSSL1.1.0 tracker bug: https://bugzilla.redhat.
com/show_bug.cgi?id=1383740

If the port should be straightforward (i.e. the package does not
contain language bindings for OpenSSL, it is not an OpenSSL engine, and
it is not using OpenSSL internals deeply) but you do not have time to
work on it, please also fill the FTBFS bug and add me to CC so I can
work on the patch.

-- 
Tomas Mraz
No matter how far down the wrong road you've gone, turn back.
  Turkish proverb
(You'll never know whether the road is wrong though.)


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


Fedora rawhide compose report: 20161014.n.0 changes

2016-10-14 Thread Fedora Rawhide Report
OLD: Fedora-Rawhide-20161013.n.0
NEW: Fedora-Rawhide-20161014.n.0

= SUMMARY =
Added images:0
Dropped images:  0
Added packages:  4
Dropped packages:0
Upgraded packages:   275
Downgraded packages: 0

Size of added packages:  614.71 KiB
Size of dropped packages:0.00 B
Size of upgraded packages:   2.18 GiB
Size of downgraded packages: 0.00 B

Size change of upgraded packages:   -52.48 MiB
Size change of downgraded packages: 0.00 B

= ADDED IMAGES =

= DROPPED IMAGES =

= ADDED PACKAGES =
Package: php-pecl-uopz-5.0.1-1.fc26
Summary: User Operations for Zend
RPMs:php-pecl-uopz
Size:160120 bytes

Package: python-flufl-bounce-2.3-1.fc26
Summary: Email bounce detectors
RPMs:python2-flufl-bounce python3-flufl-bounce
Size:326460 bytes

Package: python-flufl-i18n-1.1.3-1.fc26
Summary: A high level API for Python internationalization
RPMs:python2-flufl-i18n python3-flufl-i18n
Size:77520 bytes

Package: python-flufl-lock-2.4.1-1.fc26
Summary: NFS-safe file locking with timeouts for POSIX systems
RPMs:python2-flufl-lock python3-flufl-lock
Size:65360 bytes


= DROPPED PACKAGES =

= UPGRADED PACKAGES =
Package:  389-admin-1.1.45-1.fc26
Old package:  389-admin-1.1.42-1.fc25.4
Summary:  389 Administration Server (admin)
RPMs: 389-admin
Size: 1595400 bytes
Size change:  7140 bytes
Changelog:
  * Wed Jul 06 2016 Tomas Radej <tra...@redhat.com> - 1.1.42-1.5
  - Updated dep on policycoreutils-python-utils (semanage was moved)

  * Wed Jul 06 2016 Marcin Juszkiewicz <mjusz...@redhat.com> - 1.1.42-1.6
  - Drop USE_64 variable as it is not used anymore.

  * Wed Jul 06 2016 Mark Reynolds <mreyno...@redhat.com> - 1.1.42-1.7
  - Replace http with https when downloading content from git

  * Tue Oct 11 2016 Mark Reynolds <mreyno...@redhat.com> - 1.1.45-1
  bump version to 1.1.45
  Ticket 48988 - ds_removal and ds_unregister should support prompting for 
password
  bump version to 1.1.44
  Bug 1236635 - 389-admin TPS srpmtest failure
  Ticket 48932 - stopping admin server stops all httpd processes
  Ticket 47413 - 389-admin fails to build with latest httpd
  Ticket 48931 - start-ds-admin should use systemctl
  Ticket 48823 - Admin Server - Add IPv6 support
  Ticket 48907 - register-ds-admin fails to find local config DS
  Ticket 48306 - perl module conditional test is not conditional when checking 
SELinux policies
  Ticket 48213 - Admin server registration requires anonymous binds
  bump version to 1.1.43
  Ticket 48429 - running remove-ds-admin.pl multiple times will make it so you 
cannot install DS
  Ticket 48410 - 389-admin - Unable to remove / unregister a DS instance from 
admin server
  Ticket 48409 - RHDS upgrade change Ownership of certificate files upon 
upgrade.
  Ticket 47840 - Fix setup-ds-admin.pl to create adm.conf with sbin scripts


Package:  389-ds-base-1.3.5.14-1.fc26
Old package:  389-ds-base-1.3.5.13-1.fc26
Summary:  389 Directory Server (base)
RPMs: 389-ds-base 389-ds-base-devel 389-ds-base-libs 389-ds-base-snmp 
389-ds-base-tests
Size: 12081878 bytes
Size change:  50244 bytes
Changelog:
  * Thu Oct 13 2016 Mark Reynolds <mreyno...@redhat.com> - 1.3.5.14-1
  - Bump version to 1.3.5.14-1
  - Ticket 48992 - Total init may fail if the pushed schema is rejected
  - Ticket 48832 - Fix CI test suite for password min age
  - Ticket 48983 - Configure and Makefile.in from new default paths work.
  - Ticket 48983 - Configure and Makefile.in from new default paths work.
  - Ticket 48983 - generate install path info from autotools scripts
  - Ticket 48944 - on a read only replica invalid state info can accumulate
  - Ticket 48766 - use a consumer maxcsn only as anchor if supplier is more 
advanced
  - Ticket 48921 - CI Replication stress tests have limits set too low
  - Ticket 48969 - nsslapd-auditfaillog always has an explicit path
  - Ticket 48957 - Update repl-monitor to handle new status messages
  - Ticket 48832 - Fix CI tests
  - Ticket 48975 - Disabling CLEAR password storage scheme will  crash server 
when setting a password
  - Ticket 48369 - Add CI test suite
  - Ticket 48970 - Serverside sorting crashes the server
  - Ticket 48972 - remove old pwp code that adds/removes ACIs
  - Ticket 48957 - set proper update status to replication  agreement in case 
of failure
  - Ticket 48950 - Add systemd warning to the LD_PRELOAD example in 
/etc/sysconfig/dirsrv
  - provide backend dir in suffix template
  - Ticket 48953 - Skip labelling and unlabelling ports during the test
  - Ticket 48967 - Add CI test and refactor test suite
  - Ticket 48967 - passwordMinAge attribute doesn't limit the minimum age of 
the password
  - Fix jenkins warnings about unused vars
  - Ticket 48402 - v3 allow plugins to detect a restore or import
  - Ticket #48969 - nsslapd-auditfaillog always has an explicit path
  - Ticket 48964 - cleanAllRUV changelog purg

Someone needs to stop texlive madness!!!

2016-10-14 Thread Tomasz Kłoczko
Hi,

Quote (old joke):
Pessimist: It is bad. It is really bad. It is so bad that it cannot be
worse!!! :((
Optimist: No, you are wrong .. It can be worse :)))

Today early morning I've started upgrade of my laptop with Fedora rawhide
just by execute "dnf upgrade" and approve manually list packages to
upgrade. On the list was only 106 packages and between them 48 texlive
packages (don't ask me why exactly only 48 from all more than 5k available).
After start upgrade process I went on long meeting which took me almost 4h.
What was my surprise after I've came back to my desk that upgrade still is
not finished!!! laptop fun is loud like a crazy and keyboard almost been
glowing because it was so hot .. 8-O

Few seconds to diagnose issue and I found that everything is stuck in
execution of:

root 25803  0.4  0.0 120140  3236 pts/1S+   11:23   0:30 /bin/sh
/var/tmp/rpm-tmp.zx4oQi 0 0

Content of this file:
-- 
while read file; do
shortfile=`basename $file`
if `echo $shortfile | grep -Eq
'allrunes.map|arabtex.map|arss.map|artm.map|bbold.map|cbgreek-full.map|ccpl.map|cmextra.map|cmll.map|cm.map|cm-super-t1.map|cm-super-t2a.map|cm-super-t2b.map|cm-super-t2c.map|cm-super-ts1.map|cm-super-x2.map|cmtext-bsr-interpolated.map|cyrillic.map|dvng.map|esint.map|ethiop.map|eurosym.map|hfbright.map|iby.map|latxfont.map|lxfonts.map|manfnt.map|mflogo.map|mongolian.map|musix.map|pigpen.map|plother.map|pltext.map|rsfs.map|semaf.map|stmaryrd.map|symbols.map|tipa.map|trajan.map|vnrother.map|vnrtext.map|wasy.map|xypic.map|yhmath.map'`;
then
/usr/bin/updmap-sys --nomkmap --enable MultiMap=$shortfile
> /dev/null 2>&1
else
/usr/bin/updmap-sys --nomkmap --enable Map=$shortfile >
/dev/null 2>&1
fi
done
/usr/bin/updmap-sys --quiet --nomkmap &> /dev/null
-- 

After downloading *2GB src.rpm!!!* which contains *7325 source files
=8-O*
I found that this script is executed because in spec file is:

-- 
%transfiletriggerin kpathsea -- %{_texdir}/texmf-dist/fonts/map/
while read file; do
shortfile=`basename $file`
if `echo $shortfile | grep -Eq
'allrunes.map|arabtex.map|arss.map|artm.map|bbold.map|cbgreek-full.map|ccpl.map|cmextra.map|cmll.map|cm.map|cm-super-t1.map|cm-sup
er-t2a.map|cm-super-t2b.map|cm-super-t2c.map|cm-super-ts1.map|cm-super-x2.map|cmtext-bsr-interpolated.map|cyrillic.map|dvng.map|esint.map|ethiop.map|eurosym.map|hfbright
.map|iby.map|latxfont.map|lxfonts.map|manfnt.map|mflogo.map|mongolian.map|musix.map|pigpen.map|plother.map|pltext.map|rsfs.map|semaf.map|stmaryrd.map|symbols.map|
tipa.ma
p|trajan.map|vnrother.map|vnrtext.map|wasy.map|xypic.map|yhmath.map'`; then
%{_bindir}/updmap-sys --nomkmap --enable
MultiMap=$shortfile > /dev/null 2>&1
else
%{_bindir}/updmap-sys --nomkmap --enable Map=$shortfile >
/dev/null 2>&1
fi
done
%{_bindir}/updmap-sys --quiet --nomkmap &> /dev/null

%transfiletriggerpostun kpathsea -- %{_texdir}/texmf-dist/fonts/map/
while read file; do
shortfile=`basename $file`
if `echo $shortfile | grep -Eq
'allrunes.map|arabtex.map|arss.map|artm.map|bbold.map|cbgreek-full.map|ccpl.map|cmextra.map|cmll.map|cm.map|cm-super-t1.map|cm-sup
er-t2a.map|cm-super-t2b.map|cm-super-t2c.map|cm-super-ts1.map|cm-super-x2.map|cmtext-bsr-interpolated.map|cyrillic.map|dvng.map|esint.map|ethiop.map|eurosym.map|hfbright
.map|iby.map|latxfont.map|lxfonts.map|manfnt.map|mflogo.map|mongolian.map|musix.map|pigpen.map|plother.map|pltext.map|rsfs.map|semaf.map|stmaryrd.map|symbols.map|
tipa.ma
p|trajan.map|vnrother.map|vnrtext.map|wasy.map|xypic.map|yhmath.map'`; then
%{_bindir}/updmap-sys --nomkmap --disable
MultiMap=$shortfile > /dev/null 2>&1
else
%{_bindir}/updmap-sys --nomkmap --disable Map=$shortfile >
/dev/null 2>&1
fi
done
%{_bindir}/updmap-sys --quiet --nomkmap &> /dev/null
-- 

It may look elegant because whatever will be updated in
%{_texdir}/texmf-dist/fonts/map/ some  update operations will be
fired.
"Problem" only is that above triggers will be executed so many times as
number of packages updating/installing anything in the fonts map directory.
Second issue is this script reads files list from stdin.

>From http://www.rpm.org/wiki/FileTriggers

"This file trigger will execute /usr/bin/ldconfig right after installation
of a package that contains a file having a path starting with /usr/lib or
/lib. The file trigger will be executed just once for one package no matter
how many files in package starts with /usr/lib or /lib. *But all file names
starting with** /usr/lib or /lib **will be passed to standard input of
trigger script so that you can do some filtering inside of your script*:

%filetriggerin -- /usr/lib
grep "foo" && /usr/sbin/ldconfig

"
In other words updmap-sys will be executed so many times as *number of
packages multiplied by as many files or directories in fonts map tree all
those packages contains.*
*I'm not 

Re: Schedule for Friday's FESCo Meeting (2016-10-14)

2016-10-14 Thread Dominik 'Rathann' Mierzejewski
On Friday, 14 October 2016 at 10:03, Parag Nemade wrote:
> Following is the list of topics that will be discussed in the
> FESCo meeting Friday at 16:00UTC in #fedora-meeting onirc.freenode.net.

Sorry, but I'm going to miss the meeting. Something came up.

Regards,
Dominik
-- 
Fedora http://fedoraproject.org/wiki/User:Rathann
RPMFusion http://rpmfusion.org
"Faith manages."
-- Delenn to Lennier in Babylon 5:"Confessions and Lamentations"
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Schedule for Friday's FESCo Meeting (2016-10-14)

2016-10-14 Thread Kevin Fenzi
On Fri, 14 Oct 2016 17:43:33 +0530
Parag Nemade  wrote:

> On Fri, Oct 14, 2016 at 4:57 PM, Josh Boyer
>  wrote:
...snip...
> > Perhaps we could get an update on when the FESCo trac instance will
> > be retired and replaced with pagure?  
> 
> I think last week only I asked about this to Kevin and he said he
> wanted to do first fedora-infra trac migration as it was having huge
> number of tickets to check if the migration triggers any pagure bugs.

There was an issue on the pagure side (you couldn't disable fedmsgs for
import) we were waiting to be fixed. The fix for that landed with the
pagure update yesterday (2.7.2). 

So, we can migrate it anytime. If FESCo would like I can do so later
today or this weekend. 

kevin



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


Re: Someone needs to stop texlive madness!!!

2016-10-14 Thread Kevin Fenzi
On Fri, 14 Oct 2016 15:35:00 +0100
Tomasz Kłoczko  wrote:

> Hi,
...snip...

Can you please refresh your memory on the Fedora Code of conduct?

https://getfedora.org/code-of-conduct

Making personal attacks or calling people names is not acceptable. 

There have been some rough issues with texlive over the last few weeks,
but thats only because spot is trying to improve it and get it updated. 
Bugs happen (especially with such a gigantic package). 

The bug you hit (and many others) is:
https://bugzilla.redhat.com/show_bug.cgi?id=1384777
you can respectfully follow along there. 

kevin


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


spot pushed to perl-Log-Dispatch-FileRotate (f25). "Test::More"

2016-10-14 Thread notifications
From d95c4850d97124d14421ef42a3813b1e542e26d7 Mon Sep 17 00:00:00 2001
From: Tom Callaway 
Date: Fri, 14 Oct 2016 11:04:07 -0400
Subject: Test::More

---
 perl-Log-Dispatch-FileRotate.spec | 1 +
 1 file changed, 1 insertion(+)

diff --git a/perl-Log-Dispatch-FileRotate.spec 
b/perl-Log-Dispatch-FileRotate.spec
index ec014f0..eface69 100644
--- a/perl-Log-Dispatch-FileRotate.spec
+++ b/perl-Log-Dispatch-FileRotate.spec
@@ -11,6 +11,7 @@ BuildRequires:  perl-generators
 BuildRequires:  perl(Date::Manip)
 BuildRequires:  perl(Log::Dispatch)
 BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires: perl(Test::More)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 %description
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Log-Dispatch-FileRotate.git/commit/?h=f25=d95c4850d97124d14421ef42a3813b1e542e26d7
___
perl-devel mailing list -- perl-de...@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


Fedora 25 compose report: 20161014.n.0 changes

2016-10-14 Thread Fedora Branched Report
OLD: Fedora-25-20161013.n.0
NEW: Fedora-25-20161014.n.0

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

Size of added packages:  0.00 B
Size of dropped packages:0.00 B
Size of upgraded packages:   388.61 MiB
Size of downgraded packages: 0.00 B

Size change of upgraded packages:   -22.29 MiB
Size change of downgraded packages: 0.00 B

= ADDED IMAGES =

= DROPPED IMAGES =

= ADDED PACKAGES =

= DROPPED PACKAGES =

= UPGRADED PACKAGES =
Package:  Agda-2.4.2.5-1.fc25
Old package:  Agda-2.4.2.2-6.fc24
Summary:  A dependently typed functional programming language and proof 
assistant
RPMs: Agda ghc-Agda ghc-Agda-devel ghc-geniplate-mirror 
ghc-geniplate-mirror-devel
Added RPMs:   ghc-geniplate-mirror ghc-geniplate-mirror-devel
Size: 42226808 bytes
Size change:  -17582684 bytes
Changelog:
  * Thu Oct 06 2016 Jens Petersen <peter...@redhat.com> - 2.4.2.5-1
  - update to 2.4.2.5
  - subpackage new dep geniplate-mirror
  - disable dynlink on aarch64


Package:  darcs-2.12.2-1.fc25
Old package:  darcs-2.8.5-5.fc24
Summary:  Distributed Advanced Revision Control System
RPMs: darcs ghc-darcs ghc-darcs-devel ghc-data-ordlist 
ghc-data-ordlist-devel ghc-graphviz ghc-graphviz-devel ghc-regex-applicative 
ghc-regex-applicative-devel ghc-regex-compat-tdfa ghc-regex-compat-tdfa-devel 
ghc-sandi ghc-sandi-devel ghc-wl-pprint-text ghc-wl-pprint-text-devel
Added RPMs:   ghc-data-ordlist ghc-data-ordlist-devel ghc-graphviz 
ghc-graphviz-devel ghc-regex-applicative ghc-regex-applicative-devel 
ghc-regex-compat-tdfa ghc-regex-compat-tdfa-devel ghc-sandi ghc-sandi-devel 
ghc-wl-pprint-text ghc-wl-pprint-text-devel
Dropped RPMs: darcs-common darcs-static
Size: 59464294 bytes
Size change:  8235064 bytes
Changelog:
  * Thu Sep 08 2016 Jens Petersen <peter...@redhat.com> - 2.12.2-1
  - update to 2.12.2
  - subpackage new deps: data-ordlist, graphviz, regex-applicative,
regex-compat-tdfa, sandi, wl-pprint-text
  - drop static and common package
  - html manual is gone
  - disable dynamic linking on armv7hl due to linking issue


Package:  dmlite-0.8.0-1.fc25
Old package:  dmlite-0.7.6-4.fc25
Summary:  Lcgdm grid data management and storage framework
RPMs: dmlite-devel dmlite-docs dmlite-dome dmlite-dpm-tester 
dmlite-dpmdisk dmlite-dpmhead dmlite-libs dmlite-plugins-adapter 
dmlite-plugins-domeadapter dmlite-plugins-librarian dmlite-plugins-memcache 
dmlite-plugins-mysql dmlite-plugins-profiler dmlite-private-devel dmlite-shell 
python-dmlite
Added RPMs:   dmlite-dome dmlite-dpm-tester dmlite-dpmdisk dmlite-dpmhead 
dmlite-plugins-domeadapter
Size: 22446712 bytes
Size change:  4989058 bytes
Changelog:
  * Thu Sep 22 2016 Andrea Manzi <ama...@cern.ch> - 0.8.0-1
  * new upstream release


Package:  dtv-scan-tables-1-5.20160731gitb00d55fab082.fc25
Old package:  dtv-scan-tables-1-5.20160106git9d6094a7c41e.fc25
Summary:  Digital TV scan tables
RPMs: dtv-scan-tables dtv-scan-tables-legacy
Size: 735164 bytes
Size change:  63860 bytes
Changelog:
  * Sun Oct 09 2016 Ville Skytt?? <ville.sky...@iki.fi> - 
1-5.20160731gitb00d55fab082
  - Update to 2016-07-31-b00d55fab082


Package:  elfutils-0.167-2.fc25
Old package:  elfutils-0.167-1.fc25
Summary:  A collection of utilities and DSOs to handle compiled objects
RPMs: elfutils elfutils-default-yama-scope elfutils-devel 
elfutils-devel-static elfutils-libelf elfutils-libelf-devel 
elfutils-libelf-devel-static elfutils-libs
Size: 3683416 bytes
Size change:  -22140 bytes
Changelog:
  * Fri Oct 07 2016 Mark Wielaard <m...@redhat.com> - 0.167-2
  - Add elfutils-0.167-strip-alloc-symbol.patch (#1380961)


Package:  gdb-7.12-24.fc25
Old package:  gdb-7.12-0.19.20160929.fc25
Summary:  A stub package for GNU source-level debugger
RPMs: gdb gdb-doc gdb-gdbserver gdb-headless
Size: 15611556 bytes
Size change:  11724 bytes
Changelog:
  * Thu Oct 06 2016 Jan Kratochvil <jan.kratoch...@redhat.com> - 
7.12-0.20.20161006.fc25
  - Rebase to FSF GDB 7.11.90.20161006 (pre-7.12 branch snapshot).

  * Fri Oct 07 2016 Jan Kratochvil <jan.kratoch...@redhat.com> - 7.12-21.fc25
  - Rebase to FSF GDB 7.12.

  * Fri Oct 07 2016 Jan Kratochvil <jan.kratoch...@redhat.com> - 7.12-22.fc25
  - Fix .spec build: error: Macro %buildisa has empty body

  * Wed Oct 12 2016 Jan Kratochvil <jan.kratoch...@redhat.com> - 7.12-23.fc25
  - [testsuite] Various testsuite fixes.
  - [aarch64] Fix gdb.cp/nextoverthrow.exp regression (Yao Qi).

  * Wed Oct 12 2016 Jan Kratochvil <jan.kratoch...@redhat.com> - 7.12-24.fc25
  - Fix TLS (such as 'errno') regression.


Package:  ghc-aeson-pretty-0.8.2-1.fc25
Old package:  ghc-aeson-pretty-0.7.2-1.fc25
Summary:  JSON pretty-prin

Re: Someone needs to stop texlive madness!!!

2016-10-14 Thread Adam Williamson
On Sat, 2016-10-15 at 00:03 +0100, Tomasz Kłoczko wrote:
> > "TeX live is maintained IMO by real MORONS."
> > is what you wrote.
> 
> Yes it is.
> 
> Probably you never had occasion to have closer look what exactly is
> maintained in texlive source tree.

[snip]

1. Yes I did, in fact.
2. That's not the point. The point is that you violated the code of
conduct. Kevin pointed this out:

"Making personal attacks or calling people names is not acceptable."

and you denied it:

"Did I call someone name? .. hmm ??"

So I pointed out that, yes, you *did* call someone a name.

Calling other Fedora contributors (or, indeed, anyone at all) 'morons'
is not acceptable. It doesn't matter if you're *right* that there are
issues in the texlive package. It is not acceptable to call the people
who maintain it 'morons'.
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . net
http://www.happyassassin.net
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[Test-Announce] Proposal to CANCEL: 2016-10-17 Fedora QA Meeting

2016-10-14 Thread Adam Williamson
Hi folks! I'm proposing we cancel the QA meeting on Monday; I don't
think there's anything immediately pressing to discuss, so why not take
the hour off? Next week we might want to do a Test Day retrospective
and check on the status of Wayland ahead of the Final release, but I
think it can wait till 10-24.

If you think there is something we need to discuss on 10-17, please do
reply to this mail and we can go ahead and schedule the meeting!
Thanks.
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . net
http://www.happyassassin.net
___
test-announce mailing list -- test-annou...@lists.fedoraproject.org
To unsubscribe send an email to test-announce-le...@lists.fedoraproject.org
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: OpenImageIO: i686 builds failing

2016-10-14 Thread Florian Weimer

On 10/14/2016 01:15 AM, Samuel Sieb wrote:

On 10/13/2016 12:04 PM, Richard Shaw wrote:

The following workaround was suggested by upstream and seemed to do the
trick but upstream doesn't want to perform needless initialization on
platforms/arches that don't require it.


Why would it be arch-dependent whether or not a variable needs to be
initialized?


These warnings are issued from the optimizers.  There are some GCC 
optimizations which are architecture-specific and run very early, before 
the warnings discussed here are generated.


-Werror for optimizer-dependent warnings is usually not a good idea for 
this reason.


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


Re: dotnet on Fedora

2016-10-14 Thread Miro Hrončok

On 14.10.2016 18:50, Radka Janekova wrote:

Hello there,

I'd like to introduce new SIG to you, i'm RHs dotnet person and when i
noticed that Fedora lacks any dotnet presence I felt like I need to
change that =)

Feel free to join up, team up, discuss C# stuffs and eventually I hope
that we can get into crafting reliable packages!

Wiki: https://fedoraproject.org/wiki/DotNet



Shouldn't that be https://fedoraproject.org/wiki/SIGs/DotNet ?


List: 
https://lists.fedoraproject.org/admin/lists/dotnet-sig.lists.fedoraproject.org

IRC: #fedora-dotnet

Taking it slowly though, please don't expect miracles yet :]

Best regards,
Radka


*Radka Janeková*
*radka.ja...@redhat.com *



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



--
Miro Hrončok
--
Phone: +420777974800
IRC: mhroncok
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Fedora 25-20161014.n.0 compose check report

2016-10-14 Thread Fedora compose checker
No missing expected images.

Failed openQA tests: 2/102 (x86_64), 1/17 (i386)

Old failures (same test failed in 25-20161013.n.0):

ID: 41096   Test: x86_64 Workstation-live-iso 
desktop_notifications_postinstall
URL: https://openqa.fedoraproject.org/tests/41096
ID: 41161   Test: x86_64 universal install_iscsi
URL: https://openqa.fedoraproject.org/tests/41161
ID: 41202   Test: i386 universal upgrade_2_desktop_32bit
URL: https://openqa.fedoraproject.org/tests/41202

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

New soft failures (same test did not softfail in 25-20161013.n.0):

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

Passed openQA tests: 99/102 (x86_64), 16/17 (i386), 2/2 (arm)

New passes (same test did not pass in 25-20161013.n.0):

ID: 41100   Test: i386 Workstation-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/41100
ID: 41101   Test: x86_64 Atomic-dvd_ostree-iso install_default
URL: https://openqa.fedoraproject.org/tests/41101
ID: 41110   Test: x86_64 KDE-live-iso desktop_browser
URL: https://openqa.fedoraproject.org/tests/41110
ID: 41114   Test: arm Minimal-raw_xz-raw.xz 
install_arm_image_deployment_upload
URL: https://openqa.fedoraproject.org/tests/41114
ID: 41115   Test: arm Minimal-raw_xz-raw.xz base_services_start_arm
URL: https://openqa.fedoraproject.org/tests/41115
ID: 41130   Test: x86_64 Server-dvd-iso server_cockpit_basic
URL: https://openqa.fedoraproject.org/tests/41130
ID: 41156   Test: x86_64 universal install_btrfs
URL: https://openqa.fedoraproject.org/tests/41156
ID: 41194   Test: i386 universal install_repository_http_graphical
URL: https://openqa.fedoraproject.org/tests/41194
-- 
Mail generated by check-compose:
https://git.fedorahosted.org/cgit/fedora-qa.git/tree/check-compose
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Someone needs to stop texlive madness!!!

2016-10-14 Thread Tomasz Kłoczko
On 14 October 2016 at 16:02, Kevin Fenzi  wrote:

> Making personal attacks or calling people names is not acceptable.
>

Did I call someone name? .. hmm ??

My comment is not about persons but about exact work which has been done by
someone.
It refers not to who done thys but HOW it has been done.
What I've wrote is as well not accusation or empty claim but has enough
TECHNICAL justification.
Looking on history of the changes in texlive.spec looks like people
responsible for sending to build systems and signing packages been
tolerating this madness more than half year.
Q: not who accepted this but WHY? Why someone not refused to move more 5k
packages after single build request?

Bad thing happens .. and sometimes disasters happens even because someone
not intentionally done something (which I believe had happen this time).
However someone as well approved results of those texlive changes so
fragmenting texlive to include main Fedora tree. So what I've wrote is not
about exact people but more about failing processes which not blocked to
release so badly done packages.
Packing thousands archive files in single source package should be kind of
first alarm .. but it wasn't!!!
Again: not who done this but WHY? Maybe it was perfect good reason to do
this exactly this way (?) but really I don't see it.
If it is true .. maybe can someone help me to understand intention
packaging texlive like it is now?

If someone personally feels touch by what I've wrote about texlive or
packaging texlive .. really it is not my problem.
I'm only trying to shake this tree .. instead smacking me using political
correctness better would be just start asking (using some kind of analogy)
"how it was possible to climb so high on this unattended tree?"

If it is not obvious that only this kind of "WHY?" questions are bouncing
in my head .. really I've nothing to add than (Latin) "errare humanum est
perseverare autem diabolicum".
Learning process is not possible without making mistakes and this is why it
is not possible to learn about something only by reading about it. I'm as
well fully aware that many people here trying to help on Fedora development
in reality are learning .. and it is nothing bad with this.
I know this because I've started almost 20 years ago trying to build my
first package. I made in the past enough number of times mistakes (not only
on packaging) to learn really a lot things .. and still it is even more
ahead of me.

What we are personally doing when someone spots our mistake says something
about us .. and only us.

So .. don't worry. I'm going patiently sit down and wait until people
maintaining texlive at least few times will try to fix not only this
trigger issue but whole texlive packaging approach :)

Have a good weekend :)

kloczek
-- 
Tomasz Kłoczko | LinkedIn: *http://lnkd.in/FXPWxH *
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Someone needs to stop texlive madness!!!

2016-10-14 Thread Adam Williamson
On Fri, 2016-10-14 at 17:33 +0100, Tomasz Kłoczko wrote:
> On 14 October 2016 at 16:02, Kevin Fenzi  wrote:
> 
> > Making personal attacks or calling people names is not acceptable.
> > 
> 
> Did I call someone name? .. hmm ??

"TeX live is maintained IMO by real MORONS."

is what you wrote.
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . net
http://www.happyassassin.net
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


dotnet on Fedora

2016-10-14 Thread Radka Janekova
Hello there,

I'd like to introduce new SIG to you, i'm RHs dotnet person and when i
noticed that Fedora lacks any dotnet presence I felt like I need to change
that =)

Feel free to join up, team up, discuss C# stuffs and eventually I hope that
we can get into crafting reliable packages!

Wiki: https://fedoraproject.org/wiki/DotNet
List: https://lists.fedoraproject.org/admin/lists/dotnet-sig.lists.
fedoraproject.org
IRC: #fedora-dotnet

Taking it slowly though, please don't expect miracles yet :]

Best regards,
Radka

--
*Radka Janeková*
*radka.ja...@redhat.com *
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Koji build stalled on rawhide

2016-10-14 Thread Panu Matilainen

On 10/14/2016 02:02 PM, Antonio Trande wrote:

Hi all.

I don't know why this package is not built on rawhide:
http://koji.fedoraproject.org/koji/taskinfo?taskID=16086346

Root log:
https://kojipkgs.fedoraproject.org//work/tasks/6349/16086349/root.log


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

- Panu -

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


F25: user system_u not in password file

2016-10-14 Thread Francisco J. Tsao Santin
Hi,

Yesterday I was upgrading from 24 stable to F25 beta, and I saw this message
while upgrading some SELinux related packages:
[...]
 Upgrading   : selinux-policy-3.13.1-218.fc25.noarch
916/3612 
libsemanage.add_user: user system_u not in password file
[...]
  Upgrading   : selinux-policy-targeted-3.13.1-218.fc25.noarch  
 964/3612 
libsemanage.add_user: user system_u not in password file
mmap: Invalid argument
[...]
  Upgrading   : docker-selinux-2:1.12.1-13.git9a3752d.fc25.x86_64   
 965/3612 
libsemanage.add_user: user system_u not in password file
mmap: Invalid argument

It seems it's harmless, but I comment it for packagers review ;-)

Tsao

-- 
Francisco Javier Tsao Santín
http://gattaca.es
1024D/71CF4D62  42 F1 53 35 EF 98 98 8A FC 6C 56 B3 4C A7 7D FB___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: dotnet on Fedora

2016-10-14 Thread Radka Janekova
Yes and no, it will evolve... there will be info about dotnet itself which
has nothing to do witht he sig... a bit too exhausted to explain today (im
after surgery that went wrong) but you can leave questions or suggestions
here or catch me on irc tomorrow.




Best regards,
Radka

--
*Radka Janeková*
*radka.ja...@redhat.com *


On Fri, Oct 14, 2016 at 7:27 PM, Miro Hrončok  wrote:

> On 14.10.2016 18:50, Radka Janekova wrote:
>
>> Hello there,
>>
>> I'd like to introduce new SIG to you, i'm RHs dotnet person and when i
>> noticed that Fedora lacks any dotnet presence I felt like I need to
>> change that =)
>>
>> Feel free to join up, team up, discuss C# stuffs and eventually I hope
>> that we can get into crafting reliable packages!
>>
>> Wiki: https://fedoraproject.org/wiki/DotNet
>> 
>>
>
> Shouldn't that be https://fedoraproject.org/wiki/SIGs/DotNet ?
>
> List: https://lists.fedoraproject.org/admin/lists/dotnet-sig.lists
>> .fedoraproject.org
>> > s.fedoraproject.org>
>> IRC: #fedora-dotnet
>>
>> Taking it slowly though, please don't expect miracles yet :]
>>
>> Best regards,
>> Radka
>>
>> 
>> *Radka Janeková*
>> *radka.ja...@redhat.com *
>>
>>
>>
>> ___
>> devel mailing list -- devel@lists.fedoraproject.org
>> To unsubscribe send an email to devel-le...@lists.fedoraproject.org
>>
>>
> --
> Miro Hrončok
> --
> Phone: +420777974800
> IRC: mhroncok
> ___
> devel mailing list -- devel@lists.fedoraproject.org
> To unsubscribe send an email to devel-le...@lists.fedoraproject.org
>
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Fedora Rawhide-20161014.n.0 compose check report

2016-10-14 Thread Fedora compose checker
Missing expected images:

Workstation live i386
Workstation live x86_64

Failed openQA tests: 8/91 (x86_64), 3/16 (i386)

New failures (same test did not fail in Rawhide-20161013.n.0):

ID: 41207   Test: x86_64 Workstation-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/41207
ID: 41208   Test: x86_64 Workstation-boot-iso install_default@uefi
URL: https://openqa.fedoraproject.org/tests/41208
ID: 41209   Test: i386 Workstation-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/41209
ID: 41220   Test: x86_64 KDE-live-iso desktop_notifications_live
URL: https://openqa.fedoraproject.org/tests/41220
ID: 41284   Test: x86_64 universal upgrade_desktop_64bit
URL: https://openqa.fedoraproject.org/tests/41284
ID: 41287   Test: x86_64 universal upgrade_desktop_encrypted_64bit
URL: https://openqa.fedoraproject.org/tests/41287
ID: 41289   Test: x86_64 universal upgrade_2_desktop_64bit
URL: https://openqa.fedoraproject.org/tests/41289
ID: 41292   Test: x86_64 universal upgrade_2_desktop_encrypted_64bit
URL: https://openqa.fedoraproject.org/tests/41292
ID: 41317   Test: i386 universal upgrade_desktop_32bit
URL: https://openqa.fedoraproject.org/tests/41317

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

ID: 41270   Test: x86_64 universal install_iscsi
URL: https://openqa.fedoraproject.org/tests/41270
ID: 41311   Test: i386 universal upgrade_2_desktop_32bit
URL: https://openqa.fedoraproject.org/tests/41311

Passed openQA tests: 83/91 (x86_64), 13/16 (i386), 2/2 (arm)

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

ID: 41223   Test: arm Minimal-raw_xz-raw.xz 
install_arm_image_deployment_upload
URL: https://openqa.fedoraproject.org/tests/41223
ID: 41224   Test: arm Minimal-raw_xz-raw.xz base_services_start_arm
URL: https://openqa.fedoraproject.org/tests/41224
ID: 41286   Test: x86_64 universal upgrade_kde_64bit
URL: https://openqa.fedoraproject.org/tests/41286
-- 
Mail generated by check-compose:
https://git.fedorahosted.org/cgit/fedora-qa.git/tree/check-compose
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: [POC-change] Fedora packages point of contact updates

2016-10-14 Thread Till Maas
On Mon, Oct 03, 2016 at 10:00:09AM +, nob...@fedoraproject.org wrote:
> Change in package status over the last 168 hours
> 

> libmongo-client [f23, master, epel7, f24] was orphaned by kevin
>  Alternative C driver for MongoDB
>  https://admin.fedoraproject.org/pkgdb/package/libmongo-client

3306 packages depend on this via rsyslog (and perl) or syslog-ng. Are
there plans to drop support for mongodb in the logging daemons or is
there someone willing to adopt libmongo-client?

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


[Bug 1385014] Upgrade perl-Test-File to 1.442

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1385014

Fedora Update System  changed:

   What|Removed |Added

 Status|NEW |ON_QA



--- Comment #1 from Fedora Update System  ---
perl-Test-File-1.44.2-1.fc25 has been pushed to the Fedora 25 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-2016-7bf0f38df2

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


dfateyev uploaded Devel-Timer-0.08.tar.gz for perl-Devel-Timer

2016-10-14 Thread notifications
489c3cd4d4e0f276851f9528d2dbd08e  Devel-Timer-0.08.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Devel-Timer/Devel-Timer-0.08.tar.gz/md5/489c3cd4d4e0f276851f9528d2dbd08e/Devel-Timer-0.08.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


dfateyev pushed to perl-Devel-Timer (master). "perl-Devel-Timer: version 0.08"

2016-10-14 Thread notifications
From a4cfef5d19b1f907f0bf0edd53d14c5e1148bb54 Mon Sep 17 00:00:00 2001
From: Denis Fateyev 
Date: Sat, 15 Oct 2016 04:05:55 +0600
Subject: perl-Devel-Timer: version 0.08

---
 .gitignore | 1 +
 sources| 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index a1cbcb3..9f114ac 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /Devel-Timer-0.05.tar.gz
 /Devel-Timer-0.06.tar.gz
 /Devel-Timer-0.07.tar.gz
+/Devel-Timer-0.08.tar.gz
diff --git a/sources b/sources
index 58047aa..d521645 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3dc96f8626b0fb94069ebea073ecc4fe  Devel-Timer-0.07.tar.gz
+489c3cd4d4e0f276851f9528d2dbd08e  Devel-Timer-0.08.tar.gz
-- 
cgit v0.12



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


dfateyev pushed to perl-Devel-Timer (master). "perl-Devel-Timer: version 0.08"

2016-10-14 Thread notifications
From 8786589618c6ba3644d32db38cca415c6b8d7f9c Mon Sep 17 00:00:00 2001
From: Denis Fateyev 
Date: Sat, 15 Oct 2016 04:06:33 +0600
Subject: perl-Devel-Timer: version 0.08

---
 perl-Devel-Timer.spec | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/perl-Devel-Timer.spec b/perl-Devel-Timer.spec
index 9032f70..1dc26b4 100644
--- a/perl-Devel-Timer.spec
+++ b/perl-Devel-Timer.spec
@@ -1,12 +1,12 @@
 Name:   perl-Devel-Timer
-Version:0.07
-Release:2%{?dist}
+Version:0.08
+Release:1%{?dist}
 Summary:Track and report execution time for parts of code
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Devel-Timer/
 
-Source0:
http://search.cpan.org/CPAN/authors/id/S/SZ/SZABGAB/Devel-Timer-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/M/MA/MANWAR/Devel-Timer-%{version}.tar.gz
 BuildArch:  noarch
 
 BuildRequires:  coreutils
@@ -29,7 +29,7 @@ BuildRequires:  perl(strict)
 BuildRequires:  perl(vars)
 
 # Testing
-BuildRequires:  perl(Capture::Tiny) >= 0.24
+BuildRequires:  perl(Capture::Tiny) >= 0.25
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(warnings)
 
@@ -66,6 +66,9 @@ make test
 
 
 %changelog
+* Fri Oct 14 2016 Denis Fateyev  - 0.08-1
+- Update to 0.08 release
+
 * Sun May 15 2016 Jitka Plesnikova  - 0.07-2
 - Perl 5.24 rebuild
 
-- 
cgit v0.12



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


dfateyev pushed to perl-Devel-Timer (f24). "Perl 5.24 rebuild"

2016-10-14 Thread notifications
From 1754bd151f01a29ec7ee3d96213ed41e9ad8752d Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Sun, 15 May 2016 10:04:32 +0200
Subject: Perl 5.24 rebuild

---
 perl-Devel-Timer.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Devel-Timer.spec b/perl-Devel-Timer.spec
index 8fd7a11..b95922c 100644
--- a/perl-Devel-Timer.spec
+++ b/perl-Devel-Timer.spec
@@ -1,6 +1,6 @@
 Name:   perl-Devel-Timer
 Version:0.07
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Track and report execution time for parts of code
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -65,6 +65,9 @@ make test
 
 
 %changelog
+* Sun May 15 2016 Jitka Plesnikova  - 0.07-2
+- Perl 5.24 rebuild
+
 * Sat Feb 06 2016 Denis Fateyev  - 0.07-1
 - Update to 0.07 release
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Devel-Timer.git/commit/?h=f24=1754bd151f01a29ec7ee3d96213ed41e9ad8752d
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


dfateyev pushed to perl-Devel-Timer (f24). "Mandatory Perl build-requires added "

2016-10-14 Thread notifications
From f928ee593ba1880306451b2bda942996e14401ee Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 24 Jun 2016 10:12:27 +0200
Subject: Mandatory Perl build-requires added
 

---
 perl-Devel-Timer.spec | 1 +
 1 file changed, 1 insertion(+)

diff --git a/perl-Devel-Timer.spec b/perl-Devel-Timer.spec
index b95922c..9032f70 100644
--- a/perl-Devel-Timer.spec
+++ b/perl-Devel-Timer.spec
@@ -12,6 +12,7 @@ BuildArch:  noarch
 BuildRequires:  coreutils
 BuildRequires:  findutils
 BuildRequires:  perl
+BuildRequires:  perl-generators
 BuildRequires:  perl(ExtUtils::MakeMaker)
 
 # Run-time:
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Devel-Timer.git/commit/?h=f24=f928ee593ba1880306451b2bda942996e14401ee
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


dfateyev pushed to perl-Devel-Timer (f24). "perl-Devel-Timer: version 0.08"

2016-10-14 Thread notifications
From a4cfef5d19b1f907f0bf0edd53d14c5e1148bb54 Mon Sep 17 00:00:00 2001
From: Denis Fateyev 
Date: Sat, 15 Oct 2016 04:05:55 +0600
Subject: perl-Devel-Timer: version 0.08

---
 .gitignore | 1 +
 sources| 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index a1cbcb3..9f114ac 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /Devel-Timer-0.05.tar.gz
 /Devel-Timer-0.06.tar.gz
 /Devel-Timer-0.07.tar.gz
+/Devel-Timer-0.08.tar.gz
diff --git a/sources b/sources
index 58047aa..d521645 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3dc96f8626b0fb94069ebea073ecc4fe  Devel-Timer-0.07.tar.gz
+489c3cd4d4e0f276851f9528d2dbd08e  Devel-Timer-0.08.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Devel-Timer.git/commit/?h=f24=a4cfef5d19b1f907f0bf0edd53d14c5e1148bb54
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


dfateyev pushed to perl-Devel-Timer (f24). "perl-Devel-Timer: version 0.08"

2016-10-14 Thread notifications
From 8786589618c6ba3644d32db38cca415c6b8d7f9c Mon Sep 17 00:00:00 2001
From: Denis Fateyev 
Date: Sat, 15 Oct 2016 04:06:33 +0600
Subject: perl-Devel-Timer: version 0.08

---
 perl-Devel-Timer.spec | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/perl-Devel-Timer.spec b/perl-Devel-Timer.spec
index 9032f70..1dc26b4 100644
--- a/perl-Devel-Timer.spec
+++ b/perl-Devel-Timer.spec
@@ -1,12 +1,12 @@
 Name:   perl-Devel-Timer
-Version:0.07
-Release:2%{?dist}
+Version:0.08
+Release:1%{?dist}
 Summary:Track and report execution time for parts of code
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Devel-Timer/
 
-Source0:
http://search.cpan.org/CPAN/authors/id/S/SZ/SZABGAB/Devel-Timer-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/M/MA/MANWAR/Devel-Timer-%{version}.tar.gz
 BuildArch:  noarch
 
 BuildRequires:  coreutils
@@ -29,7 +29,7 @@ BuildRequires:  perl(strict)
 BuildRequires:  perl(vars)
 
 # Testing
-BuildRequires:  perl(Capture::Tiny) >= 0.24
+BuildRequires:  perl(Capture::Tiny) >= 0.25
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(warnings)
 
@@ -66,6 +66,9 @@ make test
 
 
 %changelog
+* Fri Oct 14 2016 Denis Fateyev  - 0.08-1
+- Update to 0.08 release
+
 * Sun May 15 2016 Jitka Plesnikova  - 0.07-2
 - Perl 5.24 rebuild
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Devel-Timer.git/commit/?h=f24=8786589618c6ba3644d32db38cca415c6b8d7f9c
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


dfateyev pushed to perl-Devel-Timer (f25). "perl-Devel-Timer: version 0.08"

2016-10-14 Thread notifications
From a4cfef5d19b1f907f0bf0edd53d14c5e1148bb54 Mon Sep 17 00:00:00 2001
From: Denis Fateyev 
Date: Sat, 15 Oct 2016 04:05:55 +0600
Subject: perl-Devel-Timer: version 0.08

---
 .gitignore | 1 +
 sources| 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index a1cbcb3..9f114ac 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /Devel-Timer-0.05.tar.gz
 /Devel-Timer-0.06.tar.gz
 /Devel-Timer-0.07.tar.gz
+/Devel-Timer-0.08.tar.gz
diff --git a/sources b/sources
index 58047aa..d521645 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3dc96f8626b0fb94069ebea073ecc4fe  Devel-Timer-0.07.tar.gz
+489c3cd4d4e0f276851f9528d2dbd08e  Devel-Timer-0.08.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Devel-Timer.git/commit/?h=f25=a4cfef5d19b1f907f0bf0edd53d14c5e1148bb54
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


dfateyev pushed to perl-Devel-Timer (f25). "perl-Devel-Timer: version 0.08"

2016-10-14 Thread notifications
From 8786589618c6ba3644d32db38cca415c6b8d7f9c Mon Sep 17 00:00:00 2001
From: Denis Fateyev 
Date: Sat, 15 Oct 2016 04:06:33 +0600
Subject: perl-Devel-Timer: version 0.08

---
 perl-Devel-Timer.spec | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/perl-Devel-Timer.spec b/perl-Devel-Timer.spec
index 9032f70..1dc26b4 100644
--- a/perl-Devel-Timer.spec
+++ b/perl-Devel-Timer.spec
@@ -1,12 +1,12 @@
 Name:   perl-Devel-Timer
-Version:0.07
-Release:2%{?dist}
+Version:0.08
+Release:1%{?dist}
 Summary:Track and report execution time for parts of code
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Devel-Timer/
 
-Source0:
http://search.cpan.org/CPAN/authors/id/S/SZ/SZABGAB/Devel-Timer-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/M/MA/MANWAR/Devel-Timer-%{version}.tar.gz
 BuildArch:  noarch
 
 BuildRequires:  coreutils
@@ -29,7 +29,7 @@ BuildRequires:  perl(strict)
 BuildRequires:  perl(vars)
 
 # Testing
-BuildRequires:  perl(Capture::Tiny) >= 0.24
+BuildRequires:  perl(Capture::Tiny) >= 0.25
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(warnings)
 
@@ -66,6 +66,9 @@ make test
 
 
 %changelog
+* Fri Oct 14 2016 Denis Fateyev  - 0.08-1
+- Update to 0.08 release
+
 * Sun May 15 2016 Jitka Plesnikova  - 0.07-2
 - Perl 5.24 rebuild
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Devel-Timer.git/commit/?h=f25=8786589618c6ba3644d32db38cca415c6b8d7f9c
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pkgdb_updater updated: description of perl-File-chdir

2016-10-14 Thread notifications
pkgdb_updater updated: description of perl-File-chdir
https://admin.fedoraproject.org/pkgdb/package/perl-File-chdir/
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Test-Kwalitee (master). "Update to 1.23 (..more)"

2016-10-14 Thread notifications
From a1034337283bdc8af318e6cfced49c2df4499607 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Fri, 14 Oct 2016 09:32:17 +0100
Subject: Update to 1.23

- New upstream release 1.23
  - Update the list of metrics to the latest Module::CPANTS::Analyse
- Switch back to ExtUtils::MakeMaker flow
- Drop redundant Group: tag
- Drop support for old rpm versions that don't have %license
---
 perl-Test-Kwalitee.spec | 37 -
 sources |  2 +-
 2 files changed, 21 insertions(+), 18 deletions(-)

diff --git a/perl-Test-Kwalitee.spec b/perl-Test-Kwalitee.spec
index 4948149..105ed01 100644
--- a/perl-Test-Kwalitee.spec
+++ b/perl-Test-Kwalitee.spec
@@ -1,29 +1,28 @@
 Name:  perl-Test-Kwalitee
-Version:   1.22
-Release:   6%{?dist}
+Version:   1.23
+Release:   1%{?dist}
 Summary:   Test the Kwalitee of a distribution before you release it
 License:   GPL+ or Artistic
-Group: Development/Libraries
 URL:   http://metacpan.org/module/Test::Kwalitee
 Source0:   
http://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Kwalitee-%{version}.tar.gz
 BuildArch: noarch
 # Build
+BuildRequires: coreutils
+BuildRequires: make
 BuildRequires: perl
 BuildRequires: perl-generators
-BuildRequires: perl(Module::Build::Tiny) >= 0.037
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
 # Module
 BuildRequires: perl(Cwd)
 BuildRequires: perl(Exporter)
 BuildRequires: perl(Module::CPANTS::Analyse) >= 0.92
-BuildRequires: perl(namespace::clean)
 BuildRequires: perl(parent)
 BuildRequires: perl(strict)
 BuildRequires: perl(Test::Builder) >= 0.88
 BuildRequires: perl(warnings)
 # Test Suite
 BuildRequires: perl(CPAN::Meta) >= 2.120900
-BuildRequires: perl(CPAN::Meta::Check) >= 0.007
-BuildRequires: perl(ExtUtils::MakeMaker)
+BuildRequires: perl(CPAN::Meta::Check) >= 0.011
 BuildRequires: perl(File::Spec)
 BuildRequires: perl(File::Temp)
 BuildRequires: perl(lib)
@@ -32,7 +31,7 @@ BuildRequires:perl(Test::Deep)
 BuildRequires: perl(Test::More) >= 0.94
 BuildRequires: perl(Test::Tester) >= 0.108
 BuildRequires: perl(Test::Warnings) >= 0.009
-# Runtime
+# Dependencies
 Requires:  perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 
 %description
@@ -45,18 +44,15 @@ computer science).
 %setup -q -n Test-Kwalitee-%{version}
 
 %build
-perl Build.PL --installdirs=vendor
-./Build
+perl Makefile.PL INSTALLDIRS=vendor NO_PERLLOCAL=1 NO_PACKLIST=1
+make %{?_smp_mflags}
 
 %install
-./Build install --destdir=%{buildroot} --create_packlist=0
-chmod -c 755 %{buildroot}%{_bindir}/kwalitee-metrics
+make install DESTDIR=%{buildroot}
+%{_fixperms} -c %{buildroot}
 
 %check
-./Build test
-
-# Support use of %%license for old distributions
-%{!?_licensedir:%global license %%doc}
+make test
 
 %files
 %license LICENSE
@@ -64,9 +60,16 @@ chmod -c 755 %{buildroot}%{_bindir}/kwalitee-metrics
 %{_bindir}/kwalitee-metrics
 %{perl_vendorlib}/Test/
 %{_mandir}/man1/kwalitee-metrics.1*
-%{_mandir}/man3/Test::Kwalitee.3pm*
+%{_mandir}/man3/Test::Kwalitee.3*
 
 %changelog
+* Fri Oct 14 2016 Paul Howarth  - 1.23-1
+- Update to 1.23
+  - Update the list of metrics to the latest Module::CPANTS::Analyse
+- Switch back to ExtUtils::MakeMaker flow
+- Drop redundant Group: tag
+- Drop support for old rpm versions that don't have %%license
+
 * Mon May 16 2016 Jitka Plesnikova  - 1.22-6
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index 598d896..625956b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-2b3ccaec94e75ab574b0e773f74ca884  Test-Kwalitee-1.22.tar.gz
+e656a7899f6d411853b749ec3f882aec  Test-Kwalitee-1.23.tar.gz
-- 
cgit v0.12



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


Self introduction - Fale

2016-10-14 Thread Fabio Alessandro Locati
Hi,

I've been packaging python packages for quite some time and since one
month ago I also joined this mailing list, mainly because I was
interested in reading it.
I think that it would make sense to present myself and maybe help out
more.

I'm mainly interested in python packaging and ATM I'm Poc of 11 python
packages and co-maintainer of other 9.

Best,
Fale
-- 
Fabio Alessandro Locati
Red Hat - Senior Consultant

PGP Fingerprint: E815 3C49 2A8D FD8B 1CBD  BC85 FDB3 DF20 B2DC 9C1B


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


pghmcfc uploaded Test-Kwalitee-1.23.tar.gz for perl-Test-Kwalitee

2016-10-14 Thread notifications
e656a7899f6d411853b749ec3f882aec  Test-Kwalitee-1.23.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Test-Kwalitee/Test-Kwalitee-1.23.tar.gz/md5/e656a7899f6d411853b749ec3f882aec/Test-Kwalitee-1.23.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Test-Kwalitee (perl-Test-Kwalitee-1.23-1.fc25). "Update to 1.23 (..more)"

2016-10-14 Thread notifications
From a1034337283bdc8af318e6cfced49c2df4499607 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Fri, 14 Oct 2016 09:32:17 +0100
Subject: Update to 1.23

- New upstream release 1.23
  - Update the list of metrics to the latest Module::CPANTS::Analyse
- Switch back to ExtUtils::MakeMaker flow
- Drop redundant Group: tag
- Drop support for old rpm versions that don't have %license
---
 perl-Test-Kwalitee.spec | 37 -
 sources |  2 +-
 2 files changed, 21 insertions(+), 18 deletions(-)

diff --git a/perl-Test-Kwalitee.spec b/perl-Test-Kwalitee.spec
index 4948149..105ed01 100644
--- a/perl-Test-Kwalitee.spec
+++ b/perl-Test-Kwalitee.spec
@@ -1,29 +1,28 @@
 Name:  perl-Test-Kwalitee
-Version:   1.22
-Release:   6%{?dist}
+Version:   1.23
+Release:   1%{?dist}
 Summary:   Test the Kwalitee of a distribution before you release it
 License:   GPL+ or Artistic
-Group: Development/Libraries
 URL:   http://metacpan.org/module/Test::Kwalitee
 Source0:   
http://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Kwalitee-%{version}.tar.gz
 BuildArch: noarch
 # Build
+BuildRequires: coreutils
+BuildRequires: make
 BuildRequires: perl
 BuildRequires: perl-generators
-BuildRequires: perl(Module::Build::Tiny) >= 0.037
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
 # Module
 BuildRequires: perl(Cwd)
 BuildRequires: perl(Exporter)
 BuildRequires: perl(Module::CPANTS::Analyse) >= 0.92
-BuildRequires: perl(namespace::clean)
 BuildRequires: perl(parent)
 BuildRequires: perl(strict)
 BuildRequires: perl(Test::Builder) >= 0.88
 BuildRequires: perl(warnings)
 # Test Suite
 BuildRequires: perl(CPAN::Meta) >= 2.120900
-BuildRequires: perl(CPAN::Meta::Check) >= 0.007
-BuildRequires: perl(ExtUtils::MakeMaker)
+BuildRequires: perl(CPAN::Meta::Check) >= 0.011
 BuildRequires: perl(File::Spec)
 BuildRequires: perl(File::Temp)
 BuildRequires: perl(lib)
@@ -32,7 +31,7 @@ BuildRequires:perl(Test::Deep)
 BuildRequires: perl(Test::More) >= 0.94
 BuildRequires: perl(Test::Tester) >= 0.108
 BuildRequires: perl(Test::Warnings) >= 0.009
-# Runtime
+# Dependencies
 Requires:  perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 
 %description
@@ -45,18 +44,15 @@ computer science).
 %setup -q -n Test-Kwalitee-%{version}
 
 %build
-perl Build.PL --installdirs=vendor
-./Build
+perl Makefile.PL INSTALLDIRS=vendor NO_PERLLOCAL=1 NO_PACKLIST=1
+make %{?_smp_mflags}
 
 %install
-./Build install --destdir=%{buildroot} --create_packlist=0
-chmod -c 755 %{buildroot}%{_bindir}/kwalitee-metrics
+make install DESTDIR=%{buildroot}
+%{_fixperms} -c %{buildroot}
 
 %check
-./Build test
-
-# Support use of %%license for old distributions
-%{!?_licensedir:%global license %%doc}
+make test
 
 %files
 %license LICENSE
@@ -64,9 +60,16 @@ chmod -c 755 %{buildroot}%{_bindir}/kwalitee-metrics
 %{_bindir}/kwalitee-metrics
 %{perl_vendorlib}/Test/
 %{_mandir}/man1/kwalitee-metrics.1*
-%{_mandir}/man3/Test::Kwalitee.3pm*
+%{_mandir}/man3/Test::Kwalitee.3*
 
 %changelog
+* Fri Oct 14 2016 Paul Howarth  - 1.23-1
+- Update to 1.23
+  - Update the list of metrics to the latest Module::CPANTS::Analyse
+- Switch back to ExtUtils::MakeMaker flow
+- Drop redundant Group: tag
+- Drop support for old rpm versions that don't have %%license
+
 * Mon May 16 2016 Jitka Plesnikova  - 1.22-6
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index 598d896..625956b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-2b3ccaec94e75ab574b0e773f74ca884  Test-Kwalitee-1.22.tar.gz
+e656a7899f6d411853b749ec3f882aec  Test-Kwalitee-1.23.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Test-Kwalitee.git/commit/?h=perl-Test-Kwalitee-1.23-1.fc25=a1034337283bdc8af318e6cfced49c2df4499607
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Test-Kwalitee (perl-Test-Kwalitee-1.23-1.fc26). "Update to 1.23 (..more)"

2016-10-14 Thread notifications
This commit already existed in another branch.

http://pkgs.fedoraproject.org/cgit/perl-Test-Kwalitee.git/commit/?h=perl-Test-Kwalitee-1.23-1.fc26=a1034337283bdc8af318e6cfced49c2df4499607
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


robert pushed to perl-DBD-Firebird (master). "Buildrequire libfbclient.so rather firebird-devel to cover building with firebird 2.5.x and 3.0.x without conditionals"

2016-10-14 Thread notifications
From cdb526667272dde002ac7311e972fafeb3bc0ae1 Mon Sep 17 00:00:00 2001
From: Robert Scheck 
Date: Fri, 14 Oct 2016 10:06:04 +0200
Subject: Buildrequire libfbclient.so rather firebird-devel to cover building
 with firebird 2.5.x and 3.0.x without conditionals

---
 perl-DBD-Firebird.spec | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/perl-DBD-Firebird.spec b/perl-DBD-Firebird.spec
index 7bd8efb..1a68a23 100644
--- a/perl-DBD-Firebird.spec
+++ b/perl-DBD-Firebird.spec
@@ -6,7 +6,7 @@
 Summary:A Firebird interface for perl
 Name:   perl-DBD-Firebird
 Version:1.22
-Release:2%{?dist}
+Release:3%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/%{pkgname}/
@@ -15,7 +15,7 @@ Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} 
-V:version`"; echo $versi
 BuildRequires:  coreutils
 BuildRequires:  findutils
 BuildRequires:  firebird >= 2.5.1
-BuildRequires:  firebird-devel >= 2.5.1
+BuildRequires:  %{_libdir}/libfbclient.so
 BuildRequires:  make
 BuildRequires:  perl >= 5.10.1
 BuildRequires:  perl-devel
@@ -85,6 +85,10 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Fri Oct 14 2016 Robert Scheck  1.22-3
+- Buildrequire libfbclient.so rather firebird-devel to cover
+  building with firebird 2.5.x and 3.0.x without conditionals
+
 * Sun May 15 2016 Jitka Plesnikova  - 1.22-2
 - Perl 5.24 rebuild
 
-- 
cgit v0.12



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


pghmcfc pushed to perl-Test-Kwalitee (f25). "Update to 1.23 (..more)"

2016-10-14 Thread notifications
From a1034337283bdc8af318e6cfced49c2df4499607 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Fri, 14 Oct 2016 09:32:17 +0100
Subject: Update to 1.23

- New upstream release 1.23
  - Update the list of metrics to the latest Module::CPANTS::Analyse
- Switch back to ExtUtils::MakeMaker flow
- Drop redundant Group: tag
- Drop support for old rpm versions that don't have %license
---
 perl-Test-Kwalitee.spec | 37 -
 sources |  2 +-
 2 files changed, 21 insertions(+), 18 deletions(-)

diff --git a/perl-Test-Kwalitee.spec b/perl-Test-Kwalitee.spec
index 4948149..105ed01 100644
--- a/perl-Test-Kwalitee.spec
+++ b/perl-Test-Kwalitee.spec
@@ -1,29 +1,28 @@
 Name:  perl-Test-Kwalitee
-Version:   1.22
-Release:   6%{?dist}
+Version:   1.23
+Release:   1%{?dist}
 Summary:   Test the Kwalitee of a distribution before you release it
 License:   GPL+ or Artistic
-Group: Development/Libraries
 URL:   http://metacpan.org/module/Test::Kwalitee
 Source0:   
http://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Kwalitee-%{version}.tar.gz
 BuildArch: noarch
 # Build
+BuildRequires: coreutils
+BuildRequires: make
 BuildRequires: perl
 BuildRequires: perl-generators
-BuildRequires: perl(Module::Build::Tiny) >= 0.037
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
 # Module
 BuildRequires: perl(Cwd)
 BuildRequires: perl(Exporter)
 BuildRequires: perl(Module::CPANTS::Analyse) >= 0.92
-BuildRequires: perl(namespace::clean)
 BuildRequires: perl(parent)
 BuildRequires: perl(strict)
 BuildRequires: perl(Test::Builder) >= 0.88
 BuildRequires: perl(warnings)
 # Test Suite
 BuildRequires: perl(CPAN::Meta) >= 2.120900
-BuildRequires: perl(CPAN::Meta::Check) >= 0.007
-BuildRequires: perl(ExtUtils::MakeMaker)
+BuildRequires: perl(CPAN::Meta::Check) >= 0.011
 BuildRequires: perl(File::Spec)
 BuildRequires: perl(File::Temp)
 BuildRequires: perl(lib)
@@ -32,7 +31,7 @@ BuildRequires:perl(Test::Deep)
 BuildRequires: perl(Test::More) >= 0.94
 BuildRequires: perl(Test::Tester) >= 0.108
 BuildRequires: perl(Test::Warnings) >= 0.009
-# Runtime
+# Dependencies
 Requires:  perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 
 %description
@@ -45,18 +44,15 @@ computer science).
 %setup -q -n Test-Kwalitee-%{version}
 
 %build
-perl Build.PL --installdirs=vendor
-./Build
+perl Makefile.PL INSTALLDIRS=vendor NO_PERLLOCAL=1 NO_PACKLIST=1
+make %{?_smp_mflags}
 
 %install
-./Build install --destdir=%{buildroot} --create_packlist=0
-chmod -c 755 %{buildroot}%{_bindir}/kwalitee-metrics
+make install DESTDIR=%{buildroot}
+%{_fixperms} -c %{buildroot}
 
 %check
-./Build test
-
-# Support use of %%license for old distributions
-%{!?_licensedir:%global license %%doc}
+make test
 
 %files
 %license LICENSE
@@ -64,9 +60,16 @@ chmod -c 755 %{buildroot}%{_bindir}/kwalitee-metrics
 %{_bindir}/kwalitee-metrics
 %{perl_vendorlib}/Test/
 %{_mandir}/man1/kwalitee-metrics.1*
-%{_mandir}/man3/Test::Kwalitee.3pm*
+%{_mandir}/man3/Test::Kwalitee.3*
 
 %changelog
+* Fri Oct 14 2016 Paul Howarth  - 1.23-1
+- Update to 1.23
+  - Update the list of metrics to the latest Module::CPANTS::Analyse
+- Switch back to ExtUtils::MakeMaker flow
+- Drop redundant Group: tag
+- Drop support for old rpm versions that don't have %%license
+
 * Mon May 16 2016 Jitka Plesnikova  - 1.22-6
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index 598d896..625956b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-2b3ccaec94e75ab574b0e773f74ca884  Test-Kwalitee-1.22.tar.gz
+e656a7899f6d411853b749ec3f882aec  Test-Kwalitee-1.23.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Test-Kwalitee.git/commit/?h=f25=a1034337283bdc8af318e6cfced49c2df4499607
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1379997] perl-Canary-Stability-2012 is available

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379997

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|perl-Canary-Stability-2012- |perl-Canary-Stability-2012-
   |1.fc26  |1.fc26
   |perl-Canary-Stability-2012- |perl-Canary-Stability-2012-
   |1.fc25  |1.fc25
   |perl-Canary-Stability-2012- |perl-Canary-Stability-2012-
   |1.fc24  |1.fc24
   |perl-Canary-Stability-2012- |perl-Canary-Stability-2012-
   |1.fc23  |1.fc23
   |perl-Canary-Stability-2012- |perl-Canary-Stability-2012-
   |1.el5   |1.el5
   ||perl-Canary-Stability-2012-
   ||1.el6



--- Comment #12 from Fedora Update System  ---
perl-Canary-Stability-2012-1.el6 has been pushed to the Fedora EPEL 6 stable
repository. If problems still persist, please make note of it in this bug
report.

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


[Bug 1384992] Ugrade perl-Lingua-EN-Fathom to 1.19

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1384992

Jeff Fearn  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
 Resolution|--- |RAWHIDE
Last Closed||2016-10-15 00:21:26



--- Comment #1 from Jeff Fearn  ---
 http://koji.fedoraproject.org/koji/taskinfo?taskID=16091581

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


ppisar pushed to perl-Crypt-SMIME (master). "0.18 bump"

2016-10-14 Thread notifications
From 79760fabd9e88c918d67d6e8fc7e192856b1d5eb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 14 Oct 2016 13:36:49 +0200
Subject: 0.18 bump

---
 .gitignore| 1 +
 perl-Crypt-SMIME.spec | 6 +-
 sources   | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index 1c826ee..c8a5caa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ Crypt-SMIME-0.09.tar.gz
 /Crypt-SMIME-0.15.tar.gz
 /Crypt-SMIME-0.16.tar.gz
 /Crypt-SMIME-0.17.tar.gz
+/Crypt-SMIME-0.18.tar.gz
diff --git a/perl-Crypt-SMIME.spec b/perl-Crypt-SMIME.spec
index 52d3ea4..f10306b 100644
--- a/perl-Crypt-SMIME.spec
+++ b/perl-Crypt-SMIME.spec
@@ -1,5 +1,5 @@
 Name:   perl-Crypt-SMIME
-Version:0.17
+Version:0.18
 Release:1%{?dist}
 Summary:S/MIME message signing, verification, encryption and decryption
 License:GPL+ or Artistic
@@ -9,6 +9,7 @@ Source0:
http://www.cpan.org/modules/by-module/Crypt/Crypt-SMIME-%{versio
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:  coreutils
 BuildRequires:  findutils
+BuildRequires:  gcc
 BuildRequires:  make
 BuildRequires:  openssl-devel
 BuildRequires:  perl
@@ -78,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Fri Oct 14 2016 Petr Pisar  - 0.18-1
+- 0.18 bump
+
 * Wed Jun 22 2016 Steve Traylen  - 0.17-1
 - 0.17 bump
 
diff --git a/sources b/sources
index 79b3d59..f8bf552 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-2aed83d36727f163d1862c3d5bad74a3  Crypt-SMIME-0.17.tar.gz
+dc37ffb82628e3f6b7c939a1fc17fa1d  Crypt-SMIME-0.18.tar.gz
-- 
cgit v0.12



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


ppisar uploaded Crypt-SMIME-0.18.tar.gz for perl-Crypt-SMIME

2016-10-14 Thread notifications
dc37ffb82628e3f6b7c939a1fc17fa1d  Crypt-SMIME-0.18.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Crypt-SMIME/Crypt-SMIME-0.18.tar.gz/md5/dc37ffb82628e3f6b7c939a1fc17fa1d/Crypt-SMIME-0.18.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1383760] perl-Crypt-OpenSSL-PKCS10-0.15-3.fc26 FTBFS: dereferencing pointer to incomplete type ' EVP_PKEY {aka struct evp_pkey_st}'

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1383760

Petr Pisar  changed:

   What|Removed |Added

   Keywords||Patch



--- Comment #1 from Petr Pisar  ---
I developed a fix and posted it to the upstream 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


[Bug 1383650] perl-Crypt-OpenSSL-RSA-0.28-15.fc26 FTBFS: dereferencing pointer to incomplete type 'RSA {aka struct rsa_st}'

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1383650

Petr Pisar  changed:

   What|Removed |Added

 Blocks||1383760




Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1383760
[Bug 1383760] perl-Crypt-OpenSSL-PKCS10-0.15-3.fc26 FTBFS: dereferencing
pointer to incomplete type 'EVP_PKEY {aka struct evp_pkey_st}'
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1383760] perl-Crypt-OpenSSL-PKCS10-0.15-3.fc26 FTBFS: dereferencing pointer to incomplete type ' EVP_PKEY {aka struct evp_pkey_st}'

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1383760

Petr Pisar  changed:

   What|Removed |Added

 Depends On||1383650




Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1383650
[Bug 1383650] perl-Crypt-OpenSSL-RSA-0.28-15.fc26 FTBFS: dereferencing
pointer to incomplete type 'RSA {aka struct rsa_st}'
-- 
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


ppisar uploaded CGI-4.35.tar.gz for perl-CGI

2016-10-14 Thread notifications
15e63942c02354426b25f056f2a4467c  CGI-4.35.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-CGI/CGI-4.35.tar.gz/md5/15e63942c02354426b25f056f2a4467c/CGI-4.35.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


ppisar pushed to perl-CGI (master). "4.35 bump"

2016-10-14 Thread notifications
From bed73140ad663235f98d29bff68983c51a807514 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 14 Oct 2016 15:33:56 +0200
Subject: 4.35 bump

---
 .gitignore| 1 +
 perl-CGI.spec | 7 ---
 sources   | 2 +-
 3 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index fac1d69..0e7246d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,3 +25,4 @@
 /CGI-4.31.tar.gz
 /CGI-4.32.tar.gz
 /CGI-4.33.tar.gz
+/CGI-4.35.tar.gz
diff --git a/perl-CGI.spec b/perl-CGI.spec
index af3da9b..284d947 100644
--- a/perl-CGI.spec
+++ b/perl-CGI.spec
@@ -1,6 +1,6 @@
 Name:   perl-CGI
 Summary:Handle Common Gateway Interface requests and responses
-Version:4.33
+Version:4.35
 Release:1%{?dist}
 License:(GPL+ or Artistic) and Artistic 2.0
 Group:  Development/Libraries
@@ -14,7 +14,6 @@ BuildRequires:  make
 BuildRequires:  perl
 BuildRequires:  perl-generators
 BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  sed
 # Run-requires:
 BuildRequires:  perl(base)
 BuildRequires:  perl(Carp)
@@ -84,7 +83,6 @@ with built-in support for mod_perl and mod_perl2 as well as 
FastCGI.
 %setup -q -n CGI-%{version}
 iconv -f iso8859-1 -t utf-8 < Changes > Changes.1
 mv Changes.1 Changes
-sed -i 's?usr/bin perl?usr/bin/perl?' t/init.t
 chmod -c -x examples/*
 
 %build
@@ -106,6 +104,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Fri Oct 14 2016 Petr Pisar  - 4.35-1
+- 4.35 bump
+
 * Mon Sep 19 2016 Jitka Plesnikova  - 4.33-1
 - 4.33 bump
 
diff --git a/sources b/sources
index 261757f..40818a9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bc7586ee7132a1e09c7d0bc3d6703af0  CGI-4.33.tar.gz
+15e63942c02354426b25f056f2a4467c  CGI-4.35.tar.gz
-- 
cgit v0.12



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


yaneti pushed to perl-HTTP-CookieJar (master). "Drop version requirements for perl(Time::Local) BR (..more)"

2016-10-14 Thread notifications
From 074ab6def4639260894052239b2b4bc8f2fa332d Mon Sep 17 00:00:00 2001
From: Yanko Kaneti 
Date: Fri, 14 Oct 2016 18:37:02 +0300
Subject: Drop version requirements for perl(Time::Local) BR

due to perl-Time-Local version going backwards recently
---
 perl-HTTP-CookieJar.spec | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/perl-HTTP-CookieJar.spec b/perl-HTTP-CookieJar.spec
index 37e2819..707c6b1 100644
--- a/perl-HTTP-CookieJar.spec
+++ b/perl-HTTP-CookieJar.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTTP-CookieJar
 Version:0.008
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Minimalist HTTP user agent cookie jar
 License:ASL 2.0
 Group:  Development/Libraries
@@ -24,7 +24,7 @@ BuildRequires:  perl(parent)
 BuildRequires:  perl(Test::Deep)
 BuildRequires:  perl(Test::More) >= 0.96
 BuildRequires:  perl(Test::Requires)
-BuildRequires:  perl(Time::Local) >= 1.1901
+BuildRequires:  perl(Time::Local)
 BuildRequires:  perl(URI)
 BuildRequires:  perl(strict), perl(warnings)
 
@@ -57,6 +57,10 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Fri Oct 14 2016 Yanko Kaneti  0.008-4
+- Drop version requirements for perl(Time::Local) BR due to
+  perl-Time-Local version going backwards recently
+
 * Sun May 15 2016 Jitka Plesnikova  - 0.008-3
 - Perl 5.24 rebuild
 
-- 
cgit v0.12



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


Broken dependencies: perl-Alien-ROOT

2016-10-14 Thread buildsys


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

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


Broken dependencies: perl-DBD-Firebird

2016-10-14 Thread buildsys


perl-DBD-Firebird has broken dependencies in the rawhide tree:
On aarch64:
perl-DBD-Firebird-1.22-2.fc25.aarch64 requires 
libfbembed.so.2.5()(64bit)
On x86_64:
perl-DBD-Firebird-1.22-2.fc25.x86_64 requires libfbembed.so.2.5()(64bit)
On i386:
perl-DBD-Firebird-1.22-2.fc25.i686 requires libfbembed.so.2.5
On armhfp:
perl-DBD-Firebird-1.22-2.fc25.armv7hl requires libfbembed.so.2.5
Please resolve this as soon as possible.

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


Broken dependencies: perl-Data-Alias

2016-10-14 Thread buildsys


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

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


[Bug 1385002] New: Upgrade perl-Pod-PseudoPod-LaTeX to 1.20160626

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1385002

Bug ID: 1385002
   Summary: Upgrade perl-Pod-PseudoPod-LaTeX to 1.20160626
   Product: Fedora
   Version: rawhide
 Component: perl-Pod-PseudoPod-LaTeX
  Keywords: FutureFeature
  Assignee: g...@zimt.uni-siegen.de
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: g...@zimt.uni-siegen.de,
perl-devel@lists.fedoraproject.org



Latest Fedora delivers 1.20110710 version. Upstream released 1.20160626. When
you have free time, upgrade it.

Also please consider enabling release monitoring

to receive update notifications automatically.

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


ppisar pushed to perl-Time-Local (f24). "1.24 bump"

2016-10-14 Thread notifications
From 234fc61a141bf9fef36d06341556315ec0f5de7d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 14 Oct 2016 16:52:14 +0200
Subject: 1.24 bump

---
 .gitignore   |  1 +
 .rpmlint |  2 ++
 perl-Time-Local.spec | 28 +++-
 sources  |  2 +-
 4 files changed, 23 insertions(+), 10 deletions(-)
 create mode 100644 .rpmlint

diff --git a/.gitignore b/.gitignore
index d83ea2c..8a88865 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /Time-Local-1.2300.tar.gz
+/Time-Local-1.24.tar.gz
diff --git a/.rpmlint b/.rpmlint
new file mode 100644
index 000..de62e0f
--- /dev/null
+++ b/.rpmlint
@@ -0,0 +1,2 @@
+from Config import *
+addFilter("spelling-error .* (gmtime|localtime)");
diff --git a/perl-Time-Local.spec b/perl-Time-Local.spec
index 421d9bf..a4615d8 100644
--- a/perl-Time-Local.spec
+++ b/perl-Time-Local.spec
@@ -1,15 +1,19 @@
+%global cpan_version 1.24
 Name:   perl-Time-Local
-Version:1.2300
-Release:347%{?dist}
+Epoch:  1
+Version:%{cpan_version}0
+Release:1%{?dist}
 Summary:Efficiently compute time from local and GMT time
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Time-Local/
-Source0:
http://www.cpan.org/authors/id/D/DR/DROLSKY/Time-Local-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/D/DR/DROLSKY/Time-Local-%{cpan_version}.tar.gz
 BuildArch:  noarch
+BuildRequires:  findutils
+BuildRequires:  make
 BuildRequires:  perl
 BuildRequires:  perl-generators
-BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.30
+BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
 # Run-time:
@@ -17,9 +21,11 @@ BuildRequires:  perl(Carp)
 BuildRequires:  perl(Config)
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Exporter)
-BuildRequires:  perl(vars)
+BuildRequires:  perl(parent)
 # Tests:
-BuildRequires:  perl(Test::More) >= 0.88
+# POSIX not used
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(Test::More) >= 0.96
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 
 %description
@@ -31,7 +37,7 @@ positive or negative, though POSIX only requires support for 
positive values,
 so dates before the system's epoch may not work on all operating systems.
 
 %prep
-%setup -q -n Time-Local-%{version}
+%setup -q -n Time-Local-%{cpan_version}
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor
@@ -39,18 +45,22 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -type f -name .packlist -delete
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
 make test
 
 %files
-%doc Changes LICENSE README
+%license LICENSE
+%doc Changes CONTRIBUTING.md README.md
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Fri Oct 14 2016 Petr Pisar  - 1:1.240-1
+- 1.24 bump
+
 * Thu Feb 04 2016 Fedora Release Engineering  - 
1.2300-347
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
 
diff --git a/sources b/sources
index 8c6f9a8..c0633ca 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-68e1be54c151cf131f9d4168b3e662f9  Time-Local-1.2300.tar.gz
+15e86173e9f157ab44f8ec2fcab53fa4  Time-Local-1.24.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Time-Local.git/commit/?h=f24=234fc61a141bf9fef36d06341556315ec0f5de7d
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Test-File (perl-Test-File-1.44-1.fc23). "Update to 1.44 (..more)"

2016-10-14 Thread notifications
From 0f068ca078d48eb01a00e721ce8e83c512f41fb4 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Mon, 6 Jul 2015 11:20:40 +0100
Subject: Update to 1.44

- New upstream release 1.44
  - Fix problem with META* specifying requirements (CPAN RT#105210)
  - Don't install README.pod
  - check file_mode_has tests for Windows
  - Fix file_has_* tests to work on Windows (GH#13)
---
 perl-Test-File.spec | 17 +
 sources |  2 +-
 2 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/perl-Test-File.spec b/perl-Test-File.spec
index 31412ec..17b6c38 100644
--- a/perl-Test-File.spec
+++ b/perl-Test-File.spec
@@ -1,13 +1,16 @@
 Summary:   Test file attributes through Test::Builder
 Name:  perl-Test-File
-Version:   1.41
-Release:   3%{?dist}
+Version:   1.44
+Release:   1%{?dist}
 Group: Development/Libraries
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/Test-File/
 Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Test-File-%{version}.tar.gz
 BuildArch: noarch
 # Module Build
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: make
 BuildRequires: perl
 BuildRequires: perl(ExtUtils::MakeMaker) >= 6.48
 BuildRequires: perl(ExtUtils::Manifest) >= 1.21
@@ -28,7 +31,6 @@ BuildRequires:perl(Test::utf8)
 BuildRequires: perl(utf8)
 # Optional Tests
 BuildRequires: perl(Test::Pod) >= 1.00
-BuildRequires: perl(Test::Prereq) >= 1.0
 BuildRequires: perl(Test::Pod::Coverage)
 # Runtime
 Requires:  perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
@@ -56,11 +58,18 @@ make test
 
 %files
 %license LICENSE
-%doc Changes README
+%doc Changes README.pod
 %{perl_vendorlib}/Test/
 %{_mandir}/man3/Test::File.3*
 
 %changelog
+* Mon Jul  6 2015 Paul Howarth  - 1.44-1
+- Update to 1.44
+  - Fix problem with META* specifying requirements (CPAN RT#105210)
+  - Don't install README.pod
+  - check file_mode_has tests for Windows
+  - Fix file_has_* tests to work on Windows (GH#13)
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 1.41-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
diff --git a/sources b/sources
index ddbfd32..c7db3d7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e23ca28784d92de06e3052c6f3ff3e06  Test-File-1.41.tar.gz
+e27abfdef840e0549c6e0852ed54689f  Test-File-1.44.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Test-File.git/commit/?h=perl-Test-File-1.44-1.fc23=0f068ca078d48eb01a00e721ce8e83c512f41fb4
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


ppisar pushed to perl-Time-Local (f24). "Mandatory Perl build-requires added "

2016-10-14 Thread notifications
From 5b72cab7e884f0ab318393cfa5027c8c0c1cd892 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 24 Jun 2016 10:28:16 +0200
Subject: Mandatory Perl build-requires added
 

---
 perl-Time-Local.spec | 1 +
 1 file changed, 1 insertion(+)

diff --git a/perl-Time-Local.spec b/perl-Time-Local.spec
index fcad93b..421d9bf 100644
--- a/perl-Time-Local.spec
+++ b/perl-Time-Local.spec
@@ -8,6 +8,7 @@ URL:http://search.cpan.org/dist/Time-Local/
 Source0:
http://www.cpan.org/authors/id/D/DR/DROLSKY/Time-Local-%{version}.tar.gz
 BuildArch:  noarch
 BuildRequires:  perl
+BuildRequires:  perl-generators
 BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.30
 BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Time-Local.git/commit/?h=f24=5b72cab7e884f0ab318393cfa5027c8c0c1cd892
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


spot pushed to perl-Log-Dispatch-FileRotate (f25). "more br"

2016-10-14 Thread notifications
From 19dc0766b70c0871713d2e997267e72071234360 Mon Sep 17 00:00:00 2001
From: Tom Callaway 
Date: Fri, 14 Oct 2016 11:09:58 -0400
Subject: more br

---
 perl-Log-Dispatch-FileRotate.spec | 1 +
 1 file changed, 1 insertion(+)

diff --git a/perl-Log-Dispatch-FileRotate.spec 
b/perl-Log-Dispatch-FileRotate.spec
index eface69..9ef1dd0 100644
--- a/perl-Log-Dispatch-FileRotate.spec
+++ b/perl-Log-Dispatch-FileRotate.spec
@@ -12,6 +12,7 @@ BuildRequires:  perl(Date::Manip)
 BuildRequires:  perl(Log::Dispatch)
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires: perl(Test::More)
+BuildRequires: perl(Path::Tiny)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 %description
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Log-Dispatch-FileRotate.git/commit/?h=f25=19dc0766b70c0871713d2e997267e72071234360
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


spot pushed to perl-Log-Dispatch-FileRotate (master). "more br"

2016-10-14 Thread notifications
From 19dc0766b70c0871713d2e997267e72071234360 Mon Sep 17 00:00:00 2001
From: Tom Callaway 
Date: Fri, 14 Oct 2016 11:09:58 -0400
Subject: more br

---
 perl-Log-Dispatch-FileRotate.spec | 1 +
 1 file changed, 1 insertion(+)

diff --git a/perl-Log-Dispatch-FileRotate.spec 
b/perl-Log-Dispatch-FileRotate.spec
index eface69..9ef1dd0 100644
--- a/perl-Log-Dispatch-FileRotate.spec
+++ b/perl-Log-Dispatch-FileRotate.spec
@@ -12,6 +12,7 @@ BuildRequires:  perl(Date::Manip)
 BuildRequires:  perl(Log::Dispatch)
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires: perl(Test::More)
+BuildRequires: perl(Path::Tiny)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 %description
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Log-Dispatch-FileRotate.git/commit/?h=master=19dc0766b70c0871713d2e997267e72071234360
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1384996] New: Upgrade perl-Net-CLI-Interact to 2.200006

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1384996

Bug ID: 1384996
   Summary: Upgrade perl-Net-CLI-Interact to 2.26
   Product: Fedora
   Version: rawhide
 Component: perl-Net-CLI-Interact
  Keywords: FutureFeature
  Assignee: negativ...@gmail.com
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: negativ...@gmail.com,
perl-devel@lists.fedoraproject.org



Latest Fedora delivers version 2.25. Upstream released 2.26. When you
have free time, upgrade it.

Also please consider enabling release monitoring
 in
order to receive update notifications automatically.

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


[Bug 1385005] New: Upgrade perl-Proc-PID-File to 1.28

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1385005

Bug ID: 1385005
   Summary: Upgrade perl-Proc-PID-File to 1.28
   Product: Fedora
   Version: rawhide
 Component: perl-Proc-PID-File
  Keywords: FutureFeature
  Assignee: maria...@tuxette.fr
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: maria...@tuxette.fr,
perl-devel@lists.fedoraproject.org



Latest Fedora delivers 1.27 version. Upstream released 1.28. When you have free
time, upgrade it.

Also please consider enabling release monitoring
 to
receive update notification automatically.

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


[Bug 1385016] New: Upgrade perl-Text-vCard to 3.08

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1385016

Bug ID: 1385016
   Summary: Upgrade perl-Text-vCard to 3.08
   Product: Fedora
   Version: rawhide
 Component: perl-Text-vCard
  Keywords: FutureFeature
  Assignee: phil...@redfish-solutions.com
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
phil...@redfish-solutions.com



Latest Fedora delivers 3.07 version. Upstream released 3.08. When you have free
time, upgrade it.

Also please consider enabling release monitoring
 to
receive update notifications automatically.

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


pghmcfc pushed to perl-Test-File (master). "Update to 1.442 (..more)"

2016-10-14 Thread notifications
From a76569e5ed254e6d2a5a0d51a5aa3b6f3aee4d59 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Fri, 14 Oct 2016 15:41:00 +0100
Subject: Update to 1.442

- New upstream release 1.442
  - Fix for missing . in @INC; this relates to CVE-2016-1238
(https://github.com/briandfoy/test-file/issues/14)
- Split rpm and upstream versioning
- Use features from recent EUMM to simplify %%install section
---
 perl-Test-File.spec | 29 +++--
 sources |  2 +-
 2 files changed, 20 insertions(+), 11 deletions(-)

diff --git a/perl-Test-File.spec b/perl-Test-File.spec
index 93d2ece..a1ec78f 100644
--- a/perl-Test-File.spec
+++ b/perl-Test-File.spec
@@ -1,19 +1,22 @@
+# This module usually ships with version numbers having two digits after the 
decimal point
+%global cpanversion 1.442
+%global rpmversion 1.44.2
+
 Summary:   Test file attributes through Test::Builder
 Name:  perl-Test-File
-Version:   1.44
-Release:   3%{?dist}
+Version:   %{rpmversion}
+Release:   1%{?dist}
 Group: Development/Libraries
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/Test-File/
-Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Test-File-%{version}.tar.gz
+Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Test-File-%{cpanversion}.tar.gz
 BuildArch: noarch
 # Module Build
 BuildRequires: coreutils
-BuildRequires: findutils
 BuildRequires: make
 BuildRequires: perl
 BuildRequires: perl-generators
-BuildRequires: perl(ExtUtils::MakeMaker) >= 6.48
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
 BuildRequires: perl(ExtUtils::Manifest) >= 1.21
 # Module Runtime
 BuildRequires: perl(base)
@@ -43,16 +46,15 @@ Some file attributes depend on the owner of the process 
testing the file
 in the same way the file test operators do.
 
 %prep
-%setup -q -n Test-File-%{version}
+%setup -q -n Test-File-%{cpanversion}
 
 %build
-perl Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
 make %{?_smp_mflags}
 
 %install
-make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-%{_fixperms} %{buildroot}
+make install DESTDIR=%{buildroot}
+%{_fixperms} -c %{buildroot}
 
 %check
 make test
@@ -64,6 +66,13 @@ make test
 %{_mandir}/man3/Test::File.3*
 
 %changelog
+* Fri Oct 14 2016 Paul Howarth  - 1.44.2-1
+- Update to 1.442
+  - Fix for missing . in @INC; this relates to CVE-2016-1238
+(https://github.com/briandfoy/test-file/issues/14)
+- Split rpm and upstream versioning
+- Use features from recent EUMM to simplify %%install section
+
 * Sun May 15 2016 Jitka Plesnikova  - 1.44-3
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index c7db3d7..80448da 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e27abfdef840e0549c6e0852ed54689f  Test-File-1.44.tar.gz
+cce04398b50300c92a0cf4835105cf4f  Test-File-1.442.tar.gz
-- 
cgit v0.12



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


pghmcfc pushed to perl-Test-File (f25). "Update to 1.442 (..more)"

2016-10-14 Thread notifications
From a76569e5ed254e6d2a5a0d51a5aa3b6f3aee4d59 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Fri, 14 Oct 2016 15:41:00 +0100
Subject: Update to 1.442

- New upstream release 1.442
  - Fix for missing . in @INC; this relates to CVE-2016-1238
(https://github.com/briandfoy/test-file/issues/14)
- Split rpm and upstream versioning
- Use features from recent EUMM to simplify %%install section
---
 perl-Test-File.spec | 29 +++--
 sources |  2 +-
 2 files changed, 20 insertions(+), 11 deletions(-)

diff --git a/perl-Test-File.spec b/perl-Test-File.spec
index 93d2ece..a1ec78f 100644
--- a/perl-Test-File.spec
+++ b/perl-Test-File.spec
@@ -1,19 +1,22 @@
+# This module usually ships with version numbers having two digits after the 
decimal point
+%global cpanversion 1.442
+%global rpmversion 1.44.2
+
 Summary:   Test file attributes through Test::Builder
 Name:  perl-Test-File
-Version:   1.44
-Release:   3%{?dist}
+Version:   %{rpmversion}
+Release:   1%{?dist}
 Group: Development/Libraries
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/Test-File/
-Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Test-File-%{version}.tar.gz
+Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Test-File-%{cpanversion}.tar.gz
 BuildArch: noarch
 # Module Build
 BuildRequires: coreutils
-BuildRequires: findutils
 BuildRequires: make
 BuildRequires: perl
 BuildRequires: perl-generators
-BuildRequires: perl(ExtUtils::MakeMaker) >= 6.48
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
 BuildRequires: perl(ExtUtils::Manifest) >= 1.21
 # Module Runtime
 BuildRequires: perl(base)
@@ -43,16 +46,15 @@ Some file attributes depend on the owner of the process 
testing the file
 in the same way the file test operators do.
 
 %prep
-%setup -q -n Test-File-%{version}
+%setup -q -n Test-File-%{cpanversion}
 
 %build
-perl Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
 make %{?_smp_mflags}
 
 %install
-make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-%{_fixperms} %{buildroot}
+make install DESTDIR=%{buildroot}
+%{_fixperms} -c %{buildroot}
 
 %check
 make test
@@ -64,6 +66,13 @@ make test
 %{_mandir}/man3/Test::File.3*
 
 %changelog
+* Fri Oct 14 2016 Paul Howarth  - 1.44.2-1
+- Update to 1.442
+  - Fix for missing . in @INC; this relates to CVE-2016-1238
+(https://github.com/briandfoy/test-file/issues/14)
+- Split rpm and upstream versioning
+- Use features from recent EUMM to simplify %%install section
+
 * Sun May 15 2016 Jitka Plesnikova  - 1.44-3
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index c7db3d7..80448da 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e27abfdef840e0549c6e0852ed54689f  Test-File-1.44.tar.gz
+cce04398b50300c92a0cf4835105cf4f  Test-File-1.442.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Test-File.git/commit/?h=f25=a76569e5ed254e6d2a5a0d51a5aa3b6f3aee4d59
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Test-File (perl-Test-File-1.44.2-1.fc26). "Update to 1.442 (..more)"

2016-10-14 Thread notifications
This commit already existed in another branch.

http://pkgs.fedoraproject.org/cgit/perl-Test-File.git/commit/?h=perl-Test-File-1.44.2-1.fc26=a76569e5ed254e6d2a5a0d51a5aa3b6f3aee4d59
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Test-File (perl-Test-File-1.44.2-1.fc25). "Update to 1.442 (..more)"

2016-10-14 Thread notifications
From a76569e5ed254e6d2a5a0d51a5aa3b6f3aee4d59 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Fri, 14 Oct 2016 15:41:00 +0100
Subject: Update to 1.442

- New upstream release 1.442
  - Fix for missing . in @INC; this relates to CVE-2016-1238
(https://github.com/briandfoy/test-file/issues/14)
- Split rpm and upstream versioning
- Use features from recent EUMM to simplify %%install section
---
 perl-Test-File.spec | 29 +++--
 sources |  2 +-
 2 files changed, 20 insertions(+), 11 deletions(-)

diff --git a/perl-Test-File.spec b/perl-Test-File.spec
index 93d2ece..a1ec78f 100644
--- a/perl-Test-File.spec
+++ b/perl-Test-File.spec
@@ -1,19 +1,22 @@
+# This module usually ships with version numbers having two digits after the 
decimal point
+%global cpanversion 1.442
+%global rpmversion 1.44.2
+
 Summary:   Test file attributes through Test::Builder
 Name:  perl-Test-File
-Version:   1.44
-Release:   3%{?dist}
+Version:   %{rpmversion}
+Release:   1%{?dist}
 Group: Development/Libraries
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/Test-File/
-Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Test-File-%{version}.tar.gz
+Source0:   
http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Test-File-%{cpanversion}.tar.gz
 BuildArch: noarch
 # Module Build
 BuildRequires: coreutils
-BuildRequires: findutils
 BuildRequires: make
 BuildRequires: perl
 BuildRequires: perl-generators
-BuildRequires: perl(ExtUtils::MakeMaker) >= 6.48
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
 BuildRequires: perl(ExtUtils::Manifest) >= 1.21
 # Module Runtime
 BuildRequires: perl(base)
@@ -43,16 +46,15 @@ Some file attributes depend on the owner of the process 
testing the file
 in the same way the file test operators do.
 
 %prep
-%setup -q -n Test-File-%{version}
+%setup -q -n Test-File-%{cpanversion}
 
 %build
-perl Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
 make %{?_smp_mflags}
 
 %install
-make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-%{_fixperms} %{buildroot}
+make install DESTDIR=%{buildroot}
+%{_fixperms} -c %{buildroot}
 
 %check
 make test
@@ -64,6 +66,13 @@ make test
 %{_mandir}/man3/Test::File.3*
 
 %changelog
+* Fri Oct 14 2016 Paul Howarth  - 1.44.2-1
+- Update to 1.442
+  - Fix for missing . in @INC; this relates to CVE-2016-1238
+(https://github.com/briandfoy/test-file/issues/14)
+- Split rpm and upstream versioning
+- Use features from recent EUMM to simplify %%install section
+
 * Sun May 15 2016 Jitka Plesnikova  - 1.44-3
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index c7db3d7..80448da 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e27abfdef840e0549c6e0852ed54689f  Test-File-1.44.tar.gz
+cce04398b50300c92a0cf4835105cf4f  Test-File-1.442.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Test-File.git/commit/?h=perl-Test-File-1.44.2-1.fc25=a76569e5ed254e6d2a5a0d51a5aa3b6f3aee4d59
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


spot pushed to perl-Log-Dispatch-FileRotate (f25). "1.22"

2016-10-14 Thread notifications
From dd1e2dcd8011e96af4355f8fd41960427ede6ba5 Mon Sep 17 00:00:00 2001
From: Tom Callaway 
Date: Fri, 14 Oct 2016 10:52:56 -0400
Subject: 1.22

---
 .gitignore|  1 +
 perl-Log-Dispatch-FileRotate.spec | 26 ++
 sources   |  2 +-
 3 files changed, 8 insertions(+), 21 deletions(-)

diff --git a/.gitignore b/.gitignore
index 6395e64..cf86509 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 Log-Dispatch-FileRotate-1.19.tar.gz
+/Log-Dispatch-FileRotate-1.22.tar.gz
diff --git a/perl-Log-Dispatch-FileRotate.spec 
b/perl-Log-Dispatch-FileRotate.spec
index c8255d0..ec014f0 100644
--- a/perl-Log-Dispatch-FileRotate.spec
+++ b/perl-Log-Dispatch-FileRotate.spec
@@ -1,21 +1,16 @@
 Name:   perl-Log-Dispatch-FileRotate
-Version:1.19
-Release:21%{?dist}
+Version:1.22
+Release:1%{?dist}
 Summary:Log to files that archive/rotate themselves
-
 Group:  Development/Libraries
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/Log-Dispatch-FileRotate/
 Source0:
http://www.cpan.org/authors/id/M/MA/MARKPF/Log-Dispatch-FileRotate-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
 BuildArch:  noarch
 BuildRequires:  perl-generators
 BuildRequires:  perl(Date::Manip)
 BuildRequires:  perl(Log::Dispatch)
 BuildRequires:  perl(ExtUtils::MakeMaker)
-# See comment in the %%check section
-%{?_with_tests:BuildRequires:  perl(Log::Log4perl) >= 1.0}
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 %description
@@ -24,41 +19,32 @@ Log::Dispatch::* system, and automatically rotating them 
according to
 different constraints. This is basically a Log::Dispatch::File wrapper
 with additions.
 
-
 %prep
 %setup -q -n Log-Dispatch-FileRotate-%{version}
 
-
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-
 %install
-rm -rf $RPM_BUILD_ROOT
 make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
 find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
 chmod -R u+w $RPM_BUILD_ROOT/*
 
-
 %check
-# Test suite disabled: circular dependencies with Log::Log4perl
-%{?_with_tests:make test}
-
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
+make test
 
 %files
-%defattr(-,root,root,-)
 %doc Changes README
 %{perl_vendorlib}/Log/Dispatch/
 %{_mandir}/man3/*.3pm*
 
 
 %changelog
+* Fri Oct 14 2016 Tom Callaway  - 1.22-1
+- update to 1.22
+
 * Mon May 16 2016 Jitka Plesnikova  - 1.19-21
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index fb550f8..e61a9bd 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-8fabfe387bb070580f7c97c18853ae25  Log-Dispatch-FileRotate-1.19.tar.gz
+904b198de252edbdce1b49307486e849  Log-Dispatch-FileRotate-1.22.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Log-Dispatch-FileRotate.git/commit/?h=f25=dd1e2dcd8011e96af4355f8fd41960427ede6ba5
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


spot pushed to perl-Log-Dispatch-FileRotate (master). "Test::More"

2016-10-14 Thread notifications
From d95c4850d97124d14421ef42a3813b1e542e26d7 Mon Sep 17 00:00:00 2001
From: Tom Callaway 
Date: Fri, 14 Oct 2016 11:04:07 -0400
Subject: Test::More

---
 perl-Log-Dispatch-FileRotate.spec | 1 +
 1 file changed, 1 insertion(+)

diff --git a/perl-Log-Dispatch-FileRotate.spec 
b/perl-Log-Dispatch-FileRotate.spec
index ec014f0..eface69 100644
--- a/perl-Log-Dispatch-FileRotate.spec
+++ b/perl-Log-Dispatch-FileRotate.spec
@@ -11,6 +11,7 @@ BuildRequires:  perl-generators
 BuildRequires:  perl(Date::Manip)
 BuildRequires:  perl(Log::Dispatch)
 BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires: perl(Test::More)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 %description
-- 
cgit v0.12



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


ppisar pushed to perl-Time-Local (f23). "Mandatory Perl build-requires added "

2016-10-14 Thread notifications
From 445f99183f04d77980c0305a1ecb66b976fb5821 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 24 Jun 2016 10:28:16 +0200
Subject: Mandatory Perl build-requires added
 

---
 perl-Time-Local.spec | 1 +
 1 file changed, 1 insertion(+)

diff --git a/perl-Time-Local.spec b/perl-Time-Local.spec
index bb05482..6a3c55d 100644
--- a/perl-Time-Local.spec
+++ b/perl-Time-Local.spec
@@ -8,6 +8,7 @@ URL:http://search.cpan.org/dist/Time-Local/
 Source0:
http://www.cpan.org/authors/id/D/DR/DROLSKY/Time-Local-%{version}.tar.gz
 BuildArch:  noarch
 BuildRequires:  perl
+BuildRequires:  perl-generators
 BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.30
 BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Time-Local.git/commit/?h=f23=445f99183f04d77980c0305a1ecb66b976fb5821
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1384997] New: Upgrade perl-Net-DNS-SEC to 1.03

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1384997

Bug ID: 1384997
   Summary: Upgrade perl-Net-DNS-SEC to 1.03
   Product: Fedora
   Version: rawhide
 Component: perl-Net-DNS-SEC
  Keywords: FutureFeature
  Assignee: wjhns...@hardakers.net
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
pwout...@redhat.com, wjhns...@hardakers.net



Latest Fedora delivers version 1.02. Upstream released 1.03. When you have free
time, upgrade it.

Also please consider enabling release monitoring
 to
receive notifications about new releases automatically.

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


[Bug 1384988] New: Upgrade perl-DBD-Firebird to 1.24

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1384988

Bug ID: 1384988
   Summary: Upgrade perl-DBD-Firebird to 1.24
   Product: Fedora
   Version: rawhide
 Component: perl-DBD-Firebird
  Keywords: FutureFeature
  Assignee: redhat-bugzi...@linuxnetz.de
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
redhat-bugzi...@linuxnetz.de



Latest Fedora delivers 1.22 version. Upstream released 1.24 version. When you
have free time, please upgrade it.

Also please consider enabling release monitoring service
 in
order to receive update notifications automatically.

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


[Bug 1385014] New: Upgrade perl-Test-File to 1.442

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1385014

Bug ID: 1385014
   Summary: Upgrade perl-Test-File to 1.442
   Product: Fedora
   Version: rawhide
 Component: perl-Test-File
  Keywords: FutureFeature
  Assignee: tcall...@redhat.com
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: p...@city-fan.org, perl-devel@lists.fedoraproject.org,
tcall...@redhat.com



Latest Fedora delivers version 1.44. Upstream released 1.442. When you have
free time, upgrade it.

Also please consider enabling release monitoring
 to receive
update notifications automatically.

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


spot uploaded Log-Dispatch-FileRotate-1.22.tar.gz for perl-Log-Dispatch-FileRotate

2016-10-14 Thread notifications
904b198de252edbdce1b49307486e849  Log-Dispatch-FileRotate-1.22.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Log-Dispatch-FileRotate/Log-Dispatch-FileRotate-1.22.tar.gz/md5/904b198de252edbdce1b49307486e849/Log-Dispatch-FileRotate-1.22.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


ppisar pushed to perl-Time-Local (master). "1.24 bump"

2016-10-14 Thread notifications
From 997c51f42d3dfc332707e5b4b8da682cb8e40b09 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 14 Oct 2016 16:52:14 +0200
Subject: 1.24 bump

---
 .gitignore   |  1 +
 .rpmlint |  2 ++
 perl-Time-Local.spec | 28 +++-
 sources  |  2 +-
 4 files changed, 23 insertions(+), 10 deletions(-)
 create mode 100644 .rpmlint

diff --git a/.gitignore b/.gitignore
index d83ea2c..8a88865 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /Time-Local-1.2300.tar.gz
+/Time-Local-1.24.tar.gz
diff --git a/.rpmlint b/.rpmlint
new file mode 100644
index 000..de62e0f
--- /dev/null
+++ b/.rpmlint
@@ -0,0 +1,2 @@
+from Config import *
+addFilter("spelling-error .* (gmtime|localtime)");
diff --git a/perl-Time-Local.spec b/perl-Time-Local.spec
index 87fa42c..572ffb3 100644
--- a/perl-Time-Local.spec
+++ b/perl-Time-Local.spec
@@ -1,15 +1,19 @@
+%global cpan_version 1.24
 Name:   perl-Time-Local
-Version:1.2300
-Release:365%{?dist}
+Epoch:  1
+Version:%{cpan_version}0
+Release:1%{?dist}
 Summary:Efficiently compute time from local and GMT time
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Time-Local/
-Source0:
http://www.cpan.org/authors/id/D/DR/DROLSKY/Time-Local-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/D/DR/DROLSKY/Time-Local-%{cpan_version}.tar.gz
 BuildArch:  noarch
+BuildRequires:  findutils
+BuildRequires:  make
 BuildRequires:  perl
 BuildRequires:  perl-generators
-BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.30
+BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
 # Run-time:
@@ -17,9 +21,11 @@ BuildRequires:  perl(Carp)
 BuildRequires:  perl(Config)
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Exporter)
-BuildRequires:  perl(vars)
+BuildRequires:  perl(parent)
 # Tests:
-BuildRequires:  perl(Test::More) >= 0.88
+# POSIX not used
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(Test::More) >= 0.96
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 
 %description
@@ -31,7 +37,7 @@ positive or negative, though POSIX only requires support for 
positive values,
 so dates before the system's epoch may not work on all operating systems.
 
 %prep
-%setup -q -n Time-Local-%{version}
+%setup -q -n Time-Local-%{cpan_version}
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor
@@ -39,18 +45,22 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -type f -name .packlist -delete
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
 make test
 
 %files
-%doc Changes LICENSE README
+%license LICENSE
+%doc Changes CONTRIBUTING.md README.md
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Fri Oct 14 2016 Petr Pisar  - 1:1.240-1
+- 1.24 bump
+
 * Sat May 14 2016 Jitka Plesnikova  - 1.2300-365
 - Increase release to favour standalone package
 
diff --git a/sources b/sources
index 8c6f9a8..c0633ca 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-68e1be54c151cf131f9d4168b3e662f9  Time-Local-1.2300.tar.gz
+15e86173e9f157ab44f8ec2fcab53fa4  Time-Local-1.24.tar.gz
-- 
cgit v0.12



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


spot pushed to perl-Log-Dispatch-FileRotate (master). "1.22"

2016-10-14 Thread notifications
From dd1e2dcd8011e96af4355f8fd41960427ede6ba5 Mon Sep 17 00:00:00 2001
From: Tom Callaway 
Date: Fri, 14 Oct 2016 10:52:56 -0400
Subject: 1.22

---
 .gitignore|  1 +
 perl-Log-Dispatch-FileRotate.spec | 26 ++
 sources   |  2 +-
 3 files changed, 8 insertions(+), 21 deletions(-)

diff --git a/.gitignore b/.gitignore
index 6395e64..cf86509 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 Log-Dispatch-FileRotate-1.19.tar.gz
+/Log-Dispatch-FileRotate-1.22.tar.gz
diff --git a/perl-Log-Dispatch-FileRotate.spec 
b/perl-Log-Dispatch-FileRotate.spec
index c8255d0..ec014f0 100644
--- a/perl-Log-Dispatch-FileRotate.spec
+++ b/perl-Log-Dispatch-FileRotate.spec
@@ -1,21 +1,16 @@
 Name:   perl-Log-Dispatch-FileRotate
-Version:1.19
-Release:21%{?dist}
+Version:1.22
+Release:1%{?dist}
 Summary:Log to files that archive/rotate themselves
-
 Group:  Development/Libraries
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/Log-Dispatch-FileRotate/
 Source0:
http://www.cpan.org/authors/id/M/MA/MARKPF/Log-Dispatch-FileRotate-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
 BuildArch:  noarch
 BuildRequires:  perl-generators
 BuildRequires:  perl(Date::Manip)
 BuildRequires:  perl(Log::Dispatch)
 BuildRequires:  perl(ExtUtils::MakeMaker)
-# See comment in the %%check section
-%{?_with_tests:BuildRequires:  perl(Log::Log4perl) >= 1.0}
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 %description
@@ -24,41 +19,32 @@ Log::Dispatch::* system, and automatically rotating them 
according to
 different constraints. This is basically a Log::Dispatch::File wrapper
 with additions.
 
-
 %prep
 %setup -q -n Log-Dispatch-FileRotate-%{version}
 
-
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-
 %install
-rm -rf $RPM_BUILD_ROOT
 make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
 find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
 chmod -R u+w $RPM_BUILD_ROOT/*
 
-
 %check
-# Test suite disabled: circular dependencies with Log::Log4perl
-%{?_with_tests:make test}
-
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
+make test
 
 %files
-%defattr(-,root,root,-)
 %doc Changes README
 %{perl_vendorlib}/Log/Dispatch/
 %{_mandir}/man3/*.3pm*
 
 
 %changelog
+* Fri Oct 14 2016 Tom Callaway  - 1.22-1
+- update to 1.22
+
 * Mon May 16 2016 Jitka Plesnikova  - 1.19-21
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index fb550f8..e61a9bd 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-8fabfe387bb070580f7c97c18853ae25  Log-Dispatch-FileRotate-1.19.tar.gz
+904b198de252edbdce1b49307486e849  Log-Dispatch-FileRotate-1.22.tar.gz
-- 
cgit v0.12



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


[Bug 1384992] New: Ugrade perl-Lingua-EN-Fathom to 1.19

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1384992

Bug ID: 1384992
   Summary: Ugrade perl-Lingua-EN-Fathom to 1.19
   Product: Fedora
   Version: rawhide
 Component: perl-Lingua-EN-Fathom
  Keywords: FutureFeature
  Assignee: r.landm...@redhat.com
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: jfe...@redhat.com, perl-devel@lists.fedoraproject.org,
r.landm...@redhat.com



Latest Fedora delivers version 1.18. Upstream released 1.19. When you have free
time, please upgrade it.

Also please consider enabling releasing monitoring
 to
receive update notification automatically.

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


[Bug 1384999] New: Upgrade perl-Net-IMAP-Simple to 1.2207

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1384999

Bug ID: 1384999
   Summary: Upgrade perl-Net-IMAP-Simple to 1.2207
   Product: Fedora
   Version: rawhide
 Component: perl-Net-IMAP-Simple
  Keywords: FutureFeature
  Assignee: vanmeeuwen+fed...@kolabsys.com
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
vanmeeuwen+fed...@kolabsys.com



Latest Fedora delivers 1.2206 version. Upstream released 1.2207. When you have
free time, upgrade it.

Also please consider enabling release monitoring
 to
receive update notifications automatically.

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


[Bug 1385010] New: Upgrade perl-Sys-SigAction to 0.23

2016-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1385010

Bug ID: 1385010
   Summary: Upgrade perl-Sys-SigAction to 0.23
   Product: Fedora
   Version: rawhide
 Component: perl-Sys-SigAction
  Keywords: FutureFeature
  Assignee: andr...@bawue.net
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: andr...@bawue.net, perl-devel@lists.fedoraproject.org



Latest Fedora delivers 0.21 version. Upstream released 0.23. When you have free
time, please upgrade it.

Also please consider enabling release monitoring
 to
receive notifications automatically.

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


pghmcfc uploaded Test-File-1.442.tar.gz for perl-Test-File

2016-10-14 Thread notifications
cce04398b50300c92a0cf4835105cf4f  Test-File-1.442.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Test-File/Test-File-1.442.tar.gz/md5/cce04398b50300c92a0cf4835105cf4f/Test-File-1.442.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


ppisar uploaded Time-Local-1.24.tar.gz for perl-Time-Local

2016-10-14 Thread notifications
15e86173e9f157ab44f8ec2fcab53fa4  Time-Local-1.24.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Time-Local/Time-Local-1.24.tar.gz/md5/15e86173e9f157ab44f8ec2fcab53fa4/Time-Local-1.24.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


  1   2   >