Re: Fedora Rawhide-20160927.n.1 compose check report

2016-09-27 Thread Adam Williamson
On Tue, 2016-09-27 at 23:22 -0500, Bowen Wang wrote:
> Okay, that makes sense.
> I just run the command:
> dnf upgrade --refresh
> to update my rawhide system. It only downloaded one package, the package
> name is Fedora Rawhide, after that, there isn't any installation
> process, then the command just output complete, and quit.

That's not a package, it's the name of the repository: it's telling you
it's refreshing the metadata for that repository. When you pass --
refresh it forces it to go out and re-fetch the metadata, and that's
what you see happening.

>  I think there
> must be one installation because my kernel is older than the current
> one. But there is none.
> Then I reboot my laptop, it seems that the kernel is not upgraded to the
> newest version. Did I do something wrong?

Nope, you likely just hit a mirror which didn't have the new metadata
yet. If you try again in a few hours you may get a different result.
When there are actually package updates to apply, dnf will list them
and require you to say '(y)es' to approve the installation.
-- 
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


Re: Fedora Rawhide-20160927.n.1 compose check report

2016-09-27 Thread Bowen Wang
Okay, that makes sense.
I just run the command:
dnf upgrade --refresh
to update my rawhide system. It only downloaded one package, the package
name is Fedora Rawhide, after that, there isn't any installation
process, then the command just output complete, and quit. I think there
must be one installation because my kernel is older than the current
one. But there is none.
Then I reboot my laptop, it seems that the kernel is not upgraded to the
newest version. Did I do something wrong?

Bowen
On Tue, Sep 27, 2016 at 07:06:30PM -0700, Adam Williamson wrote:
> On Tue, 2016-09-27 at 19:39 -0500, Bowen Wang wrote:
> > I saw the 20160927 images in the wesite, but I when I ran the dnf
> > upgrade --refresh, it says nothing to do, is that normal? Thanks.
> 
> It's not unusual...there's some other stuff that happens between the
> compose 'completing' and you actually seeing updated packages...
> 
> OK, I wrote a really long explanation which is below, but I'll put a
> summary up here: there's some clever stuff that goes on involving the
> Fedora mirror system and the repository metadata, a consequence of
> which is that with a default configuration you *definitely won't* start
> getting the new packages until an hour or two after the compose
> 'completes', and you *may* not get them until several hours later.
> 
> So to break it down, here's what happens (for Rawhide):
> 
> 1. The compose process itself completes: what that basically means is
> that in the directory under
> https://kojipkgs.fedoraproject.org/compose/rawhide/ we have complete
> repositories, installer images, and all the other bits that get
> produced by the compose process
> 
> 2. Most (but not quite all) of the output of the compose process gets
> synced to the 'master mirror' location, basically meaning it goes to
> https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/ .
> Some of it instead goes to
> https://dl.fedoraproject.org/pub/alt/development/rawhide/ .
> 
> 3a. checksums for some of the repository metadata files are generated
> and stored in the mirrormanager system. You can see these by hitting
> this URL:
> https://mirrors.fedoraproject.org/metalink?repo=rawhide=x86_64 . 
> 
> 3b. The public mirrors start syncing the content of the new compose
> from the primary mirror (mirrors vary in how often they do this, hence
> how long it takes for them to pick up the new compose)
> 
> 3a is actually quite an important point. In a standard Fedora system,
> using the mirrormanager setup for the official repositories, when you
> ask it to refresh metadata, dnf will get both a list of mirrors and a
> list of metadata checksums from mirrormanager. It will go to the first
> mirror on the list and grab the metadata, then it will *check it
> against the checksums* and if it doesn't match, it will move on to the
> next mirror on the list and get the metadata again. Once it's got
> metadata that matches the checksums from mirrormanager, it'll be happy,
> and it'll then be offering the packages listed in that metadata (when
> it actually goes to download the packages, it just hits up each mirror
> in the list in sequence until it finds one which has the file listed in
> the metadata it's working from; if the expected path 404s, it goes to
> the next mirror).
> 
> The primary *reason* for this system is: it's an attempt to make sure
> you don't get really old metadata from stale mirrors. Before this
> system was set up, mirrormanager would just send you a list of mirrors,
> and dnf would grab the metadata from the first mirror on the list, and
> it would assume it was up to date. If you happened to hit a 'bad'
> mirror which wasn't syncing regularly enough or was somehow broken, you
> could get really stale metadata, which would mean you'd get really old
> packages (if that mirror or some other mirror on the list actually
> carried the packages matching the metadata) or no packages at all (if
> the package versions listed in the metadata couldn't be found on any
> mirror).
> 
> So this checksumming system is an attempt to avoid that. mirrormanager
> keeps metadata checksums for (IIRC) the last two or three composes, so
> if the first mirror you hit has metadata that's older than that, dnf
> will ignore it and go to another mirror.
> 
> There's a slight *drawback* to this system, though, which is: with the
> default repo configuration, you will not get packages from a new
> compose until mirrormanager has synced the metadata checksums for that
> new compose and is serving them out. Because obviously, if the new
> checksums aren't on mirrormanager when you get the metadata from a
> fast-syncing mirror, dnf will just figure the metadata is *old*
> (there's no way it can tell it's actually new) and move on to the next

Re: Fedora Rawhide-20160927.n.1 compose check report

2016-09-27 Thread Adam Williamson
On Tue, 2016-09-27 at 19:39 -0500, Bowen Wang wrote:
> I saw the 20160927 images in the wesite, but I when I ran the dnf
> upgrade --refresh, it says nothing to do, is that normal? Thanks.

It's not unusual...there's some other stuff that happens between the
compose 'completing' and you actually seeing updated packages...

OK, I wrote a really long explanation which is below, but I'll put a
summary up here: there's some clever stuff that goes on involving the
Fedora mirror system and the repository metadata, a consequence of
which is that with a default configuration you *definitely won't* start
getting the new packages until an hour or two after the compose
'completes', and you *may* not get them until several hours later.

So to break it down, here's what happens (for Rawhide):

1. The compose process itself completes: what that basically means is
that in the directory under
https://kojipkgs.fedoraproject.org/compose/rawhide/ we have complete
repositories, installer images, and all the other bits that get
produced by the compose process

2. Most (but not quite all) of the output of the compose process gets
synced to the 'master mirror' location, basically meaning it goes to
https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/ .
Some of it instead goes to
https://dl.fedoraproject.org/pub/alt/development/rawhide/ .

3a. checksums for some of the repository metadata files are generated
and stored in the mirrormanager system. You can see these by hitting
this URL:
https://mirrors.fedoraproject.org/metalink?repo=rawhide=x86_64 . 

3b. The public mirrors start syncing the content of the new compose
from the primary mirror (mirrors vary in how often they do this, hence
how long it takes for them to pick up the new compose)

3a is actually quite an important point. In a standard Fedora system,
using the mirrormanager setup for the official repositories, when you
ask it to refresh metadata, dnf will get both a list of mirrors and a
list of metadata checksums from mirrormanager. It will go to the first
mirror on the list and grab the metadata, then it will *check it
against the checksums* and if it doesn't match, it will move on to the
next mirror on the list and get the metadata again. Once it's got
metadata that matches the checksums from mirrormanager, it'll be happy,
and it'll then be offering the packages listed in that metadata (when
it actually goes to download the packages, it just hits up each mirror
in the list in sequence until it finds one which has the file listed in
the metadata it's working from; if the expected path 404s, it goes to
the next mirror).

The primary *reason* for this system is: it's an attempt to make sure
you don't get really old metadata from stale mirrors. Before this
system was set up, mirrormanager would just send you a list of mirrors,
and dnf would grab the metadata from the first mirror on the list, and
it would assume it was up to date. If you happened to hit a 'bad'
mirror which wasn't syncing regularly enough or was somehow broken, you
could get really stale metadata, which would mean you'd get really old
packages (if that mirror or some other mirror on the list actually
carried the packages matching the metadata) or no packages at all (if
the package versions listed in the metadata couldn't be found on any
mirror).

So this checksumming system is an attempt to avoid that. mirrormanager
keeps metadata checksums for (IIRC) the last two or three composes, so
if the first mirror you hit has metadata that's older than that, dnf
will ignore it and go to another mirror.

There's a slight *drawback* to this system, though, which is: with the
default repo configuration, you will not get packages from a new
compose until mirrormanager has synced the metadata checksums for that
new compose and is serving them out. Because obviously, if the new
checksums aren't on mirrormanager when you get the metadata from a
fast-syncing mirror, dnf will just figure the metadata is *old*
(there's no way it can tell it's actually new) and move on to the next
mirror.

I know about this in quite a bit of detail because it's a problem
openQA ran into (and still does, to a degree) all the time :) Because
the openQA tests trigger from the fedmsg that's sent when step 1.
finishes, the openQA test process is basically racing with steps 2. and
particularly with 3a (it doesn't race with 3b because openQA always
uses the primary mirror).

This was why, until a couple of weeks back, openQA tests would
frequently have issues because they were racing with the sync process,
and thus getting old packages or even getting stuck at a particularly
unfortunate point in the race and not completing the install (or a
post-install package transaction) at all. What we did to mitigate this
was tweak how the openQA tests work so that *most* of them edit their
repository configuration and/or pass anaconda an 'inst.repo' parameter
to use the compose directory directly as a repository, instead of using
the '

Re: Fedora Rawhide-20160927.n.1 compose check report

2016-09-27 Thread Bowen Wang
I saw the 20160927 images in the wesite, but I when I ran the dnf
upgrade --refresh, it says nothing to do, is that normal? Thanks.

Bowen
On Tue, Sep 27, 2016 at 05:14:31PM -0700, Adam Williamson wrote:
> On Wed, 2016-09-28 at 00:06 +, Fedora compose checker wrote:
> > Missing expected images:
> > 
> > Cloud_base raw-xz i386
> > Atomic raw-xz x86_64
> > 
> > Failed openQA tests: 4/102 (x86_64), 3/17 (i386), 1/2 (arm)
> > 
> > New failures (same test did not fail in Rawhide-20160926.n.0):
> > 
> > ID: 36663   Test: i386 KDE-live-iso install_default
> > URL: https://openqa.fedoraproject.org/tests/36663
> 
> This looks like a window manager issue of some kind; the anaconda
> window is squished into the top-left hand corner, which makes the
> needle match fail. However, the same test passed on staging, so it may
> be not a new bug but some kind of inconsistent bug (I hate those). I
> guess we'll see what it does tomorrow.
> 
> > ID: 36702   Test: x86_64 universal install_simple_encrypted@uefi
> > URL: https://openqa.fedoraproject.org/tests/36702
> 
> This is a goddamn typing failure. I have restarted the test and we will
> never, ever speak of this again.
> -- 
> 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
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Fedora Rawhide-20160927.n.1 compose check report

2016-09-27 Thread Adam Williamson
On Wed, 2016-09-28 at 00:06 +, Fedora compose checker wrote:
> Missing expected images:
> 
> Cloud_base raw-xz i386
> Atomic raw-xz x86_64
> 
> Failed openQA tests: 4/102 (x86_64), 3/17 (i386), 1/2 (arm)
> 
> New failures (same test did not fail in Rawhide-20160926.n.0):
> 
> ID: 36663 Test: i386 KDE-live-iso install_default
> URL: https://openqa.fedoraproject.org/tests/36663

This looks like a window manager issue of some kind; the anaconda
window is squished into the top-left hand corner, which makes the
needle match fail. However, the same test passed on staging, so it may
be not a new bug but some kind of inconsistent bug (I hate those). I
guess we'll see what it does tomorrow.

> ID: 36702 Test: x86_64 universal install_simple_encrypted@uefi
> URL: https://openqa.fedoraproject.org/tests/36702

This is a goddamn typing failure. I have restarted the test and we will
never, ever speak of this again.
-- 
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


Fedora Rawhide-20160927.n.1 compose check report

2016-09-27 Thread Fedora compose checker
Missing expected images:

Cloud_base raw-xz i386
Atomic raw-xz x86_64

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

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

ID: 36663   Test: i386 KDE-live-iso install_default
URL: https://openqa.fedoraproject.org/tests/36663
ID: 36702   Test: x86_64 universal install_simple_encrypted@uefi
URL: https://openqa.fedoraproject.org/tests/36702

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

ID: 36650   Test: i386 Workstation-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/36650
ID: 36651   Test: x86_64 Atomic-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/36651
ID: 36664   Test: arm Minimal-raw_xz-raw.xz 
install_arm_image_deployment_upload
URL: https://openqa.fedoraproject.org/tests/36664
ID: 36732   Test: x86_64 universal install_rescue_encrypted
URL: https://openqa.fedoraproject.org/tests/36732
ID: 36741   Test: x86_64 universal install_iscsi
URL: https://openqa.fedoraproject.org/tests/36741
ID: 36752   Test: i386 universal upgrade_2_desktop_32bit
URL: https://openqa.fedoraproject.org/tests/36752

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

Old soft failures (same test softfailed in Rawhide-20160926.n.0):

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

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

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

ID: 36642   Test: x86_64 Workstation-live-iso desktop_update_graphical
URL: https://openqa.fedoraproject.org/tests/36642
ID: 36714   Test: x86_64 universal upgrade_desktop_64bit
URL: https://openqa.fedoraproject.org/tests/36714
ID: 36738   Test: x86_64 universal install_delete_pata@uefi
URL: https://openqa.fedoraproject.org/tests/36738
ID: 36751   Test: i386 universal upgrade_desktop_32bit
URL: https://openqa.fedoraproject.org/tests/36751

Skipped openQA tests: 1 of 121
-- 
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


Cloud and Server Q

2016-09-27 Thread Chris Murphy
Hi,

I was asked to start this in today's Server meeting. The genesis for
me was, I have more questions than answers and I'm fairly convinced
I'm not the only person who's kinda shrugging not knowing what all the
questions even are. Answers are important too, but good questions to
properly explore scope and liabilities have to come first.

Cloud WG folks had decided a while ago to focus on Atomic Host, and
sounds like now they only want to do that, and form a new Atomic WG.
[1][2]

I see 8 base images for Cloud that aren't rpm-ostree based. Are they
in need of a new home? Who's using them? Are they all needed? Does it
make sense for Server WG to produce the non-Atomic Cloud deliverable
images?

At the last Cloud meeting, it was floated whether some Cloud people
should move over to Server, or vice versa. Should there be an
Atomic/Container WG? i.e. a fourth product deliverable?

Being contrary, I wondered about consolidation as a solution rather
than adding another WG and product. [3] Does anyone see Cloud WG, or
Server WG as spread too thinly? What estimate do you have for overlap
in work between Cloud and Server? Is there an economy of scale by
combining them? And is it both useful and practical to have subgroups
within a WG, to split out the sub variants of Server: hardware, cloud,
atomic host?

Server and Workstation WGs have expressed interest in moving to
rpm-ostree based deployments also. So I'm confused by what an Atomic
WG would produce that's unique. There are huge differences between
conventional and rpm-ostree deployments. Does it make sense for an
Atomic WG to have no outputs? And instead is liason with Server and
Workstation WGs, QA, Docs, releng, and others, to help in the
transition to this new way of delivering and maintaining Fedora?

It might be that the Cloud and Server PRD refreshes help sort some of
this stuff out too.

OK I have more questions but this is long enough. I'm certain others
can ask better questions, or versions of these ones, and in particular
the questions I haven't asked.


[1]
https://meetbot.fedoraproject.org/fedora-meeting-1/2016-09-21/fedora_cloud_wg.2016-09-21-17.00.log.html


[2]
https://fedorahosted.org/cloud/ticket/170

[3]
(Combining) Cloud Atomic Server WGs
https://lists.fedoraproject.org/archives/list/cl...@lists.fedoraproject.org/thread/Z2P2ARN6AMMAW52F6KSOFGELQFKXHCFY/

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


Re: Attempting to contact unresponsive maintainers - zeenix, theinric, ifarkas, mchalk

2016-09-27 Thread Kevin Fenzi
On Tue, 20 Sep 2016 10:39:28 -0600
Kevin Fenzi  wrote:

> Greetings, we've been told that the email addresses
> for these package maintainers are no longer valid.  I'm starting the
> unresponsive maintainer policy to find out if they are still
> interested in maintaining their packages (and if so, have them update
> their email addresses in FAS).  If they're not interested in
> maintaining or we can't locate them I'll have FESCo orphan the
> packages so that others can take them over.
> 
> If you have a way to contact these maintainers, please let them
> know that we'd appreciate knowing what to do with their packages.
> Thanks!
> 
> zeenix: 

(have updated their address in fas)

> theinric:

I reassigned some of these to co-maintainers, but these three are
available for a new point of contact: 

> rpms/ceelog
> rpms/libumberlog
> rpms/libmongo-client

> ifarkas:

No answer here, so I have orphaned: 

> rpms/rubygem-simple_form -- Flexible and powerful components to
> create forms ( master f25 f24 f23 )
> 
> mchalk: 

No answer here either, so I have orphaned:

> rpms/drpm -- A library for making, reading and applying deltarpm
> packages ( master f25 f24 f23 )


Thanks, 

kevin

kevin
 



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


Broken dependencies: perl-Data-Alias

2016-09-27 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


Broken dependencies: perl-Alien-ROOT

2016-09-27 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


Re: Missing dependency in glibc package

2016-09-27 Thread Björn Esser

Am 27.09.2016 um 22:08 schrieb Roman Tsisyk:

On Tue, Sep 27, 2016 at 10:53 PM, Björn Esser  wrote:

Forgot to mention:  Explicit dependencies are usually the better way,
instead of relying on implicit dependencies…


Of course.


File Dependencies
RPM gives you the ability to depend on files instead of packages. Whenever 
possible you should avoid file dependencies as they slow down dependency 
resolution and require the package manager to download file lists in addition 
to to regular dependency information. There are, however, times when other 
technical considerations outweigh these considerations. If the files you need 
are prone to moving between packages of different names, it can be useful to 
depend on those files directly.

I found that a dependency on "setup" package is not common practice:

# dnf repoquery --whatrequires setup|wc -l
19



Yes, because it usually gets installed by `basesystem` and `filesystem` 
packages; if those packages are missing, you broke your system anyways…

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


[Bug 1376997] perl-DateTime-Locale-1.08 is available

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1376997

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #3 from Fedora Update System  ---
perl-DateTime-Locale-1.08-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-eda8324e9c

-- 
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 1376998] perl-DateTime-TimeZone-2.03 is available

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1376998

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #2 from Fedora Update System  ---
perl-DateTime-TimeZone-2.04-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-691b144ec3

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


Re: Missing dependency in glibc package

2016-09-27 Thread Roman Tsisyk
On Tue, Sep 27, 2016 at 10:53 PM, Björn Esser  wrote:
>
> Forgot to mention:  Explicit dependencies are usually the better way,
> instead of relying on implicit dependencies…
>

Of course.

> File Dependencies
> RPM gives you the ability to depend on files instead of packages. Whenever 
> possible you should avoid file dependencies as they slow down dependency 
> resolution and require the package manager to download file lists in addition 
> to to regular dependency information. There are, however, times when other 
> technical considerations outweigh these considerations. If the files you need 
> are prone to moving between packages of different names, it can be useful to 
> depend on those files directly.

I found that a dependency on "setup" package is not common practice:

# dnf repoquery --whatrequires setup|wc -l
19

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


Re: Missing dependency in glibc package

2016-09-27 Thread Björn Esser

Am 27.09.2016 um 21:48 schrieb Björn Esser:

Am 27.09.2016 um 21:32 schrieb Roman Tsisyk:

Hi,

My package uses getprotobyname(3), getaddrinfo(3), getnameinfo(3)
functions which read /etc/protocols, /etc/hosts, /etc/services and
other network configuration files under the hood.
Despite the fact that all these functions is an integral part of
glibc, required configuration files are provided by a separate package
called `setup`, which is not in the dependency tree of glibc.

I realized that it is possible break getprotoname(2), getaddrinfo(2),
getnameinfo(2) and probably other glibc functions by removing `setup`
package.
Moreover, some authors of Docker containers already do that to
minimize image footprint.

Is it a dependency problem of glibc package? Should I file a ticket
for this case?
Is it better to add /etc/protocols, /etc/services or `setup` as
dependencies for my package?



I'd file a bug on glibc and add a dependency on those files (or the 
package shipping them) in your package at least as long until the 
issue is resolved by the glibc-maintainers.

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


Forgot to mention:  Explicit dependencies are usually the better way, 
instead of relying on implicit dependencies…

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


Re: Missing dependency in glibc package

2016-09-27 Thread Björn Esser

Am 27.09.2016 um 21:32 schrieb Roman Tsisyk:

Hi,

My package uses getprotobyname(3), getaddrinfo(3), getnameinfo(3)
functions which read /etc/protocols, /etc/hosts, /etc/services and
other network configuration files under the hood.
Despite the fact that all these functions is an integral part of
glibc, required configuration files are provided by a separate package
called `setup`, which is not in the dependency tree of glibc.

I realized that it is possible break getprotoname(2), getaddrinfo(2),
getnameinfo(2) and probably other glibc functions by removing `setup`
package.
Moreover, some authors of Docker containers already do that to
minimize image footprint.

Is it a dependency problem of glibc package? Should I file a ticket
for this case?
Is it better to add /etc/protocols, /etc/services or `setup` as
dependencies for my package?



I'd file a bug on glibc and add a dependency on those files (or the 
package shipping them) in your package at least as long until the issue 
is resolved by the glibc-maintainers.

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


Re: What to do with fedora-qa (fedorahosted is dying)

2016-09-27 Thread Adam Williamson
On Tue, 2016-09-27 at 09:34 -0400, Kamil Paral wrote:

> Move to Pagure. I can do it right away if nobody objects, I've already set up 
> a group:
> https://pagure.io/group/fedora-qa

Only note I'd have is it'd be best to just check in with sumantro and
a2batic first, since they're working on the plan for transitioning the
non-code stuff in trac. But I expect it'll be fine to use that group.

> > Is this the point where we should finally decide whether to use
> > Phabricator's built-in repository support or Pagure for this stuff and
> > the stuff we currently host on bitbucket?
> 
> Phabricator works well with remote repos, and I don't think there's
> any strong advantage in using local Phab repos. On Pagure we will get
> more visibility for the projects, easy forking, etc. Also certain
> simple repos (like the one above) can be completely fine with Pagure
> issue tracker and thus don't need to be configured in Phab (the UI is
> more difficult there for filing new bugs). I'd go with Pagure, for
> all our projects.

In general I agree, I'd be happy for us to move pretty much everything
into pagure. The only potential issues I see are:

1) What about issue tracking for the projects where we currently use
Phab? For e.g., if we want to keep tracking issues/tasks in Phab
exclusively, can we disable Pagure issue tracking (and make sure people
can easily find their way to Phab issue tracking from Pagure?)

2) Similarly for pull requests - do we want to have parallel workflows,
accepting both Pagure pull requests and Phab diffs? Or if we don't, can
we disable Pagure PRs while providing sufficient breadcrumbs to get
people into the Phab workflow?
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . net
http://www.happyassassin.net
___
qa-devel mailing list -- qa-devel@lists.fedoraproject.org
To unsubscribe send an email to qa-devel-le...@lists.fedoraproject.org


Missing dependency in glibc package

2016-09-27 Thread Roman Tsisyk
Hi,

My package uses getprotobyname(3), getaddrinfo(3), getnameinfo(3)
functions which read /etc/protocols, /etc/hosts, /etc/services and
other network configuration files under the hood.
Despite the fact that all these functions is an integral part of
glibc, required configuration files are provided by a separate package
called `setup`, which is not in the dependency tree of glibc.

I realized that it is possible break getprotoname(2), getaddrinfo(2),
getnameinfo(2) and probably other glibc functions by removing `setup`
package.
Moreover, some authors of Docker containers already do that to
minimize image footprint.

Is it a dependency problem of glibc package? Should I file a ticket
for this case?
Is it better to add /etc/protocols, /etc/services or `setup` as
dependencies for my package?

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


[Test-Announce] [Call For Action] 2016-09-28 Fedora 25 i18n Test Day

2016-09-27 Thread Adam Williamson
Hey Testers, 
Wednesday 2016-09-28 will be i18n Test Day[1]! As part of this planned
Change[2][3][4] for Fedora 25, there are 3 major changes which needs to
be tested. The main aim of  Test Day will focus on Internationalization
a.k.a. i18n around Desktops including their applications. So this is an
important Test Day! All the instructions are on the wiki page, so
please read through and come help us test! As always, the event will be
in #fedora-test-day on Freenode IRC, and there will be QA and i18n team
members available to help you with anything you need.

Test cases for the test days are:

ibus; https://fedoraproject.org/wiki/QA:Testcase_i18n_ibus_input
ibus-typing-booster; 
https://fedoraproject.org/wiki/QA:Testcase_ibus-typing-booster
ibus-bogo (Vietnamese); https://fedoraproject.org/wiki/QA:Bogo
ibus-hangul (Hangul); https://fedoraproject.org/wiki/QA:Hangul
ibus-kkc (Japanese); https://fedoraproject.org/wiki/QA:Libkkc
ibus-libpinyin (Simplified Chinese); 
https://fedoraproject.org/wiki/QA:Intelligent_Pinyin
ibus-libzhuyin (Traditional Chinese); 
https://fedoraproject.org/wiki/QA:New_Zhuyin
ibus-m17n (Indic); https://fedoraproject.org/wiki/QA:Inscript2_Keymaps
ibus-cangjie (Traditional Chinese); 
https://fedoraproject.org/wiki/QA:Cangjie
ibus-cangjie (Traditional Chinese); 
https://fedoraproject.org/wiki/QA:Simplified_Cangjie_(Quick)
Applications; 
https://fedoraproject.org/wiki/QA:Testcase_i18n_font_application
Browsers; https://fedoraproject.org/wiki/QA:Testcase_i18n_browsers
Harfbuzz related; 
https://fedoraproject.org/wiki/QA:Testcase_Fonts_HarfbuzzNG

Result Page: http://testdays.fedorainfracloud.org/events/10

[1] https://fedoraproject.org/wiki/Test_Day:2016-09-28_I18N_Test_Day
[2] https://fedoraproject.org/wiki/Changes/IBus_Emoji_Typing
[3] https://fedoraproject.org/wiki/Changes/Unicode_9.0
[4] 
https://fedoraproject.org/wiki/Changes/Ibus-typing-booster_multilingual_support
-- 
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: What to do with fedora-qa (fedorahosted is dying)

2016-09-27 Thread Kevin Fenzi
On Tue, 27 Sep 2016 11:33:32 -0700
Adam Williamson  wrote:

> On Tue, 2016-09-27 at 09:34 -0400, Kamil Paral wrote:
> 
> > A slightly off topic, Adam, would you happen to know why Fedora
> > doesn't self-host Pagure under say
> > https://apps.fedoraproject.org/pag ure , which would allow e.g. FAS
> > group integration (unlike now, when we need to mirror our FAS
> > groups inside pagure.io)?  
> 
> Nope, I have no idea. I suspect the #fedora-admin folks would know,
> though, and/or pingou of course.
> 
> If I had to guess I'd guess it was a case of wanting not to tie the
> platform too tightly to Fedora in the hopes of making it attractive to
> non-Fedora projects, but I really don't know, that's just a guess.

Actually Patrick and I were just talking about this. ;) 

I think you are correct and that pingou wanted things to be more stand
alone, but he's out this week so I am not sure. 

When he gets back we can revisit this and see what we want to do. 

kevin


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


Re: what happened with rawhide/i386

2016-09-27 Thread Kevin Fenzi
On Tue, 27 Sep 2016 14:45:05 +0200
Nicolas Chauvet  wrote:

> 2016-09-27 14:33 GMT+02:00 Sérgio Basto :
> > Hi,
> > I'm getting errors when build in i386 of rawhide and check that
> > master and mirror haven't i386 [1] had I missing something ? , this
> > is a bug or a feature ?
> >
> > [1]
> > https://mirrors.kernel.org/fedora/development/rawhide/Everything/  
> 
> i386 was moved to fedora-secondary, is there updated mock config
> files ?
> https://mirrors.kernel.org/fedora-secondary/development/rawhide/Everything/
> 
> @sergio
> I will update our config, thx for the reminder.

There shouldnt need to be a change in rawhide configs, mirrormanager
should have updated the metalink to the right place (and it seems to
have done so here at least). 

kevin


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


Re: Gsmartcontrol miss a dependency but maintainer, Eric Smith, don't answer

2016-09-27 Thread Vascom
I am received commit rights and I hope will update gsmartcontrol tomorrow
or next few days.

сб, 24 сент. 2016 г., 20:42 jack smith :

> That will be great !
> ___
> 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: Fedora 25-20160927.n.0 compose check report

2016-09-27 Thread Adam Williamson
On Tue, 2016-09-27 at 15:22 +, Fedora compose checker wrote:
> Missing expected images:
> 
> Xfce raw-xz armhfp
> Cloud_base raw-xz i386
> 
> Failed openQA tests: 4/102 (x86_64), 2/17 (i386), 1/2 (arm)
> 
> New failures (same test did not fail in 25-20160926.n.0):
> 
> ID: 36551 Test: x86_64 Server-dvd-iso server_realmd_join_kickstart
> URL: https://openqa.fedoraproject.org/tests/36551
> ID: 36573 Test: x86_64 universal install_delete_pata
> URL: https://openqa.fedoraproject.org/tests/36573

What's going on here is these tests are running into:
https://bugzilla.redhat.com/show_bug.cgi?id=1378162
which is a regression introduced in blivet 2.1.3 or 2.1.4. It's one of
those bugs which *can* happen to quite a few different tests, but
doesn't *always* happen, so every day different tests will run into it,
most likely. blivet 2.1.5 is intended to fix it; we'll need to test and
up-karma the update:
https://bodhi.fedoraproject.org/updates/FEDORA-2016-a8a52958b8

> New soft failures (same test did not softfail in 25-20160926.n.0):
> 
> ID: 36531 Test: x86_64 KDE-live-iso install_default_upload
> URL: https://openqa.fedoraproject.org/tests/36531

This is another kinda intermittent one. This test runs a simple
install, boots the installed system and logs in to check it's working,
then tries to shut down cleanly before uploading the disk image at that
point for other tests to start from. It waits 60 seconds after typing
'poweroff' at a console to shut the system down. It seems like
sometimes - always with the KDE test, interestingly - the system fails
to shut down within 60 seconds, which shows up as a soft failure. I
haven't looked into why in much detail yet, it's probably one of those
things where systemd is waiting for some process to shut down in an
orderly fashion, and it isn't. This doesn't seem to ever happen to the
corresponding Workstation test (possibly because GNOME is a lot more
aggressive about killing things, which is itself currently filed as a
bug, but sure makes this test work...)
-- 
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


Fedora Notifications System recent issues and Fixes

2016-09-27 Thread Kevin Fenzi
Greetings. 

The Fedora Notifications System, available at: 
https://apps.fedoraproject.org/notifications/
Is a way for interested parties to be notified when events occur in
Fedora. This system currently allows for IRC and/or Email notifications
of events, as well as "digesting" a specified number of messages or any
messages in a specified time. 

Recently the digest processing had a number of issues: 

* Some users had selected very large time frames or number of messages
  and the resulting digest messages were too large to be accepted by
  our mail server. 

* Over sized digests also resulted in no processing of additional
  digests in the queue. 

* Digest processing was interrelated with the non digest processing,
  making it difficult to debug or test changes.

* When the digest queue was very large, the IRC handler couldn't get
  enough processing time to join the network. 

* When the queue was very large testing fixes required processing all
  the queue and only then producing digests. 

This resulted in no digests being sent at all.

We have taken the following steps: 

* Digests that are 'too large' are split into chunks that are
  acceptable to our mail server. If they are still too large for some
  users email providers, they will be dropped after retries. 

* Digest processing is now separated from non digest processing
  allowing for debugging and fixes that don't affect the real time
  notifications, as well as not blocking IRC workers from joining the
  network.

Unfortunately, in landing our fixes a bug was introduced that split
digests too soon, resulting in incomplete digests after a few
characters. This has been corrected and any new digest notifications
should be complete. 

We are sorry for any inconvenience these issues may have caused. 

Please report any issues you find with the notification system to 
https://pagure.io/fedora-infrastructure (our config or deployment)
or
https://github.com/fedora-infra/fmn (upstream bugs/issues). 

Thanks, 

kevin


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


Fedora Notifications System recent issues and Fixes

2016-09-27 Thread Kevin Fenzi
Greetings. 

The Fedora Notifications System, available at: 
https://apps.fedoraproject.org/notifications/
Is a way for interested parties to be notified when events occur in
Fedora. This system currently allows for IRC and/or Email notifications
of events, as well as "digesting" a specified number of messages or any
messages in a specified time. 

Recently the digest processing had a number of issues: 

* Some users had selected very large time frames or number of messages
  and the resulting digest messages were too large to be accepted by
  our mail server. 

* Over sized digests also resulted in no processing of additional
  digests in the queue. 

* Digest processing was interrelated with the non digest processing,
  making it difficult to debug or test changes.

* When the digest queue was very large, the IRC handler couldn't get
  enough processing time to join the network. 

* When the queue was very large testing fixes required processing all
  the queue and only then producing digests. 

This resulted in no digests being sent at all.

We have taken the following steps: 

* Digests that are 'too large' are split into chunks that are
  acceptable to our mail server. If they are still too large for some
  users email providers, they will be dropped after retries. 

* Digest processing is now separated from non digest processing
  allowing for debugging and fixes that don't affect the real time
  notifications, as well as not blocking IRC workers from joining the
  network.

Unfortunately, in landing our fixes a bug was introduced that split
digests too soon, resulting in incomplete digests after a few
characters. This has been corrected and any new digest notifications
should be complete. 

We are sorry for any inconvenience these issues may have caused. 

Please report any issues you find with the notification system to 
https://pagure.io/fedora-infrastructure (our config or deployment)
or
https://github.com/fedora-infra/fmn (upstream bugs/issues). 

Thanks, 

kevin


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


[EPEL-devel] [Fedocal] Reminder meeting : EPSCO meeting

2016-09-27 Thread smooge
Dear all,

You are kindly invited to the meeting:
   EPSCO meeting on 2016-09-28 from 18:00:00 to 19:00:00 GMT
   At fedora-meet...@irc.freenode.net

The meeting will be about:
Extra Packages for Enterprise Linux Steering COmmittee (EPSCO) has a weekly 
meeting to go over concerns and problems in the EPEL distribution. 

You are kindly invited to come and meet with us


Source: https://apps.fedoraproject.org/calendar/meeting/4639/

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


jplesnik pushed to perl-DateTime-Locale (f25). "1.08 bump"

2016-09-27 Thread notifications
From 36ff753902a949cea835fed0b5051cc57dec4511 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Tue, 27 Sep 2016 15:23:59 +0200
Subject: 1.08 bump

---
 .gitignore|  1 +
 perl-DateTime-Locale.spec | 14 +++---
 sources   |  2 +-
 3 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index 4889187..520cdf9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@
 /DateTime-Locale-1.03.tar.gz
 /DateTime-Locale-1.04.tar.gz
 /DateTime-Locale-1.05.tar.gz
+/DateTime-Locale-1.08.tar.gz
diff --git a/perl-DateTime-Locale.spec b/perl-DateTime-Locale.spec
index bfb1cd0..35df322 100644
--- a/perl-DateTime-Locale.spec
+++ b/perl-DateTime-Locale.spec
@@ -1,6 +1,6 @@
 Name:   perl-DateTime-Locale
-Version:1.05
-Release:3%{?dist}
+Version:1.08
+Release:1%{?dist}
 Summary:Localization support for DateTime.pm
 # Although the CLDR license is listed as "MIT" on the Fedora Wiki, it's more
 # similar to recently added "Unicode" license.
@@ -26,7 +26,10 @@ BuildRequires:  perl(Carp)
 # meaning in minimal build root without useless Perl modules.
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(List::Util) >= 1.45
-BuildRequires:  perl(Params::Validate)
+BuildRequires:  perl(namespace::autoclean) >= 0.19
+BuildRequires:  perl(Params::ValidationCompiler) >= 0.13
+BuildRequires:  perl(Specio::Declare)
+BuildRequires:  perl(Specio::Library::String)
 # Tests only
 BuildRequires:  perl(base)
 BuildRequires:  perl(File::Spec)
@@ -37,7 +40,9 @@ BuildRequires:  perl(Test::Warnings)
 BuildRequires:  perl(utf8)
 # Optional tests:
 BuildRequires:  perl(CPAN::Meta) >= 2.120900
+BuildRequires:  perl(CPAN::Meta::Check) >= 0.011
 BuildRequires:  perl(CPAN::Meta::Prereqs)
+BuildRequires:  perl(CPAN::Meta::Requirements)
 BuildRequires:  perl(Storable)
 Requires:   perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo 
$version))
 Requires:   perl(Dist::CheckConflicts) >= 0.02
@@ -76,6 +81,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Sep 27 2016 Jitka Plesnikova  - 1.08-1
+- 1.08 bump
+
 * Mon Sep 19 2016 Petr Pisar  - 1.05-3
 - Correct license to ((GPL+ or Artistic) and Unicode)
 
diff --git a/sources b/sources
index 6a5120e..52d9639 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a1ab60c8873845ab979b40469f105005  DateTime-Locale-1.05.tar.gz
+ce2fba2fd9064e41247a42ad402dc704  DateTime-Locale-1.08.tar.gz
-- 
cgit v0.12



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


jplesnik pushed to perl-DateTime-Locale (f25). "Correct license to ((GPL+ or Artistic) and Unicode)"

2016-09-27 Thread notifications
From d576b36c40b7ea16fb6cd2a971184ec9662c6a20 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Mon, 19 Sep 2016 11:10:12 +0200
Subject: Correct license to ((GPL+ or Artistic) and Unicode)

---
 perl-DateTime-Locale.spec | 16 +++-
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/perl-DateTime-Locale.spec b/perl-DateTime-Locale.spec
index 32b26d8..bfb1cd0 100644
--- a/perl-DateTime-Locale.spec
+++ b/perl-DateTime-Locale.spec
@@ -1,11 +1,14 @@
 Name:   perl-DateTime-Locale
 Version:1.05
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Localization support for DateTime.pm
-# package itself is 'same terms as Perl'
-# modules under DateTime/Locale/ are generated from data provided by the CLDR 
project
-# tools/t/test-data contains CLDR data files under MIT license
-License:(GPL+ or Artistic) and MIT
+# Although the CLDR license is listed as "MIT" on the Fedora Wiki, it's more
+# similar to recently added "Unicode" license.
+# some modules under DateTime/Locale:   Unicode (generated from data
+#   provided by the CLDR project)
+# LICENSE.cldr: Unicode
+# other files:  GPL+ or Artistic
+License:(GPL+ or Artistic) and Unicode
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/DateTime-Locale/
 Source0:
http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-%{version}.tar.gz
@@ -73,6 +76,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Sep 19 2016 Petr Pisar  - 1.05-3
+- Correct license to ((GPL+ or Artistic) and Unicode)
+
 * Wed Jul 13 2016 Petr Pisar  - 1.05-2
 - Simplify optional build-time dependencies
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-DateTime-Locale.git/commit/?h=f25=d576b36c40b7ea16fb6cd2a971184ec9662c6a20
___
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-SUPER (perl-SUPER-1.20141117-6.fc25). "Package LICENSE file (..more)"

2016-09-27 Thread notifications
From 7727e44ae0fc0de10ac6dc3e2696a0d4af27f09e Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Tue, 27 Sep 2016 12:00:42 +0100
Subject: Package LICENSE file

Also:
- Drop legacy spec file elements not needed for EL-6 onwards
- Simplify find command using -delete
---
 perl-SUPER.spec | 23 +++
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/perl-SUPER.spec b/perl-SUPER.spec
index efb2a37..252786d 100644
--- a/perl-SUPER.spec
+++ b/perl-SUPER.spec
@@ -1,14 +1,15 @@
 Name:  perl-SUPER
 Version:   1.20141117
-Release:   5%{?dist}
+Release:   6%{?dist}
 Summary:   Sane superclass method dispatcher
 License:   GPL+ or Artistic
-Group: Development/Libraries
 URL:   http://search.cpan.org/dist/SUPER/
 Source0:   
http://search.cpan.org/CPAN/authors/id/C/CH/CHROMATIC/SUPER-%{version}.tar.gz
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch: noarch
 # === Module Build =
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: make
 BuildRequires: perl
 BuildRequires: perl-generators
 BuildRequires: perl(ExtUtils::MakeMaker)
@@ -41,23 +42,29 @@ perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-rm -rf %{buildroot}
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
+find %{buildroot} -type f -name .packlist -delete
 %{_fixperms} %{buildroot}
 
 %check
 make test
 
-%clean
-rm -rf %{buildroot}
-
 %files
+%if 0%{?_licensedir:1}
+%license LICENSE
+%else
+%doc LICENSE
+%endif
 %doc Changes README
 %{perl_vendorlib}/SUPER.pm
 %{_mandir}/man3/SUPER.3*
 
 %changelog
+* Tue Sep 27 2016 Paul Howarth  - 1.20141117-6
+- Package LICENSE file
+- Drop legacy spec file elements not needed for EL-6 onwards
+- Simplify find command using -delete
+
 * Sun May 15 2016 Jitka Plesnikova  - 1.20141117-5
 - Perl 5.24 rebuild
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-SUPER.git/commit/?h=perl-SUPER-1.20141117-6.fc25=7727e44ae0fc0de10ac6dc3e2696a0d4af27f09e
___
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-SUPER (perl-SUPER-1.20141117-6.fc26). "Package LICENSE file (..more)"

2016-09-27 Thread notifications
This commit already existed in another branch.

http://pkgs.fedoraproject.org/cgit/perl-SUPER.git/commit/?h=perl-SUPER-1.20141117-6.fc26=7727e44ae0fc0de10ac6dc3e2696a0d4af27f09e
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik pushed to perl-DateTime-Locale (master). "1.08 bump"

2016-09-27 Thread notifications
From 66265a9a5ee11e0eee62311ecbd29901f94f1ba8 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Tue, 27 Sep 2016 15:23:59 +0200
Subject: 1.08 bump

---
 .gitignore|  1 +
 perl-DateTime-Locale.spec | 14 +++---
 sources   |  2 +-
 3 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index 4889187..520cdf9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@
 /DateTime-Locale-1.03.tar.gz
 /DateTime-Locale-1.04.tar.gz
 /DateTime-Locale-1.05.tar.gz
+/DateTime-Locale-1.08.tar.gz
diff --git a/perl-DateTime-Locale.spec b/perl-DateTime-Locale.spec
index bfb1cd0..35df322 100644
--- a/perl-DateTime-Locale.spec
+++ b/perl-DateTime-Locale.spec
@@ -1,6 +1,6 @@
 Name:   perl-DateTime-Locale
-Version:1.05
-Release:3%{?dist}
+Version:1.08
+Release:1%{?dist}
 Summary:Localization support for DateTime.pm
 # Although the CLDR license is listed as "MIT" on the Fedora Wiki, it's more
 # similar to recently added "Unicode" license.
@@ -26,7 +26,10 @@ BuildRequires:  perl(Carp)
 # meaning in minimal build root without useless Perl modules.
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(List::Util) >= 1.45
-BuildRequires:  perl(Params::Validate)
+BuildRequires:  perl(namespace::autoclean) >= 0.19
+BuildRequires:  perl(Params::ValidationCompiler) >= 0.13
+BuildRequires:  perl(Specio::Declare)
+BuildRequires:  perl(Specio::Library::String)
 # Tests only
 BuildRequires:  perl(base)
 BuildRequires:  perl(File::Spec)
@@ -37,7 +40,9 @@ BuildRequires:  perl(Test::Warnings)
 BuildRequires:  perl(utf8)
 # Optional tests:
 BuildRequires:  perl(CPAN::Meta) >= 2.120900
+BuildRequires:  perl(CPAN::Meta::Check) >= 0.011
 BuildRequires:  perl(CPAN::Meta::Prereqs)
+BuildRequires:  perl(CPAN::Meta::Requirements)
 BuildRequires:  perl(Storable)
 Requires:   perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo 
$version))
 Requires:   perl(Dist::CheckConflicts) >= 0.02
@@ -76,6 +81,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Sep 27 2016 Jitka Plesnikova  - 1.08-1
+- 1.08 bump
+
 * Mon Sep 19 2016 Petr Pisar  - 1.05-3
 - Correct license to ((GPL+ or Artistic) and Unicode)
 
diff --git a/sources b/sources
index 6a5120e..52d9639 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a1ab60c8873845ab979b40469f105005  DateTime-Locale-1.05.tar.gz
+ce2fba2fd9064e41247a42ad402dc704  DateTime-Locale-1.08.tar.gz
-- 
cgit v0.12



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


jplesnik uploaded DateTime-Locale-1.08.tar.gz for perl-DateTime-Locale

2016-09-27 Thread notifications
ce2fba2fd9064e41247a42ad402dc704  DateTime-Locale-1.08.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-DateTime-Locale/DateTime-Locale-1.08.tar.gz/md5/ce2fba2fd9064e41247a42ad402dc704/DateTime-Locale-1.08.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik pushed to perl-DateTime-TimeZone (f25). "2.04 bump"

2016-09-27 Thread notifications
From 38ab293f4a9157de6e28f0157009e32858465859 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Tue, 27 Sep 2016 13:51:55 +0200
Subject: 2.04 bump

---
 ...etc-localtime-by-DateTime-TimeZone-Tzfile.patch | 78 --
 ...etc-localtime-by-DateTime-TimeZone-Tzfile.patch | 78 ++
 perl-DateTime-TimeZone.spec| 11 ++-
 sources|  2 +-
 4 files changed, 87 insertions(+), 82 deletions(-)
 delete mode 100644 
DateTime-TimeZone-2.01-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
 create mode 100644 
DateTime-TimeZone-2.04-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch

diff --git 
a/DateTime-TimeZone-2.01-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch 
b/DateTime-TimeZone-2.01-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
deleted file mode 100644
index 2cf0e21..000
--- 
a/DateTime-TimeZone-2.01-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-From fbf080cb5ca92f35a594967bdd3764c7dbb8c7f7 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
-Date: Mon, 1 Sep 2014 17:37:12 +0200
-Subject: [PATCH] Parse /etc/localtime by DateTime::TimeZone::Tzfile
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-If there is valid /etc/localtime, then the system has configured local
-time. If the file is not a symlink to /usr/share/zoneinfo or a copy
-from there, then it's still a valid configuration. The only issue is
-one cannot know the time zone name (Unfortunately, the time zone
-abbreviations are ambiguous.)
-
-This patch implements this scenario and caused returning
- a DateTime::TimeZone::Tzfile object instead of dying with
-"Cannot determine local time zone" message.
-
-Signed-off-by: Petr Písař 

- lib/DateTime/TimeZone/Local/Unix.pm | 27 +++
- 1 file changed, 27 insertions(+)
-
-diff --git a/lib/DateTime/TimeZone/Local/Unix.pm 
b/lib/DateTime/TimeZone/Local/Unix.pm
-index ae26fae..c5d44fe 100644
 a/lib/DateTime/TimeZone/Local/Unix.pm
-+++ b/lib/DateTime/TimeZone/Local/Unix.pm
-@@ -16,6 +16,7 @@ sub Methods {
- FromEtcTIMEZONE
- FromEtcSysconfigClock
- FromEtcDefaultInit
-+FromEtcLocaltimeContent
- );
- }
- 
-@@ -255,6 +256,25 @@ sub _ReadEtcDefaultInit {
- close $fh or die $!;
- }
- 
-+sub FromEtcLocaltimeContent {
-+my $class = shift;
-+
-+my $lt_file = $class->_EtcFile('localtime');
-+return unless -r $lt_file && -s $lt_file && ! -l $lt_file;
-+
-+my $tz;
-+{
-+local $@;
-+local $SIG{__DIE__};
-+$tz = eval {
-+require DateTime::TimeZone::Tzfile;
-+DateTime::TimeZone::Tzfile->new($lt_file);
-+};
-+}
-+
-+return $tz if $tz;
-+}
-+
- 1;
- 
- # ABSTRACT: Determine the local system's time zone on Unix
-@@ -329,6 +349,13 @@ a time zone name.
- If this file exists, it is opened and we look for a line starting like
- "TZ=...". If this is found, it should indicate a time zone name.
- 
-+=item * F content
-+
-+If this file is not a symlink, it's parsed by
-+a L to retrieve the time zone offset
-+definition. No time zone name will be defined. This is usefull if the
-+file does not present in the system time zone database.
-+
- =back
- 
- =head1 SUPPORT
--- 
-1.9.3
-
diff --git 
a/DateTime-TimeZone-2.04-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch 
b/DateTime-TimeZone-2.04-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
new file mode 100644
index 000..3188447
--- /dev/null
+++ 
b/DateTime-TimeZone-2.04-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
@@ -0,0 +1,78 @@
+From fbf080cb5ca92f35a594967bdd3764c7dbb8c7f7 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
+Date: Mon, 1 Sep 2014 17:37:12 +0200
+Subject: [PATCH] Parse /etc/localtime by DateTime::TimeZone::Tzfile
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+If there is valid /etc/localtime, then the system has configured local
+time. If the file is not a symlink to /usr/share/zoneinfo or a copy
+from there, then it's still a valid configuration. The only issue is
+one cannot know the time zone name (Unfortunately, the time zone
+abbreviations are ambiguous.)
+
+This patch implements this scenario and caused returning
+ a DateTime::TimeZone::Tzfile object instead of dying with
+"Cannot determine local time zone" message.
+
+Signed-off-by: Petr Písař 
+---
+ lib/DateTime/TimeZone/Local/Unix.pm | 27 +++
+ 1 file changed, 27 insertions(+)
+
+diff --git a/lib/DateTime/TimeZone/Local/Unix.pm 
b/lib/DateTime/TimeZone/Local/Unix.pm
+index ae26fae..c5d44fe 100644
+--- a/lib/DateTime/TimeZone/Local/Unix.pm
 b/lib/DateTime/TimeZone/Local/Unix.pm
+@@ -19,6 +19,7 @@ sub Methods {
+ 

jplesnik pushed to perl-DateTime-TimeZone (f25). "Update patch name"

2016-09-27 Thread notifications
From 6123abd742bc1fcbce3723b16ba7201e1dd73450 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Tue, 27 Sep 2016 13:57:26 +0200
Subject: Update patch name

---
 perl-DateTime-TimeZone.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/perl-DateTime-TimeZone.spec b/perl-DateTime-TimeZone.spec
index 8beb44f..e9217e1 100644
--- a/perl-DateTime-TimeZone.spec
+++ b/perl-DateTime-TimeZone.spec
@@ -8,7 +8,7 @@ URL:http://search.cpan.org/dist/DateTime-TimeZone/
 Source0:
http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-TimeZone-%{version}.tar.gz
 # Parse local time zone definition from /etc/localtime as before giving up,
 # bug #1135981, CPAN RT#55029
-Patch0: 
DateTime-TimeZone-2.01-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
+Patch0: 
DateTime-TimeZone-2.04-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
 BuildArch:  noarch
 # Build
 BuildRequires:  make
-- 
cgit v0.12



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


jplesnik uploaded DateTime-TimeZone-2.04.tar.gz for perl-DateTime-TimeZone

2016-09-27 Thread notifications
11d2642ae95e4bfeaec735678dea11b0  DateTime-TimeZone-2.04.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-DateTime-TimeZone/DateTime-TimeZone-2.04.tar.gz/md5/11d2642ae95e4bfeaec735678dea11b0/DateTime-TimeZone-2.04.tar.gz
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


jplesnik pushed to perl-DateTime-TimeZone (master). "2.04 bump"

2016-09-27 Thread notifications
From 4822d0a831c9bf610f8eb2d1a7d14b1aed3418ff Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Tue, 27 Sep 2016 13:51:55 +0200
Subject: 2.04 bump

---
 ...etc-localtime-by-DateTime-TimeZone-Tzfile.patch | 78 --
 ...etc-localtime-by-DateTime-TimeZone-Tzfile.patch | 78 ++
 perl-DateTime-TimeZone.spec| 11 ++-
 sources|  2 +-
 4 files changed, 87 insertions(+), 82 deletions(-)
 delete mode 100644 
DateTime-TimeZone-2.01-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
 create mode 100644 
DateTime-TimeZone-2.04-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch

diff --git 
a/DateTime-TimeZone-2.01-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch 
b/DateTime-TimeZone-2.01-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
deleted file mode 100644
index 2cf0e21..000
--- 
a/DateTime-TimeZone-2.01-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-From fbf080cb5ca92f35a594967bdd3764c7dbb8c7f7 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
-Date: Mon, 1 Sep 2014 17:37:12 +0200
-Subject: [PATCH] Parse /etc/localtime by DateTime::TimeZone::Tzfile
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-If there is valid /etc/localtime, then the system has configured local
-time. If the file is not a symlink to /usr/share/zoneinfo or a copy
-from there, then it's still a valid configuration. The only issue is
-one cannot know the time zone name (Unfortunately, the time zone
-abbreviations are ambiguous.)
-
-This patch implements this scenario and caused returning
- a DateTime::TimeZone::Tzfile object instead of dying with
-"Cannot determine local time zone" message.
-
-Signed-off-by: Petr Písař 

- lib/DateTime/TimeZone/Local/Unix.pm | 27 +++
- 1 file changed, 27 insertions(+)
-
-diff --git a/lib/DateTime/TimeZone/Local/Unix.pm 
b/lib/DateTime/TimeZone/Local/Unix.pm
-index ae26fae..c5d44fe 100644
 a/lib/DateTime/TimeZone/Local/Unix.pm
-+++ b/lib/DateTime/TimeZone/Local/Unix.pm
-@@ -16,6 +16,7 @@ sub Methods {
- FromEtcTIMEZONE
- FromEtcSysconfigClock
- FromEtcDefaultInit
-+FromEtcLocaltimeContent
- );
- }
- 
-@@ -255,6 +256,25 @@ sub _ReadEtcDefaultInit {
- close $fh or die $!;
- }
- 
-+sub FromEtcLocaltimeContent {
-+my $class = shift;
-+
-+my $lt_file = $class->_EtcFile('localtime');
-+return unless -r $lt_file && -s $lt_file && ! -l $lt_file;
-+
-+my $tz;
-+{
-+local $@;
-+local $SIG{__DIE__};
-+$tz = eval {
-+require DateTime::TimeZone::Tzfile;
-+DateTime::TimeZone::Tzfile->new($lt_file);
-+};
-+}
-+
-+return $tz if $tz;
-+}
-+
- 1;
- 
- # ABSTRACT: Determine the local system's time zone on Unix
-@@ -329,6 +349,13 @@ a time zone name.
- If this file exists, it is opened and we look for a line starting like
- "TZ=...". If this is found, it should indicate a time zone name.
- 
-+=item * F content
-+
-+If this file is not a symlink, it's parsed by
-+a L to retrieve the time zone offset
-+definition. No time zone name will be defined. This is usefull if the
-+file does not present in the system time zone database.
-+
- =back
- 
- =head1 SUPPORT
--- 
-1.9.3
-
diff --git 
a/DateTime-TimeZone-2.04-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch 
b/DateTime-TimeZone-2.04-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
new file mode 100644
index 000..3188447
--- /dev/null
+++ 
b/DateTime-TimeZone-2.04-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
@@ -0,0 +1,78 @@
+From fbf080cb5ca92f35a594967bdd3764c7dbb8c7f7 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
+Date: Mon, 1 Sep 2014 17:37:12 +0200
+Subject: [PATCH] Parse /etc/localtime by DateTime::TimeZone::Tzfile
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+If there is valid /etc/localtime, then the system has configured local
+time. If the file is not a symlink to /usr/share/zoneinfo or a copy
+from there, then it's still a valid configuration. The only issue is
+one cannot know the time zone name (Unfortunately, the time zone
+abbreviations are ambiguous.)
+
+This patch implements this scenario and caused returning
+ a DateTime::TimeZone::Tzfile object instead of dying with
+"Cannot determine local time zone" message.
+
+Signed-off-by: Petr Písař 
+---
+ lib/DateTime/TimeZone/Local/Unix.pm | 27 +++
+ 1 file changed, 27 insertions(+)
+
+diff --git a/lib/DateTime/TimeZone/Local/Unix.pm 
b/lib/DateTime/TimeZone/Local/Unix.pm
+index ae26fae..c5d44fe 100644
+--- a/lib/DateTime/TimeZone/Local/Unix.pm
 b/lib/DateTime/TimeZone/Local/Unix.pm
+@@ -19,6 +19,7 @@ sub Methods {
+ 

Re: F26 System Wide Change: OpenSSL 1.1.0

2016-09-27 Thread Tomas Mraz
On Út, 2016-09-27 at 03:36 +1000, Timothy Ward wrote:
> HHello
> 
> Has there been any testing with libmobiledevice library and
> especially
> the gvfs-afc backend to this be able to connect to an idevice using
> nautilus etc. The testing needs to be done on both new IOS 10.0.1
> and an older version say 6.3.5 on an older idevice iphone 4. to
> ensure
> compatibility across 
> 
> A link to a github respository for libimobledevice and other related
> libaries 
> 
> https://github.com/libimobiledevice
> 
> Have a look at the issues for problems with openssl etc

I am sorry but I certainly cannot promise to test all dependent
packages with the new OpenSSL - that's out question. The testing has to
be done by the respective package maintainers and the package users as
for all other cases of library package updates.

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


jplesnik pushed to perl-DateTime-TimeZone (master). "Update patch name"

2016-09-27 Thread notifications
From c3dd2e59260f2b44c9971bbb1ec5c0aaf97a5cb7 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Tue, 27 Sep 2016 13:57:26 +0200
Subject: Update patch name

---
 perl-DateTime-TimeZone.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/perl-DateTime-TimeZone.spec b/perl-DateTime-TimeZone.spec
index 8beb44f..e9217e1 100644
--- a/perl-DateTime-TimeZone.spec
+++ b/perl-DateTime-TimeZone.spec
@@ -8,7 +8,7 @@ URL:http://search.cpan.org/dist/DateTime-TimeZone/
 Source0:
http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-TimeZone-%{version}.tar.gz
 # Parse local time zone definition from /etc/localtime as before giving up,
 # bug #1135981, CPAN RT#55029
-Patch0: 
DateTime-TimeZone-2.01-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
+Patch0: 
DateTime-TimeZone-2.04-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch
 BuildArch:  noarch
 # Build
 BuildRequires:  make
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-DateTime-TimeZone.git/commit/?h=master=c3dd2e59260f2b44c9971bbb1ec5c0aaf97a5cb7
___
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-SUPER (f25). "Package LICENSE file (..more)"

2016-09-27 Thread notifications
From 7727e44ae0fc0de10ac6dc3e2696a0d4af27f09e Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Tue, 27 Sep 2016 12:00:42 +0100
Subject: Package LICENSE file

Also:
- Drop legacy spec file elements not needed for EL-6 onwards
- Simplify find command using -delete
---
 perl-SUPER.spec | 23 +++
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/perl-SUPER.spec b/perl-SUPER.spec
index efb2a37..252786d 100644
--- a/perl-SUPER.spec
+++ b/perl-SUPER.spec
@@ -1,14 +1,15 @@
 Name:  perl-SUPER
 Version:   1.20141117
-Release:   5%{?dist}
+Release:   6%{?dist}
 Summary:   Sane superclass method dispatcher
 License:   GPL+ or Artistic
-Group: Development/Libraries
 URL:   http://search.cpan.org/dist/SUPER/
 Source0:   
http://search.cpan.org/CPAN/authors/id/C/CH/CHROMATIC/SUPER-%{version}.tar.gz
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch: noarch
 # === Module Build =
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: make
 BuildRequires: perl
 BuildRequires: perl-generators
 BuildRequires: perl(ExtUtils::MakeMaker)
@@ -41,23 +42,29 @@ perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-rm -rf %{buildroot}
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
+find %{buildroot} -type f -name .packlist -delete
 %{_fixperms} %{buildroot}
 
 %check
 make test
 
-%clean
-rm -rf %{buildroot}
-
 %files
+%if 0%{?_licensedir:1}
+%license LICENSE
+%else
+%doc LICENSE
+%endif
 %doc Changes README
 %{perl_vendorlib}/SUPER.pm
 %{_mandir}/man3/SUPER.3*
 
 %changelog
+* Tue Sep 27 2016 Paul Howarth  - 1.20141117-6
+- Package LICENSE file
+- Drop legacy spec file elements not needed for EL-6 onwards
+- Simplify find command using -delete
+
 * Sun May 15 2016 Jitka Plesnikova  - 1.20141117-5
 - Perl 5.24 rebuild
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-SUPER.git/commit/?h=f25=7727e44ae0fc0de10ac6dc3e2696a0d4af27f09e
___
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-SUPER (master). "Package LICENSE file (..more)"

2016-09-27 Thread notifications
From 7727e44ae0fc0de10ac6dc3e2696a0d4af27f09e Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Tue, 27 Sep 2016 12:00:42 +0100
Subject: Package LICENSE file

Also:
- Drop legacy spec file elements not needed for EL-6 onwards
- Simplify find command using -delete
---
 perl-SUPER.spec | 23 +++
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/perl-SUPER.spec b/perl-SUPER.spec
index efb2a37..252786d 100644
--- a/perl-SUPER.spec
+++ b/perl-SUPER.spec
@@ -1,14 +1,15 @@
 Name:  perl-SUPER
 Version:   1.20141117
-Release:   5%{?dist}
+Release:   6%{?dist}
 Summary:   Sane superclass method dispatcher
 License:   GPL+ or Artistic
-Group: Development/Libraries
 URL:   http://search.cpan.org/dist/SUPER/
 Source0:   
http://search.cpan.org/CPAN/authors/id/C/CH/CHROMATIC/SUPER-%{version}.tar.gz
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch: noarch
 # === Module Build =
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: make
 BuildRequires: perl
 BuildRequires: perl-generators
 BuildRequires: perl(ExtUtils::MakeMaker)
@@ -41,23 +42,29 @@ perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-rm -rf %{buildroot}
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
+find %{buildroot} -type f -name .packlist -delete
 %{_fixperms} %{buildroot}
 
 %check
 make test
 
-%clean
-rm -rf %{buildroot}
-
 %files
+%if 0%{?_licensedir:1}
+%license LICENSE
+%else
+%doc LICENSE
+%endif
 %doc Changes README
 %{perl_vendorlib}/SUPER.pm
 %{_mandir}/man3/SUPER.3*
 
 %changelog
+* Tue Sep 27 2016 Paul Howarth  - 1.20141117-6
+- Package LICENSE file
+- Drop legacy spec file elements not needed for EL-6 onwards
+- Simplify find command using -delete
+
 * Sun May 15 2016 Jitka Plesnikova  - 1.20141117-5
 - Perl 5.24 rebuild
 
-- 
cgit v0.12



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


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

2016-09-27 Thread updates
The following Fedora EPEL 6 Security updates need testing:
 Age  URL
 446  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-7031   
python-virtualenv-12.0.7-1.el6
 440  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-7168   
rubygem-crack-0.3.2-2.el6
 372  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-8156   
nagios-4.0.8-1.el6
 330  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-e2b4b5b2fb   
mcollective-2.8.4-1.el6
 302  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-35e240edd9   
thttpd-2.25b-24.el6
 188  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-30a8346813   
vtun-3.0.1-10.el6
  93  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-db7e78fac7   
php-PHPMailer-5.2.16-2.el6
  86  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-d0e444c5f2   
pypy-5.0.1-4.el6
  48  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-a1450d7fe0   
knot-1.6.8-1.el6
  33  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-8594ed3a53   
chicken-4.11.0-3.el6
  14  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-204f2f07aa   
drupal7-panels-3.7-1.el6
  13  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-e079d167e3   
distribution-gpg-keys-1.7-1.el6 mock-1.2.21-1.el6
  10  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-320b654443   
php-adodb-5.15-10.el6
   5  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-edda50420f   
mongodb-2.4.14-4.el6
   5  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-25e30f6dc3   
jansson-2.9-1.el6
   4  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-e8602185c5   
links-2.13-1.el6
   1  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-1117d3c7f6   
golang-1.7.1-1.el6


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

armadillo-7.300.1-1.el6
drupal7-entity-1.8-1.el6
getmail-4.51.0-1.el6
munin-2.0.26-1.el6
phoronix-test-suite-6.6.0-1.el6
php-PsrLog-1.0.1-1.el6
php-horde-Horde-Core-2.27.0-1.el6
php-masterminds-html5-2.2.2-1.el6
php-simplesamlphp-saml2-2.3-1.el6
php-simplesamlphp-saml2_1-1.10-1.el6
python-whitenoise-2.0.6-5.el6
xsensors-0.75-1.el6

Details about builds:



 armadillo-7.300.1-1.el6 (FEDORA-EPEL-2016-f5aca833e6)
 Fast C++ matrix library with interfaces to LAPACK and ATLAS

Update Information:

update to 7.300.1 (finally)




 drupal7-entity-1.8-1.el6 (FEDORA-EPEL-2016-2e27af4952)
 Extends the entity API to provide a unified way to deal with entities

Update Information:

[7.x-1.8](https://www.drupal.org/project/entity/releases/7.x-1.8)

References:

  [ 1 ] Bug #1378632 - None
https://bugzilla.redhat.com/show_bug.cgi?id=1378632




 getmail-4.51.0-1.el6 (FEDORA-EPEL-2016-e5f424f80e)
 POP3, IMAP4 and SDPS mail retriever with Maildir delivery

Update Information:

update to 4.51.0




 munin-2.0.26-1.el6 (FEDORA-EPEL-2016-c88c687980)
 Network-wide graphing framework (grapher/gatherer)

Update Information:

Upstream released 2.0.26




 phoronix-test-suite-6.6.0-1.el6 (FEDORA-EPEL-2016-acf5d682f5)
 An Automated, Open-Source Testing Framework

Update Information:

Update to 6.6.0




 php-PsrLog-1.0.1-1.el6 (FEDORA-EPEL-2016-9634c504f8)
 Common interface for logging libraries

Update Information:

### 1.0.1  Fixed test suite to be more fitting to the PSR document and support
the latest PHPUnit 5.5 deprecations

References:

  [ 1 ] Bug #1377513 - None

Fedora 25-20160927.n.0 compose check report

2016-09-27 Thread Fedora compose checker
Missing expected images:

Xfce raw-xz armhfp
Cloud_base raw-xz i386

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

New failures (same test did not fail in 25-20160926.n.0):

ID: 36551   Test: x86_64 Server-dvd-iso server_realmd_join_kickstart
URL: https://openqa.fedoraproject.org/tests/36551
ID: 36573   Test: x86_64 universal install_delete_pata
URL: https://openqa.fedoraproject.org/tests/36573

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

ID: 36527   Test: i386 Workstation-live-iso install_default
URL: https://openqa.fedoraproject.org/tests/36527
ID: 36529   Test: x86_64 Atomic-boot-iso install_default
URL: https://openqa.fedoraproject.org/tests/36529
ID: 36542   Test: arm Minimal-raw_xz-raw.xz 
install_arm_image_deployment_upload
URL: https://openqa.fedoraproject.org/tests/36542
ID: 36589   Test: x86_64 universal install_iscsi
URL: https://openqa.fedoraproject.org/tests/36589
ID: 36630   Test: i386 universal upgrade_2_desktop_32bit
URL: https://openqa.fedoraproject.org/tests/36630

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-20160926.n.0):

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

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

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

ID: 36524   Test: x86_64 Workstation-live-iso desktop_update_graphical
URL: https://openqa.fedoraproject.org/tests/36524
ID: 36592   Test: x86_64 universal install_simple_free_space@uefi
URL: https://openqa.fedoraproject.org/tests/36592
ID: 36603   Test: x86_64 universal upgrade_desktop_64bit
URL: https://openqa.fedoraproject.org/tests/36603
ID: 36604   Test: x86_64 universal upgrade_server_64bit
URL: https://openqa.fedoraproject.org/tests/36604
ID: 36610   Test: x86_64 universal upgrade_2_kde_64bit
URL: https://openqa.fedoraproject.org/tests/36610

Skipped openQA tests: 1 of 121
-- 
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


Adobe acrobat Technical support 1-888-45S-9568 PHONE number

2016-09-27 Thread alicelodge247
get best adobe technical support phone number, 1-888-455-9568 adobe illustrator 
technical support
adobe audition technical support
adobe flash technical support
adobe dreamweaver technical support
adobe technical support telephone number
adobe technical support 24/7
adobe technical support online chat

>>>
{{
))


adobe lightroom help phone number
adobe chat with customer service
adobe photoshop elements support phone number
adobe photoshop elements 6 technical support
adobe photoshop tech support
adobe illustrator technical support
adobe reader technical support
adobe acrobat support



adobe technical support phone number
___
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-09-27 Thread Nikola Forró
Hello,

I'm linking another bugzilla [1] related to this, this one is against
shells(5) man page.

[1] https://bugzilla.redhat.com/show_bug.cgi?id=1218302
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[Bug 1374879] perl-Config-Grammar-1.12 is available

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1374879

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|perl-Config-Grammar-1.12-1. |perl-Config-Grammar-1.12-1.
   |fc25|fc25
   |perl-Config-Grammar-1.12-1. |perl-Config-Grammar-1.12-1.
   |fc24|fc24
   ||perl-Config-Grammar-1.12-1.
   ||fc23



--- Comment #13 from Fedora Update System  ---
perl-Config-Grammar-1.12-1.fc23 has been pushed to the Fedora 23 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


Re: [HEADS UP] DNF 2.0 coming to Rawhide

2016-09-27 Thread Jiří Konečný
On Tue, 2016-09-27 at 15:36 +0200, Igor Gnatenko wrote:
> Hello,
> 
> our team is on the way to release new version in upstream and push it
> to Rawhide as per accepted Change[0].
> 
> We don't expect that it will break mashing repos, but we expect that
> it will break Anaconda (as it uses private functions from DNF
> (non-API)), there is PR for it[1] so I hope Anaconda maintainers will
> merge it in upstream and backport patch for Fedora.

We are waiting with the finger on merge button in the Anaconda team.

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


[Test-Announce] Fedora 25 Branched 20160927.n.0 nightly compose nominated for testing

2016-09-27 Thread rawhide
Announcing the creation of a new nightly release validation test event
for Fedora 25 Branched 20160927.n.0. Please help run some tests for this
nightly compose if you have time. For more information on nightly
release validation testing, see:
https://fedoraproject.org/wiki/QA:Release_validation_test_plan

Notable package version changes:
lorax - 20160924.n.0: lorax-25.14-1.fc25.src, 20160927.n.0: 
lorax-25.15-1.fc25.src
python-blivet - 20160924.n.0: python-blivet-2.1.2-1.fc25.src, 20160927.n.0: 
python-blivet-2.1.4-2.fc25.src
anaconda - 20160924.n.0: anaconda-25.20.1-1.fc25.src, 20160927.n.0: 
anaconda-25.20.3-1.fc25.src

Test coverage information for the current release can be seen at:
https://www.happyassassin.net/testcase_stats/25

You can see all results, find testing instructions and image download
locations, and enter results on the Summary page:

https://fedoraproject.org/wiki/Test_Results:Fedora_25_Branched_20160927.n.0_Summary

The individual test result pages are:

https://fedoraproject.org/wiki/Test_Results:Fedora_25_Branched_20160927.n.0_Installation
https://fedoraproject.org/wiki/Test_Results:Fedora_25_Branched_20160927.n.0_Base
https://fedoraproject.org/wiki/Test_Results:Fedora_25_Branched_20160927.n.0_Server
https://fedoraproject.org/wiki/Test_Results:Fedora_25_Branched_20160927.n.0_Cloud
https://fedoraproject.org/wiki/Test_Results:Fedora_25_Branched_20160927.n.0_Desktop
https://fedoraproject.org/wiki/Test_Results:Fedora_25_Branched_20160927.n.0_Security_Lab

Thank you for testing!
-- 
Mail generated by relval: https://www.happyassassin.net/relval/
___
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] DNF 2.0 coming to Rawhide

2016-09-27 Thread Igor Gnatenko
Forgot to add, you can try to rebuild your components against our
nightly repos: 
https://copr.fedorainfracloud.org/coprs/rpmsoftwaremanagement/dnf-nightly/

On Tue, Sep 27, 2016 at 3:36 PM, Igor Gnatenko  wrote:
> Hello,
>
> our team is on the way to release new version in upstream and push it
> to Rawhide as per accepted Change[0].
>
> We don't expect that it will break mashing repos, but we expect that
> it will break Anaconda (as it uses private functions from DNF
> (non-API)), there is PR for it[1] so I hope Anaconda maintainers will
> merge it in upstream and backport patch for Fedora.
>
> It will definitely break yumex-dnf (patch in upstream) and probably
> some other tools, but we tried to check as much of them as possible
> and provide patch.
>
>
> If no one has big objections, we are going to build updated packages
> on this Thursday (29 Sep 2016) and after that you can apply your
> patches and build updated packages (or you can push patches into
> dist-git, let me know package names and I will rebuild it once we will
> do release).
>
> If you see some bug - don't hesitate to approach me via mail/irc or file a 
> bug.
>
>
> [0] https://fedoraproject.org/wiki/Changes/DNF-2.0
> [1] https://github.com/rhinstaller/anaconda/pull/763
> --
> -Igor Gnatenko



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


[HEADS UP] DNF 2.0 coming to Rawhide

2016-09-27 Thread Igor Gnatenko
Hello,

our team is on the way to release new version in upstream and push it
to Rawhide as per accepted Change[0].

We don't expect that it will break mashing repos, but we expect that
it will break Anaconda (as it uses private functions from DNF
(non-API)), there is PR for it[1] so I hope Anaconda maintainers will
merge it in upstream and backport patch for Fedora.

It will definitely break yumex-dnf (patch in upstream) and probably
some other tools, but we tried to check as much of them as possible
and provide patch.


If no one has big objections, we are going to build updated packages
on this Thursday (29 Sep 2016) and after that you can apply your
patches and build updated packages (or you can push patches into
dist-git, let me know package names and I will rebuild it once we will
do release).

If you see some bug - don't hesitate to approach me via mail/irc or file a bug.


[0] https://fedoraproject.org/wiki/Changes/DNF-2.0
[1] https://github.com/rhinstaller/anaconda/pull/763
-- 
-Igor Gnatenko
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[Bug 1376997] perl-DateTime-Locale-1.08 is available

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1376997

Jitka Plesnikova  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-DateTime-Locale-1.08-1
   ||.fc26



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


Re: What to do with fedora-qa (fedorahosted is dying)

2016-09-27 Thread Kamil Paral
> We still have a few miscellaneous things hosted in:
> 
> https://git.fedorahosted.org/cgit/fedora-qa.git
> 
> since fedorahosted is dying next February, what should we do with them?

Move to Pagure. I can do it right away if nobody objects, I've already set up a 
group:
https://pagure.io/group/fedora-qa

> Is this the point where we should finally decide whether to use
> Phabricator's built-in repository support or Pagure for this stuff and
> the stuff we currently host on bitbucket?

Phabricator works well with remote repos, and I don't think there's any strong 
advantage in using local Phab repos. On Pagure we will get more visibility for 
the projects, easy forking, etc. Also certain simple repos (like the one above) 
can be completely fine with Pagure issue tracker and thus don't need to be 
configured in Phab (the UI is more difficult there for filing new bugs). I'd go 
with Pagure, for all our projects.

A slightly off topic, Adam, would you happen to know why Fedora doesn't 
self-host Pagure under say https://apps.fedoraproject.org/pagure , which would 
allow e.g. FAS group integration (unlike now, when we need to mirror our FAS 
groups inside pagure.io)?
___
qa-devel mailing list -- qa-devel@lists.fedoraproject.org
To unsubscribe send an email to qa-devel-le...@lists.fedoraproject.org


Re: RFC: URLs for docs and released bits from CI

2016-09-27 Thread Kamil Paral
> > I submitted a revision today which makes some slight modification to
> > how the doit.py script is building docs, rpms and tarballs.
> > 
> > https://phab.qadevel.cloud.fedoraproject.org/D1012
> > 
> > My intention is to get this deployed to a non-staging setup soon but I
> > wanted to reach out to see if anyone had an issue for the URLs that
> > would end up being used.
> > 
> > https://baseurl/docs/
> > 
> > This path would contain docs for  built per branch for
> > non-master branches and per-release-version when triggered on the
> > master branch. The 'latest' symlink will always be updated to point at
> > the most recent build on the master branch
> > 
> > 
> > https://baseurl/releases/
> > 
> > Pretty much the same thing as for docs but with the rpms, srpms and
> > tarball(s) created during the CI build.
> > 
> > Does this seem sane to everyone? Any comments/questions/suggestions? I'd
> > like to get the auto-docs functionality deployed soon - hopefully right
> > after F25 beta freeze is over.
> > 
> 
> Just wondering if URLs would looked better like this:
> 
> https://{docs,releases}.baseurl/
> 
> (assuming there's no technical issues with that).

I like the original proposal. Just visit https://baseurl/docs/ and you see the 
project listing automagically through apache.
___
qa-devel mailing list -- qa-devel@lists.fedoraproject.org
To unsubscribe send an email to qa-devel-le...@lists.fedoraproject.org


Re: what happened with rawhide/i386

2016-09-27 Thread Nicolas Chauvet
2016-09-27 14:33 GMT+02:00 Sérgio Basto :
> Hi,
> I'm getting errors when build in i386 of rawhide and check that master
> and mirror haven't i386 [1] had I missing something ? , this is a bug
> or a feature ?
>
> [1] https://mirrors.kernel.org/fedora/development/rawhide/Everything/

i386 was moved to fedora-secondary, is there updated mock config files ?
https://mirrors.kernel.org/fedora-secondary/development/rawhide/Everything/

@sergio
I will update our config, thx for the reminder.



-- 
-

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


what happened with rawhide/i386

2016-09-27 Thread Sérgio Basto
Hi, 
I'm getting errors when build in i386 of rawhide and check that master
and mirror haven't i386 [1] had I missing something ? , this is a bug
or a feature ? 

[1] https://mirrors.kernel.org/fedora/development/rawhide/Everything/

Thanks
-- 
Sérgio M. B.

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


Re: Simple python package review swap - python-feedgenerator

2016-09-27 Thread Ankur Sinha
On Tue, 2016-09-27 at 12:47 +0200, Germano Massullo wrote:
> Taken!
> Could you review my https://bugzilla.redhat.com/show_bug.cgi?id=13752
> 22
> Thank you

Thanks! Taken! :)
-- 
Thanks,
Regards,
Ankur Sinha "FranciscoD"

http://fedoraproject.org/wiki/User:Ankursinha

signature.asc
Description: This is a digitally signed message part
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[Bug 1376998] perl-DateTime-TimeZone-2.03 is available

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1376998

Jitka Plesnikova  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-DateTime-TimeZone-2.04
   ||-1.fc26



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


Re: Orphaning avogadro

2016-09-27 Thread Antonio Trande
On 09/27/2016 05:27 AM, Kevin Kofler wrote:
> Hi,
> 
> I am hereby orphaning the avogadro package (and am going to hit the
> corresponding button in pkgdb after sending this message).
> 
> Avogadro is an advanced molecular editor for chemistry. It can be used both 
> as a
> standalone application and as a library. The latter is notably used by 
> Kalzium,
> the KDE periodic table (which is part of kdeedu), for its molecule viewer.
> 
> I originally picked up this package because it is a dependency of Kalzium, 
> which
> I was comaintaining at the time. Unfortunately, considering that:
> * I never really used the standalone Avogadro application,
> * I did not even use the Kalzium molecule viewer enough to be familiar with 
> it,
> * I do not even comaintain Kalzium anymore, and
> * I do not have time to keep up with new upstream releases of Avogadro,
> I have come to the conclusion that I am not the right person to maintain this
> package.
> 
> The Rawhide package of Avogadro is at version 1.1.1. Upstream has an 1.2.0
> release on SourceForge:
> https://sourceforge.net/projects/avogadro/files/avogadro/1.2.0/
> (The release is unfortunately NOT announced on the avogadro.cc site.) The new
> maintainer will likely want to import the new version. However, he/she should
> also ensure that Kalzium still keeps working with the updated library. (That 
> is
> the issue with this being both an application and a library.)
> 
> WARNING: The Avogadro project also has something called "Avogadro2". Kalzium 
> is
> NOT compatible with Avogadro2 at this time. I have also been told that the
> Avogadro2 standalone application is also still missing features from Avogadro
> (1). So it is NOT a good idea to replace Avogadro with Avogadro2. (If you want
> Avogadro2 in Fedora, please submit a separate review request for it.) You have
> been warned.
> 
> Thank you for your understanding,
> Kevin Kofler
> ___
> devel mailing list -- devel@lists.fedoraproject.org
> To unsubscribe send an email to devel-le...@lists.fedoraproject.org
> 

I'm going to maintain Avogadro.

-- 
---
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: dnf update args and wiki update

2016-09-27 Thread Michal Luscon

On 09/27/2016 12:54 AM, Catalin wrote:

Dear team.

About dnf -help under I used fc25 .
I don't see the update argument output of command: dnf --help.
The dnf  args is in progress ?

This will be fixed in DNF-2.0 release.

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


Re: dnf update args and wiki update

2016-09-27 Thread Catalin
I understand that just at first look at wiki page and that because I
used old yum Fedora.
Explanation of the wiki are not very accurate and paragraphs with
Fedora releases / dnf .
Is very true that dnf to have new ways to change yum style in time.
Because is an complex process versus repo I want to understand well
what is come with dnf and what is maintain.
Thank you. Regards.

2016-09-27 4:01 GMT+03:00 Adam Williamson :
> On Tue, 2016-09-27 at 01:54 +0300, Catalin wrote:
>> Dear team.
>>
>> About dnf -help under I used fc25 .
>> I don't see the update argument output of command: dnf --help.
>> The dnf  args is in progress ?
>
> Officially the command is 'upgrade', and 'update' is just a 'deprecated
> alias'. This is made explicit in 'man dnf':
>
>Upgrade Command
>dnf [options] upgrade
>   Updates each package to the latest version that is both 
> available and resolvable.
>
>Update Command
>dnf [options] update
>   Deprecated alias for the Upgrade Command.
>
> The 'dnf --help' output, being shorter, only lists the 'official' name
> - 'upgrade' - and doesn't mention 'update'.
>
>> Also https://fedoraproject.org/wiki/DNF_system_upgrade is not updated.
>> Most users do not know all the changes and do not have time to dig. We
>> should therefore updated with the changes.
>
> What changes? This is not new, and doesn't have anything to do with
> 'system upgrade', which is a different command. AFAIK there is nothing
> wrong with any of the instructions on that page, they apply fully to
> current Fedora.
>
> Unless you just mean that the page said 'dnf update' not 'dnf upgrade',
> in which case yeah, I guess theoretically it should have said
> 'upgrade'. But practically speaking I doubt they'll ever be able to
> remove the 'deprecated alias' from dnf, since it'll be in about a
> bajillion people's scripts (and we're all still used to it from 'yum
> update', and anyway 'update' is a much better word than 'upgrade' so
> they're just wrong anyway, jeez, c'mon folks). And again, this is not
> new, dnf has claimed that update is 'deprecated' since 2012:
>
> https://github.com/rpm-software-management/dnf/commit/91a92b01172ce03ff2cc8836622842c48534d905
> --
> 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
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Simple python package review swap - python-feedgenerator

2016-09-27 Thread Germano Massullo
Taken!
Could you review my https://bugzilla.redhat.com/show_bug.cgi?id=1375222
Thank you
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Simple python package review swap - python-feedgenerator

2016-09-27 Thread Ankur Sinha
Hello,

Would have a simple review ticket to swap? I'd be happy to take one in
exchange for this python package:

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

(python-feedgenerator)


-- 
Thanks,
Regards,
Ankur Sinha "FranciscoD"

http://fedoraproject.org/wiki/User:Ankursinha

signature.asc
Description: This is a digitally signed message part
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Review swap

2016-09-27 Thread Germano Massullo
I would like to take it, but I see that is already taken. Do you want
to change reviewer?
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Review swap

2016-09-27 Thread Björn Esser

Hello

I 'm in need for a review [1] for a pretty simple python-package.  Any 
offers?


Cheers

  Björn


[1]  https://bugzilla.redhat.com/show_bug.cgi?id=1379421
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: [Fedocal] Reminder meeting : Modularity WG

2016-09-27 Thread Nils Philippsen
Hey everyone,

On Tue, 2016-09-27 at 03:00 +, jku...@redhat.com wrote:
> The agenda for the meeting is available at [modularity-wg-agendas
> pad](http://piratepad.nl/modularity-wg-agendas).

unfortunately, piratepad.nl seems to be dead for good. I've created a
new pad for the agendas here:

http://piratepad.net/modularity-wg-agendas

Nils
-- 
Nils Philippsen  "Those who would give up Essential Liberty to
Red Hat           purchase a little Temporary Safety, deserve neither
n...@redhat.com   Liberty nor Safety."  --  Benjamin Franklin, 1759
PGP fingerprint:  C4A8 9474 5C4C ADE3 2B8F  656D 47D8 9B65 6951 3011
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[Bug 1379020] perl-HTTP-Tiny-0.068 is available

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379020

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #2 from Fedora Update System  ---
perl-HTTP-Tiny-0.068-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-e52c2b0ca5

-- 
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 1379025] perl-PDF-Reuse-0.37 is available

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379025



--- Comment #7 from Fedora Update System  ---
perl-PDF-Reuse-0.37-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-1571b89728

-- 
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 1379566] New: perl-Razor-Agent-2.85-23.fc26 FTBFS randomly: Can' t write-open blib/man5/razor-agent.conf.5: No such file or directory

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379566

Bug ID: 1379566
   Summary: perl-Razor-Agent-2.85-23.fc26 FTBFS randomly: Can't
write-open blib/man5/razor-agent.conf.5: No such file
or directory
   Product: Fedora
   Version: rawhide
 Component: perl-Razor-Agent
  Assignee: redhat-bugzi...@linuxnetz.de
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
redhat-bugzi...@linuxnetz.de



perl-Razor-Agent-2.85-23.fc26 sometimes fails to build in F26:

+ make -j3 'OPTIMIZE=-O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/us
r/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic'
"/usr/bin/perl" "-MExtUtils::Command::MM" -e pod2man "--" \
docs/razor-agent.conf.pod \
blib/man5/razor-agent.conf.5 \
docs/razor-agents.pod \
blib/man5/razor-agents.5 \
docs/razor-whitelist.pod \
blib/man5/razor-whitelist.5
make[1]: Entering directory
'/home/test/fedora/perl-Razor-Agent/razor-agents-2.85/Razor2-Preproc-deHTMLxs'
cp lib/Razor2/Preproc/deBase64.pm blib/lib/Razor2/Preproc/deBase64.pm
cp lib/Razor2/Preproc/deHTML_comment.pm
blib/lib/Razor2/Preproc/deHTML_comment.pm
cp lib/Razor2/Signature/Ephemeral.pm blib/lib/Razor2/Signature/Ephemeral.pm
cp lib/Razor2/Preproc/Manager.pm blib/lib/Razor2/Preproc/Manager.pm
cp lib/Razor2/Client/Core.pm blib/lib/Razor2/Client/Core.pm
cp lib/Razor2/Preproc/deHTML.pm blib/lib/Razor2/Preproc/deHTML.pm
cp lib/Razor2/Engine/VR8.pm blib/lib/Razor2/Engine/VR8.pm
cp lib/Razor2/Client/Agent.pm blib/lib/Razor2/Client/Agent.pm
cp lib/Razor2/Preproc/enBase64.pm blib/lib/Razor2/Preproc/enBase64.pm
cp lib/Razor2/Logger.pm blib/lib/Razor2/Logger.pm
cp lib/Razor2/Client/Config.pm blib/lib/Razor2/Client/Config.pm
cp lib/Razor2/Errorhandler.pm blib/lib/Razor2/Errorhandler.pm
cp lib/Razor2/Preproc/deNewline.pm blib/lib/Razor2/Preproc/deNewline.pm
cp lib/Razor2/Syslog.pm blib/lib/Razor2/Syslog.pm
AutoSplitting blib/lib/Razor2/Syslog.pm (blib/lib/auto/Razor2/Syslog)
cp lib/Razor2/Preproc/deQP.pm blib/lib/Razor2/Preproc/deQP.pm
cp lib/Razor2/Client/Version.pm blib/lib/Razor2/Client/Version.pm
cp lib/Razor2/String.pm blib/lib/Razor2/String.pm
cp lib/Razor2/Signature/Whiplash.pm blib/lib/Razor2/Signature/Whiplash.pm
cp lib/Razor2/Client/Engine.pm blib/lib/Razor2/Client/Engine.pm
Can't write-open blib/man5/razor-agent.conf.5: No such file or directory at
/usr/share/perl5/vendor_perl/ExtUtils/Command/MM.pm line 153.
Manifying 3 pod documents
make: *** [Makefile:541: manifypods-razor] Error 2

This is caused by under-specified dependencies in the Makefile that contains
manual man5 code from Makefile.PL. With the bug, it installs the man5 files
before creating the man5 directory.

See the upstream report  with
(untested) patch.

-- 
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 1379556] perl-Image-Info: XXE in SVG files

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379556

Doran Moppert  changed:

   What|Removed |Added

 Depends On||1379557
 Depends On||1379558



--- Comment #1 from Doran Moppert  ---

Created perl-Image-Info tracking bugs for this issue:

Affects: epel-5 [bug 1379557]
Affects: fedora-all [bug 1379558]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1379557
[Bug 1379557] perl-Image-Info: XXE in SVG files [epel-5]
https://bugzilla.redhat.com/show_bug.cgi?id=1379558
[Bug 1379558] perl-Image-Info: XXE in SVG files [fedora-all]
-- 
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 1379557] New: perl-Image-Info: XXE in SVG files [epel-5]

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379557

Bug ID: 1379557
   Summary: perl-Image-Info: XXE in SVG files [epel-5]
   Product: Fedora EPEL
   Version: el5
 Component: perl-Image-Info
  Keywords: Security, SecurityTracking
  Severity: medium
  Priority: medium
  Assignee: rob.my...@gtri.gatech.edu
  Reporter: dmopp...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
rob.my...@gtri.gatech.edu
Blocks: 1379556




This is an automatically created tracking bug!  It was created to ensure
that one or more security vulnerabilities are fixed in affected versions
of Fedora EPEL.

For comments that are specific to the vulnerability please use bugs filed
against the "Security Response" product referenced in the "Blocks" field.

For more information see:
http://fedoraproject.org/wiki/Security/TrackingBugs

When submitting as an update, use the fedpkg template provided in the next
comment(s).  This will include the bug IDs of this tracking bug as well as
the relevant top-level CVE bugs.

Please also mention the CVE IDs being fixed in the RPM changelog and the
fedpkg commit message.

[bug automatically created by: add-tracking-bugs]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1379556
[Bug 1379556] perl-Image-Info: XXE in SVG files
-- 
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 1379558] perl-Image-Info: XXE in SVG files [fedora-all]

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379558



--- Comment #1 from Doran Moppert  ---

Use the following template to for the 'fedpkg update' request to submit an
update for this issue as it contains the top-level parent bug(s) as well as
this tracking bug.  This will ensure that all associated bugs get updated
when new packages are pushed to stable.

=

# bugfix, security, enhancement, newpackage (required)
type=security

# testing, stable
request=testing

# Bug numbers: 1234,9876
bugs=1379556,1379558

# Description of your update
notes=Security fix for 

# Enable request automation based on the stable/unstable karma thresholds
autokarma=True
stable_karma=3
unstable_karma=-3

# Automatically close bugs when this marked as stable
close_bugs=True

# Suggest that users restart after update
suggest_reboot=False

==

Additionally, you may opt to use the bodhi web interface to submit updates:

https://bodhi.fedoraproject.org/updates/new

-- 
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 1379558] New: perl-Image-Info: XXE in SVG files [fedora-all]

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379558

Bug ID: 1379558
   Summary: perl-Image-Info: XXE in SVG files [fedora-all]
   Product: Fedora
   Version: 24
 Component: perl-Image-Info
  Keywords: Security, SecurityTracking
  Severity: medium
  Priority: medium
  Assignee: tcall...@redhat.com
  Reporter: dmopp...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
tcall...@redhat.com
Blocks: 1379556




This is an automatically created tracking bug!  It was created to ensure
that one or more security vulnerabilities are fixed in affected versions
of Fedora.

For comments that are specific to the vulnerability please use bugs filed
against the "Security Response" product referenced in the "Blocks" field.

For more information see:
http://fedoraproject.org/wiki/Security/TrackingBugs

When submitting as an update, use the fedpkg template provided in the next
comment(s).  This will include the bug IDs of this tracking bug as well as
the relevant top-level CVE bugs.

Please also mention the CVE IDs being fixed in the RPM changelog and the
fedpkg commit message.

NOTE: this issue affects multiple supported versions of Fedora. While only
one tracking bug has been filed, please correct all affected versions at
the same time.  If you need to fix the versions independent of each other,
you may clone this bug as appropriate.

[bug automatically created by: add-tracking-bugs]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1379556
[Bug 1379556] perl-Image-Info: XXE in SVG files
-- 
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 1379557] perl-Image-Info: XXE in SVG files [epel-5]

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379557



--- Comment #1 from Doran Moppert  ---

Use the following template to for the 'fedpkg update' request to submit an
update for this issue as it contains the top-level parent bug(s) as well as
this tracking bug.  This will ensure that all associated bugs get updated
when new packages are pushed to stable.

=

# bugfix, security, enhancement, newpackage (required)
type=security

# testing, stable
request=testing

# Bug numbers: 1234,9876
bugs=1379556,1379557

# Description of your update
notes=Security fix for 

# Enable request automation based on the stable/unstable karma thresholds
autokarma=True
stable_karma=3
unstable_karma=-3

# Automatically close bugs when this marked as stable
close_bugs=True

# Suggest that users restart after update
suggest_reboot=False

==

Additionally, you may opt to use the bodhi web interface to submit updates:

https://bodhi.fedoraproject.org/updates/new

-- 
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 1379556] perl-Image-Info: XXE in SVG files

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379556

Doran Moppert  changed:

   What|Removed |Added

 Blocks||1377998



-- 
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 1379556] New: perl-Image-Info: XXE in SVG files

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379556

Bug ID: 1379556
   Summary: perl-Image-Info: XXE in SVG files
   Product: Security Response
 Component: vulnerability
  Keywords: Security
  Severity: medium
  Priority: medium
  Assignee: security-response-t...@redhat.com
  Reporter: dmopp...@redhat.com
CC: jfe...@redhat.com, perl-devel@lists.fedoraproject.org,
perl-maint-l...@redhat.com, ppi...@redhat.com,
psab...@redhat.com, rob.my...@gtri.gatech.edu,
tcall...@redhat.com



The Image::Info package makes no precautions against external entity
expansion in SVG files.  A crafted file could cause information disclosure
or denial of service.

Upstream bug:

https://rt.cpan.org/Public/Bug/Display.html?id=118099

-- 
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 1379554] New: perl-XML-Twig: expand_external_ents option fails to work as documented [fedora-all]

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379554

Bug ID: 1379554
   Summary: perl-XML-Twig:  expand_external_ents option fails to
work as documented [fedora-all]
   Product: Fedora
   Version: 24
 Component: perl-XML-Twig
  Keywords: Security, SecurityTracking
  Severity: medium
  Priority: medium
  Assignee: jples...@redhat.com
  Reporter: dmopp...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: cw...@alumni.drew.edu, jples...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
Blocks: 1379553




This is an automatically created tracking bug!  It was created to ensure
that one or more security vulnerabilities are fixed in affected versions
of Fedora.

For comments that are specific to the vulnerability please use bugs filed
against the "Security Response" product referenced in the "Blocks" field.

For more information see:
http://fedoraproject.org/wiki/Security/TrackingBugs

When submitting as an update, use the fedpkg template provided in the next
comment(s).  This will include the bug IDs of this tracking bug as well as
the relevant top-level CVE bugs.

Please also mention the CVE IDs being fixed in the RPM changelog and the
fedpkg commit message.

NOTE: this issue affects multiple supported versions of Fedora. While only
one tracking bug has been filed, please correct all affected versions at
the same time.  If you need to fix the versions independent of each other,
you may clone this bug as appropriate.

[bug automatically created by: add-tracking-bugs]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1379553
[Bug 1379553] perl-XML-Twig:  expand_external_ents option fails to work as
documented
-- 
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 1379554] perl-XML-Twig: expand_external_ents option fails to work as documented [fedora-all]

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379554



--- Comment #1 from Doran Moppert  ---

Use the following template to for the 'fedpkg update' request to submit an
update for this issue as it contains the top-level parent bug(s) as well as
this tracking bug.  This will ensure that all associated bugs get updated
when new packages are pushed to stable.

=

# bugfix, security, enhancement, newpackage (required)
type=security

# testing, stable
request=testing

# Bug numbers: 1234,9876
bugs=1379553,1379554

# Description of your update
notes=Security fix for 

# Enable request automation based on the stable/unstable karma thresholds
autokarma=True
stable_karma=3
unstable_karma=-3

# Automatically close bugs when this marked as stable
close_bugs=True

# Suggest that users restart after update
suggest_reboot=False

==

Additionally, you may opt to use the bodhi web interface to submit updates:

https://bodhi.fedoraproject.org/updates/new

-- 
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 1379553] perl-XML-Twig: expand_external_ents option fails to work as documented

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379553

Doran Moppert  changed:

   What|Removed |Added

 Depends On||1379554



--- Comment #1 from Doran Moppert  ---

Created perl-XML-Twig tracking bugs for this issue:

Affects: fedora-all [bug 1379554]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1379554
[Bug 1379554] perl-XML-Twig:  expand_external_ents option fails to work as
documented [fedora-all]
-- 
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 1379553] New: perl-XML-Twig: expand_external_ents option fails to work as documented

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379553

Bug ID: 1379553
   Summary: perl-XML-Twig:  expand_external_ents option fails to
work as documented
   Product: Security Response
 Component: vulnerability
  Keywords: Security
  Severity: medium
  Priority: medium
  Assignee: security-response-t...@redhat.com
  Reporter: dmopp...@redhat.com
CC: cw...@alumni.drew.edu, jples...@redhat.com,
perl-devel@lists.fedoraproject.org,
perl-maint-l...@redhat.com, ppi...@redhat.com,
psab...@redhat.com



The option to `expand_external_ents`, documented as controlling external entity
expansion in XML::Twig does not work.  External entities are always expanded,
regardless of the option's setting.

Upstream bug:

https://rt.cpan.org/Public/Bug/Display.html?id=118097

-- 
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 1379553] perl-XML-Twig: expand_external_ents option fails to work as documented

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379553

Doran Moppert  changed:

   What|Removed |Added

 Blocks||1377998



-- 
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 1379025] perl-PDF-Reuse-0.37 is available

2016-09-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379025



--- Comment #6 from Fedora Update System  ---
perl-PDF-Reuse-0.37-1.fc24 has been pushed to the Fedora 24 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-01f007c8dc

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


[389-devel] Re: Please review: nunc-stans 62, 55, 61

2016-09-27 Thread William Brown
On Tue, 2016-09-27 at 15:30 +1000, William Brown wrote:
> Please review in this order: 
> 
> https://fedorahosted.org/nunc-stans/ticket/62
> 
> https://fedorahosted.org/nunc-stans/attachment/ticket/62/0001-Ticket-62-Remove-unnecessary-counters-from-jobs.patch
> 
> https://fedorahosted.org/nunc-stans/ticket/55
> 
> https://fedorahosted.org/nunc-stans/attachment/ticket/55/0002-Ticket-55-Remove-the-thread-pool-scaleup-down-skelet.patch
> 
> https://fedorahosted.org/nunc-stans/ticket/61
> 
> https://fedorahosted.org/nunc-stans/attachment/ticket/61/0001-Ticket-61-Convert-barriers-to-monitor-on-job.patch
> 
> DS currently won't build against these new changes, and I'm seeing some
> issues with it, so the DS patch will be included in a few days. 

Looks like the issues are that my laptop has failing ram  :( 

On another system tested this all, and it works. 

https://fedorahosted.org/389/ticket/48996

https://fedorahosted.org/389/attachment/ticket/48996/0001-Ticket-48996-update-DS-for-ns-0.2.0.patch


-- 
Sincerely,

William Brown
Software Engineer
Red Hat, Brisbane


signature.asc
Description: This is a digitally signed message part
___
389-devel mailing list -- 389-devel@lists.fedoraproject.org
To unsubscribe send an email to 389-devel-le...@lists.fedoraproject.org