Re: Access denied [Was: Large number of packages to be orphaned on Feb 26]

2016-02-19 Thread Ralf Corsepius
On 02/20/2016 08:44 AM, Pierre-Yves Chibon wrote: On Sat, Feb 20, 2016 at 06:26:42AM +0100, Ralf Corsepius wrote: On 02/20/2016 05:01 AM, Ralf Corsepius wrote: rpms/freefem++ -- PDE solving tool ( master f23 f22 el6 ) I am trying to push an update for freefem++, using my provenpackager

Re: Access denied [Was: Large number of packages to be orphaned on Feb 26]

2016-02-19 Thread Pierre-Yves Chibon
On Sat, Feb 20, 2016 at 06:26:42AM +0100, Ralf Corsepius wrote: > On 02/20/2016 05:01 AM, Ralf Corsepius wrote: > > >>rpms/freefem++ -- PDE solving tool ( master f23 f22 el6 ) > > I am trying to push an update for freefem++, using my provenpackager > privileges, but I am denied access: > >

Access denied [Was: Large number of packages to be orphaned on Feb 26]

2016-02-19 Thread Ralf Corsepius
On 02/20/2016 05:01 AM, Ralf Corsepius wrote: rpms/freefem++ -- PDE solving tool ( master f23 f22 el6 ) I am trying to push an update for freefem++, using my provenpackager privileges, but I am denied access: -- $ git push Enter passphrase for key 'XX': WARNING: 'freefem++' is an

Re: [ANNOUNCE] Fedora support for Vulkan

2016-02-19 Thread David Airlie
- Original Message - > From: "Kevin Kofler" > To: devel@lists.fedoraproject.org > Sent: Saturday, 20 February, 2016 12:14:00 PM > Subject: Re: [ANNOUNCE] Fedora support for Vulkan > > David Airlie wrote: > > No, nothing concrete has been mentioned in this area

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Ralf Corsepius
On 02/19/2016 07:09 PM, Josh Boyer wrote: Hello, In today's FESCo meeting, FESCo agreed to orphan all of Christoper Meng's packages on February 26, 2016 at 17:00 UTC if there was no further contact from Christopher. Normally we would not necessarily pre-announce an oprhaning action, however

Re: Help with g++ 6 abs() and templates

2016-02-19 Thread Jonathan Wakely
On 19/02/16 20:18 -0700, Orion Poplawski wrote: octave has template functions that call abs() on templated variables, something like: template T myfunc(T arg) { T x = abs(arg); } This leads to errors when instantiated for unsigned types because abs(unsigned type) is not defined as is

Re: Major issues with g++ 6 and gnulib

2016-02-19 Thread Jonathan Wakely
On 20/02/16 02:07 +, Jonathan Wakely wrote: The next problem is that gnulib defines: inline int signbit (float f) { return _gl_cxx_signbitf (f); } inline int signbit (double d) { return _gl_cxx_signbitd (d); } inline int signbit (long double l) { return _gl_cxx_signbitl (l); } GCC 6

Re: Self introduction: Ralf Senderek

2016-02-19 Thread Kevin Kofler
Ralf Senderek wrote: > During the development of the cryptobone software, I decided to reduce the > cryptographic core to a bare minimum and to use Peter Gutmann's cryptlib > as the only dependency for my own crypto code. I hope that including > cryptlib in my own package will enrich the Fedora

Help with g++ 6 abs() and templates

2016-02-19 Thread Orion Poplawski
octave has template functions that call abs() on templated variables, something like: template T myfunc(T arg) { T x = abs(arg); } This leads to errors when instantiated for unsigned types because abs(unsigned type) is not defined as is doesn't make sense to do. That's fine and all, but how

Re: Major issues with g++ 6 and gnulib

2016-02-19 Thread Orion Poplawski
On 02/19/2016 07:07 PM, Jonathan Wakely wrote: The next problem is that gnulib defines: inline int signbit (float f) { return _gl_cxx_signbitf (f); } inline int signbit (double d) { return _gl_cxx_signbitd (d); } inline int signbit (long double l) { return _gl_cxx_signbitl (l); } GCC 6

mhddfs orphaned Re: Summary/Minutes from today's FESCo Meeting (2016-02-19)

2016-02-19 Thread Sérgio Basto
And also :)  * #1548 imntreal package maintainer not responding mhddfs - Fuse-based file system for unifying several mount points into one ( master f23 f22 ) is orphan.  Maybe someone want to take this package. Thanks, -- Sérgio M. B. -- devel mailing list devel@lists.fedoraproject.org

Re: CVE-2015-7547 fix for Fedora 21

2016-02-19 Thread Kevin Kofler
Haïkel wrote: > /me wearing his FESCO member hat. > > Please remember that F21 has reached End of Life and is *not* > supported by fedoraproject.org > Though these packages may fix a very critical CVE, we cannot guarantee > that CVEs in other packages are also fixed. > > So no warranties from

Re: CVE-2015-7547 fix for Fedora 21

2016-02-19 Thread Kevin Kofler
Igor Gnatenko wrote: > Why do you want to build such packages for EOLed distro? Because I had an immediate need for it myself and decided to share it for the benefit of others stuck on F21 for whatever reason. Kevin Kofler -- devel mailing list devel@lists.fedoraproject.org

Re: Proposal: spins-kickstarts workflow changes

2016-02-19 Thread Dan Book
This sounds like a good step to me. I am used to the pull request workflow though. On Fri, Feb 19, 2016 at 5:55 PM, Zach Villers wrote: > +1 for moving forward and involving pagure. I'm not experienced enough to > pick out any issues, but will help however I can. > On

Re: [ANNOUNCE] Fedora support for Vulkan

2016-02-19 Thread Kevin Kofler
David Airlie wrote: > No, nothing concrete has been mentioned in this area at all. > > sw rendering won't benefit from vulkan very much, in fact it would be > worse than GL in some cases, as Vulkan really works on the building up > long command buffers and executing them, rather than direct

Re: Major issues with g++ 6 and gnulib

2016-02-19 Thread Jonathan Wakely
The next problem is that gnulib defines: inline int signbit (float f) { return _gl_cxx_signbitf (f); } inline int signbit (double d) { return _gl_cxx_signbitd (d); } inline int signbit (long double l) { return _gl_cxx_signbitl (l); } GCC 6 provides a standard-conforming which defines the same

Re: Major issues with g++ 6 and gnulib

2016-02-19 Thread Jonathan Wakely
On 19/02/16 16:33 -0700, Orion Poplawski wrote: I seem to be able to work around it at the moment by explicitly including before , That might actually be a reasonable fix. There is no guarantee whatsoever that includes , so it is not portable and not guaranteed to work when Octave assumes

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Tim Orling
I am also interested in maintaining or co-maintaining: rpms/bitbake -- Build tool executing tasks and managing metadata ( master f23 f22 ) --Tim -- devel mailing list devel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org

Re: Major issues with g++ 6 and gnulib

2016-02-19 Thread Jonathan Wakely
On 19/02/16 23:45 +, Jonathan Wakely wrote: If gnulib wants to play at being the standard library it needs to do so correctly, to be compatible with whatever standard library is it pretending to be, as documented at https://gcc.gnu.org/gcc-6/porting_to.html (which would probably mean the

Re: Major issues with g++ 6 and gnulib

2016-02-19 Thread Jonathan Wakely
On 19/02/16 16:33 -0700, Orion Poplawski wrote: It appears that as of 6.0.0, /usr/include/c++/6.0.0/cmath does: #define _GLIBCXX_INCLUDE_NEXT_C_HEADERS #include_next #undef _GLIBCXX_INCLUDE_NEXT_C_HEADERS which appears to have the effect of forcing it to include /usr/include/math.h It has

Major issues with g++ 6 and gnulib

2016-02-19 Thread Orion Poplawski
It appears that as of 6.0.0, /usr/include/c++/6.0.0/cmath does: #define _GLIBCXX_INCLUDE_NEXT_C_HEADERS #include_next #undef _GLIBCXX_INCLUDE_NEXT_C_HEADERS which appears to have the effect of forcing it to include /usr/include/math.h instead of the math.h from gnulib, which I expect is how

Re: Proposal: spins-kickstarts workflow changes

2016-02-19 Thread Zach Villers
+1 for moving forward and involving pagure. I'm not experienced enough to pick out any issues, but will help however I can. On Fri, Feb 19, 2016 at 2:37 PM Kevin Fenzi wrote: > Greetings. > > I am sending this to the devel and spins lists. Feel free to forward to > other places

Re: unannounced soname bump: libglpk

2016-02-19 Thread Jerry James
On Fri, Feb 19, 2016 at 10:12 AM, Andrew Lutomirski wrote: > I believe this is the list of broken packages in rawhide. I have already rebuilt cbmc and python(2,3)-cvxopt. I am preparing an update for ntl that will require rebuilds of 4ti2(-libs) and sagemath-core anyway, so those

Re: unannounced soname bump: libglpk

2016-02-19 Thread Orion Poplawski
On 02/19/2016 11:33 AM, Björn Esser wrote: > > Am 19.02.2016 18:12 schrieb Andrew Lutomirski : >> >> I believe this is the list of broken packages in rawhide. >> >> $ sudo dnf --disablerepo=\* --enablerepo=rawhide repoquery --whatrequires >> 'libglpk.so.36()(64bit)' >> Fedora

Re: CVE-2015-7547 fix for Fedora 21

2016-02-19 Thread Sérgio Basto
On Sex, 2016-02-19 at 15:11 -0500, Felix Miata wrote: > Tomasz Torcz composed on 2016-02-19 20:40 (UTC+0100): > > > On Fri, Feb 19, 2016 at 02:05:18PM -0500, DJ Delorie wrote: > > > > Igor Gnatenko composed: > > > > > Why do you want to build such packages for EOLed distro? > > > > Because

Re: CVE-2015-7547 fix for Fedora 21

2016-02-19 Thread Jonathan Wakely
On 19/02/16 20:18 +0100, Fabio Alessandro Locati wrote: From my point of view, the whole concept of "EOL" is: if you use this version you acknowledge that NO security patch will arrive and therefore it's possible and very likely that you are running an unsafe system. I think the important part

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Emmanuel Seyman
* Josh Boyer [19/02/2016 13:09] : > > As a heads up to the greater community, the packages are listed below. [ snip lots of perl modules ] I'll ping the Perl SIG and ask how many people are willing to share the load. Emmanuel -- devel mailing list devel@lists.fedoraproject.org

Re: [Guidelines change] Changes to the packaging guidelines

2016-02-19 Thread Richard W.M. Jones
On Fri, Feb 19, 2016 at 09:29:16AM -0700, Kevin Fenzi wrote: > On Fri, 19 Feb 2016 10:07:29 + > "Richard W.M. Jones" wrote: > > > Here's a video demonstrating this: > > > > http://oirase.annexia.org/tmp/packaging-caching/ > > I think this is fallout from some problems

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Jonathan Underwood
On 19 February 2016 at 18:09, Josh Boyer wrote: > rpms/PyOpenGL -- Python 2.x bindings for OpenGL ( master f23 f22 ) I am happy to take this (already a co-maintainer). -- devel mailing list devel@lists.fedoraproject.org

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Tim Orling
I have an interest in either taking over or co-maintaining: rpms/bwm-ng -- Bandwidth Monitor NG ( master f23 f22 epel7 el6 ) rpms/libstatgrab -- A library that provides cross platform access to statistics of the system ( master f23 f22 epel7 el6 ) I'll have to digest the rest of the list to see

Re: CVE-2015-7547 fix for Fedora 21

2016-02-19 Thread Haïkel
2016-02-19 3:35 GMT+01:00 Kevin Kofler : > Hi, > > I have built an updated glibc package for Fedora 21, with (alleged) fixes > for the following security issues: > * CVE-2015-7547 (CRITICAL) > * CVE-2015-1781 > * CVE-2015-8777 > * glibc PR17269 > * glibc PR18032 >

Fedora Rawhide 20160219 compose check report

2016-02-19 Thread Fedora compose checker
Missing expected images: Cloud disk raw i386 Cloud_atomic disk raw x86_64 Generic boot x86_64 Workstation live x86_64 Workstation live i386 Generic boot i386 Kde disk raw armhfp Kde live i386 Cloud disk raw x86_64 Kde live x86_64 No images in this compose but not Rawhide 20160218 Images in

Re: CVE-2015-7547 fix for Fedora 21

2016-02-19 Thread Przemek Klosowski
On 02/19/2016 02:40 PM, Tomasz Torcz wrote: On Fri, Feb 19, 2016 at 02:05:18PM -0500, DJ Delorie wrote: Igor Gnatenko writes: Why do you want to build such packages for EOLed distro? Because he's a nicy guy and it's an important patch? It's counter productive.

Re: CVE-2015-7547 fix for Fedora 21

2016-02-19 Thread Felix Miata
Tomasz Torcz composed on 2016-02-19 20:40 (UTC+0100): > On Fri, Feb 19, 2016 at 02:05:18PM -0500, DJ Delorie wrote: >> Igor Gnatenko composed: >> > Why do you want to build such packages for EOLed distro? >> Because he's a nicy guy and it's an important patch? > It's counter productive.

orphaning virtuoso

2016-02-19 Thread Rex Dieter
I've been nmaintaining virtuoso-opensource primarily due to it being needed by (kde) nepomuk, but as we've recently deprecated/retired nepomuk recently in rawhide, I will be orphaning virtuoso (in the hopes that it finds a better home). -- Rex -- devel mailing list

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Pierre-Yves Chibon
On Fri, Feb 19, 2016 at 08:43:09PM +0100, Pierre-Yves Chibon wrote: > On Fri, Feb 19, 2016 at 06:34:03PM +, Igor Gnatenko wrote: > >rpms/python-pygit2 -- Python 2.x bindings for libgit2 ( master f23 f22 > >epel7 ) > > > >whats wrong with this package? I think it is well-maintained

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Pierre-Yves Chibon
On Fri, Feb 19, 2016 at 06:34:03PM +, Igor Gnatenko wrote: >rpms/python-pygit2 -- Python 2.x bindings for libgit2 ( master f23 f22 >epel7 ) > >whats wrong with this package? I think it is well-maintained by me. It needs an upgrade to 0.23.3 on F23 as otherwise it just failed upon

Re: CVE-2015-7547 fix for Fedora 21

2016-02-19 Thread Tomasz Torcz
On Fri, Feb 19, 2016 at 02:05:18PM -0500, DJ Delorie wrote: > > Igor Gnatenko writes: > > Why do you want to build such packages for EOLed distro? > > Because he's a nicy guy and it's an important patch? It's counter productive. It's even dangerous, by

Proposal: spins-kickstarts workflow changes

2016-02-19 Thread Kevin Fenzi
Greetings. I am sending this to the devel and spins lists. Feel free to forward to other places people who might be affected by it should see it. Some history: We setup the spin-kickstart project on fedorahosted a long time ago. At the start it was just the various spins and it's trac

Re: CVE-2015-7547 fix for Fedora 21

2016-02-19 Thread Fabio Alessandro Locati
On Fri, Feb 19, 2016 at 02:05:18PM -0500, DJ Delorie wrote: > Igor Gnatenko writes: > > Why do you want to build such packages for EOLed distro? > > Because he's a nicy guy and it's an important patch? From my point of view, the whole concept of "EOL" is: if you use

Self introduction: Ralf Senderek

2016-02-19 Thread Ralf Senderek
Hello, my name is Ralf Senderek, I'm a secure solutions designer. Linux is my operating system since 1994. Over time I have developed and released security related analysis and open source software on my personal web site. Recently, since Jan 2015, I am working on a secure message system

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Fabio Alessandro Locati
If Christopher will not respond, I can take care of: - rpms/2ping -- Bi-directional ping utility - rpms/NetPIPE -- Network Protocol Independent Performance Evaluator - rpms/ascii-design -- A tool to create ascii arts - rpms/bonesi -- The DDoS Botnet Simulator - rpms/cdk -- Curses Development Kit

Re: CVE-2015-7547 fix for Fedora 21

2016-02-19 Thread DJ Delorie
Igor Gnatenko writes: > Why do you want to build such packages for EOLed distro? Because he's a nicy guy and it's an important patch? -- devel mailing list devel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Josh Boyer
On Fri, Feb 19, 2016 at 2:01 PM, Remi Collet wrote: > Le 19/02/2016 19:09, Josh Boyer a écrit : >> Hello, >> >> In today's FESCo meeting, FESCo agreed to orphan all of Christoper >> Meng's packages on February 26, 2016 at 17:00 UTC if there was no >> further contact from

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Remi Collet
Le 19/02/2016 19:09, Josh Boyer a écrit : > Hello, > > In today's FESCo meeting, FESCo agreed to orphan all of Christoper > Meng's packages on February 26, 2016 at 17:00 UTC if there was no > further contact from Christopher. Please, also be aware of 78 pending reviews

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Remi Collet
I no answer from C.M., I will take: > rpms/libsodium -- The Sodium crypto library ( master f23 f22 epel7 el6 ) Remi. -- devel mailing list devel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org

[Bug 1306668] slic3r-1.2.9-4.fc24 FTBFS: redefinition of 'struct boost::polygon::coordinate_traits'

2016-02-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1306668 Yaakov Selkowitz changed: What|Removed |Added CC|

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Christian Dersch
You are not the owner. This is not a question of maintainance itself in this case (and in case of my i3 stuff too) On 02/19/2016 07:34 PM, Igor Gnatenko wrote: > rpms/python-pygit2 -- Python 2.x bindings for libgit2 ( master f23 f22 > epel7 ) > > whats wrong with this package? I think it is

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Björn Esser
I'll take json-c and qd, since both are Shogun dependencies. -- devel mailing list devel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Christian Dersch
Btw you can take it after orphaning ;) On 02/19/2016 07:36 PM, Christian Dersch wrote: > You are not the owner. This is not a question of maintainance itself > in this case (and in case of my i3 stuff too) > > On 02/19/2016 07:34 PM, Igor Gnatenko wrote: >> rpms/python-pygit2 -- Python 2.x

Re: unannounced soname bump: libglpk

2016-02-19 Thread Christian Dersch
Note that Scientific and Astronomy Spins are also broken due to this issue: http://koji.fedoraproject.org/koji/tasks?method=livemedia=ausil=all=tree=-id On 02/19/2016 07:33 PM, Björn Esser wrote: > Am 19.02.2016 18:12 schrieb Andrew Lutomirski : >> I believe this is the list of

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Igor Gnatenko
rpms/python-pygit2 -- Python 2.x bindings for libgit2 ( master f23 f22 epel7 ) whats wrong with this package? I think it is well-maintained by me. On Fri, Feb 19, 2016 at 7:09 PM Josh Boyer wrote: > Hello, > > In today's FESCo meeting, FESCo agreed to orphan all of

Re: unannounced soname bump: libglpk

2016-02-19 Thread Björn Esser
Am 19.02.2016 18:12 schrieb Andrew Lutomirski : > > I believe this is the list of broken packages in rawhide. > > $ sudo dnf --disablerepo=\* --enablerepo=rawhide repoquery --whatrequires > 'libglpk.so.36()(64bit)' > Fedora rawhide - x86_64 277 kB/s |  45 MB 

Re: Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Christian Dersch
On 02/19/2016 07:09 PM, Josh Boyer wrote: > Hello, > > In today's FESCo meeting, FESCo agreed to orphan all of Christoper > Meng's packages on February 26, 2016 at 17:00 UTC if there was no > further contact from Christopher. Normally we would not necessarily > pre-announce an oprhaning action,

Large number of packages to be orphaned on Feb 26

2016-02-19 Thread Josh Boyer
Hello, In today's FESCo meeting, FESCo agreed to orphan all of Christoper Meng's packages on February 26, 2016 at 17:00 UTC if there was no further contact from Christopher. Normally we would not necessarily pre-announce an oprhaning action, however the number of packages in question is quite

Summary/Minutes from today's FESCo Meeting (2016-02-19)

2016-02-19 Thread Josh Boyer
=== #fedora-meeting: FESCO (2016-02-19) === Meeting started by jwboyer at 17:00:17 UTC. The full logs are available at http://meetbot.fedoraproject.org/fedora-meeting/2016-02-19/fesco.2016-02-19-17.00.log.html . Meeting summary

unannounced soname bump: libglpk

2016-02-19 Thread Andrew Lutomirski
I believe this is the list of broken packages in rawhide. $ sudo dnf --disablerepo=\* --enablerepo=rawhide repoquery --whatrequires 'libglpk.so.36()(64bit)' Fedora rawhide - x86_64 277 kB/s | 45 MB 02:46 Last metadata expiration check performed 0:01:51 ago on Fri Feb 19

eseyman set the monitor flag of perl-XML-Entities to nobuild

2016-02-19 Thread notifications
eseyman set the monitor flag of perl-XML-Entities to nobuild -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman set the monitor flag of perl-Proc-Daemon to nobuild

2016-02-19 Thread notifications
eseyman set the monitor flag of perl-Proc-Daemon to nobuild -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman set the monitor flag of perl-Net-SSLGlue to nobuild

2016-02-19 Thread notifications
eseyman set the monitor flag of perl-Net-SSLGlue to nobuild -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman set the monitor flag of perl-Net-NBName to nobuild

2016-02-19 Thread notifications
eseyman set the monitor flag of perl-Net-NBName to nobuild -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman set the monitor flag of perl-Apache2-SOAP to nobuild

2016-02-19 Thread notifications
eseyman set the monitor flag of perl-Apache2-SOAP to nobuild -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman set the monitor flag of perl-Apache-DBI to nobuild

2016-02-19 Thread notifications
eseyman set the monitor flag of perl-Apache-DBI to nobuild -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman set the monitor flag of perl-AnyEvent-HTTP to nobuild

2016-02-19 Thread notifications
eseyman set the monitor flag of perl-AnyEvent-HTTP to nobuild -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[EPEL-devel] Re: Report on various meetings at FOSDEM.

2016-02-19 Thread Stephen John Smoogen
On 19 February 2016 at 08:35, Kevin Fenzi wrote: > On Thu, 18 Feb 2016 14:42:12 -0700 > Stephen John Smoogen wrote: > >> >> One of the requests was to have snapshots of the guidelines that we >> worked each channel against so that it was clearer what 5 wanted

Re: 4.4 rebase coming to F23 soon

2016-02-19 Thread Josh Boyer
On Fri, Feb 19, 2016 at 11:45 AM, Sérgio Basto wrote: > Kernel 4.4, which was announce as long term support (LTS) > > https://www.linux.com/news/software/applications/878214-44-linux-kernel > -long-term-support-release-is-now-available That's correct from an upstream

Re: 4.4 rebase coming to F23 soon

2016-02-19 Thread Sérgio Basto
Kernel 4.4, which was announce as long term support (LTS)   https://www.linux.com/news/software/applications/878214-44-linux-kernel -long-term-support-release-is-now-available On Sex, 2016-02-19 at 01:41 -0500, Eric Griffith wrote: > The kernel, presumably. I was confused as well, but if you

Re: Orphan of ocsinventory and some perl dependencies

2016-02-19 Thread Emmanuel Seyman
* Remi Collet [19/02/2016 16:20] : > > perl-AnyEvent-HTTP > perl-Apache-DBI > perl-Apache2-SOAP > perl-Net-CUPS (EPEL) > perl-Net-NBName > perl-Net-SSLGlue > perl-Proc-Daemon > perl-XML-Entities I've taken all of these on their Fedora branches. Co-maintainers (and EPEL maintainers) are welcome.

eseyman changed eseyman's 'watchcommits' permission on perl-AnyEvent-HTTP (f23) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchcommits' permission on perl-AnyEvent-HTTP (f23) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-AnyEvent-HTTP/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'approveacls' permission on perl-AnyEvent-HTTP (f22) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'approveacls' permission on perl-AnyEvent-HTTP (f22) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-AnyEvent-HTTP/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'watchcommits' permission on perl-AnyEvent-HTTP (f22) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchcommits' permission on perl-AnyEvent-HTTP (f22) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-AnyEvent-HTTP/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'watchcommits' permission on perl-Apache-DBI (master) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchcommits' permission on perl-Apache-DBI (master) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-Apache-DBI/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'commit' permission on perl-AnyEvent-HTTP (f22) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'commit' permission on perl-AnyEvent-HTTP (f22) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-AnyEvent-HTTP/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org

eseyman changed eseyman's 'approveacls' permission on perl-Apache2-SOAP (master) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'approveacls' permission on perl-Apache2-SOAP (master) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-Apache2-SOAP/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'commit' permission on perl-AnyEvent-HTTP (master) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'commit' permission on perl-AnyEvent-HTTP (master) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-AnyEvent-HTTP/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'approveacls' permission on perl-XML-Entities (f23) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'approveacls' permission on perl-XML-Entities (f23) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'watchbugzilla' permission on perl-XML-Entities (f23) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchbugzilla' permission on perl-XML-Entities (f23) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'watchcommits' permission on perl-XML-Entities (f23) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchcommits' permission on perl-XML-Entities (f23) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed owner of perl-XML-Entities (f23) to 'eseyman'

2016-02-19 Thread notifications
eseyman changed owner of perl-XML-Entities (f23) to 'eseyman' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org

eseyman changed eseyman's 'commit' permission on perl-XML-Entities (f23) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'commit' permission on perl-XML-Entities (f23) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org

eseyman changed eseyman's 'watchcommits' permission on perl-XML-Entities (master) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchcommits' permission on perl-XML-Entities (master) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed owner of perl-XML-Entities (f22) to 'eseyman'

2016-02-19 Thread notifications
eseyman changed owner of perl-XML-Entities (f22) to 'eseyman' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org

eseyman changed eseyman's 'commit' permission on perl-XML-Entities (f22) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'commit' permission on perl-XML-Entities (f22) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org

eseyman changed eseyman's 'approveacls' permission on perl-XML-Entities (f22) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'approveacls' permission on perl-XML-Entities (f22) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'watchcommits' permission on perl-XML-Entities (f22) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchcommits' permission on perl-XML-Entities (f22) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'watchbugzilla' permission on perl-XML-Entities (f22) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchbugzilla' permission on perl-XML-Entities (f22) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'commit' permission on perl-XML-Entities (master) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'commit' permission on perl-XML-Entities (master) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'approveacls' permission on perl-XML-Entities (master) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'approveacls' permission on perl-XML-Entities (master) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed owner of perl-XML-Entities (master) to 'eseyman'

2016-02-19 Thread notifications
eseyman changed owner of perl-XML-Entities (master) to 'eseyman' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org

eseyman changed eseyman's 'watchbugzilla' permission on perl-XML-Entities (master) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchbugzilla' permission on perl-XML-Entities (master) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-XML-Entities/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'watchcommits' permission on perl-Proc-Daemon (f22) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchcommits' permission on perl-Proc-Daemon (f22) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-Proc-Daemon/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'approveacls' permission on perl-Proc-Daemon (f23) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'approveacls' permission on perl-Proc-Daemon (f23) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-Proc-Daemon/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'watchcommits' permission on perl-Proc-Daemon (f23) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchcommits' permission on perl-Proc-Daemon (f23) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-Proc-Daemon/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'approveacls' permission on perl-Proc-Daemon (f22) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'approveacls' permission on perl-Proc-Daemon (f22) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-Proc-Daemon/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'watchbugzilla' permission on perl-Proc-Daemon (f23) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchbugzilla' permission on perl-Proc-Daemon (f23) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-Proc-Daemon/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed owner of perl-Proc-Daemon (f23) to 'eseyman'

2016-02-19 Thread notifications
eseyman changed owner of perl-Proc-Daemon (f23) to 'eseyman' https://admin.fedoraproject.org/pkgdb/package/perl-Proc-Daemon/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org

eseyman changed eseyman's 'approveacls' permission on perl-Proc-Daemon (master) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'approveacls' permission on perl-Proc-Daemon (master) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-Proc-Daemon/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'commit' permission on perl-Proc-Daemon (master) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'commit' permission on perl-Proc-Daemon (master) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-Proc-Daemon/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org

eseyman changed eseyman's 'watchbugzilla' permission on perl-Proc-Daemon (f22) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'watchbugzilla' permission on perl-Proc-Daemon (f22) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-Proc-Daemon/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list

eseyman changed eseyman's 'commit' permission on perl-Proc-Daemon (f23) to 'Approved'

2016-02-19 Thread notifications
eseyman changed eseyman's 'commit' permission on perl-Proc-Daemon (f23) to 'Approved' https://admin.fedoraproject.org/pkgdb/package/perl-Proc-Daemon/ -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@lists.fedoraproject.org

  1   2   3   4   5   >