[Test-Announce] 2013-04-22 @ 15:00 UTC - Fedora QA Meeting

2013-04-22 Thread Adam Williamson

# Fedora Quality Assurance Meeting
# Date: 2013-04-22
# Time: 15:00 UTC
(https://fedoraproject.org/wiki/Infrastructure/UTCHowto)
# Location: #fedora-meeting on irc.freenode.net

Greetings testers!

It's meeting time again today/tomorrow! We signed off on Alpha this week 
(yay!), so it's time for some Beta prep.


This is a reminder of the upcoming QA meeting. Please add any topic
suggestions to the meeting wiki page:
https://fedoraproject.org/wiki/QA/Meetings/20130422
The current proposed agenda is included below.

== Proposed Agenda Topics ==
1. Previous meeting follow-up
2. Fedora 19 Alpha recap
3. Beta release criteria
4. Test Days
5. Open floor
--
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | identi.ca: adamwfedora
http://www.happyassassin.net
___
test-announce mailing list
test-annou...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/test-announce
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: gradle problem in f{19,20}

2013-04-22 Thread gil

Il 22/04/2013 07:18, Mikolaj Izdebski ha scritto:

groovy 2.x series  (and other libraries) require gradle for build, but
with gradle there is a problem I tried to solve without success in f19
and f20 (in f18 work fine :( ).
(the same happen when rebuild gradle in non bootstrap mode)

gradle --debug jar javadoc -g
/builddir/build/BUILD/hibernate-release-4.1.7.Final/gradlehome -b
/builddir/build/BUILD/hibernate-release-4.1.7.Final/buildSrc/build.gradle
10:28:52.228 [DEBUG]
[org.gradle.logging.internal.DefaultLoggingConfigurer] Finished
configuring with level: DEBUG, configurers:
[org.gradle.logging.internal.OutputEventRenderer@14bd4d1,
org.gradle.logging.internal.slf4j.Slf4jLoggingConfigurer@180fd99,
org.gradle.logging.internal.JavaUtilLoggingConfigurer@18955ea]
10:28:52.282 [ERROR] [org.gradle.BuildExceptionReporter]
10:28:52.284 [ERROR] [org.gradle.BuildExceptionReporter] FAILURE: Build
aborted because of an internal error.
10:28:52.287 [ERROR] [org.gradle.BuildExceptionReporter]
10:28:52.288 [ERROR] [org.gradle.BuildExceptionReporter] * What went wrong:
10:28:52.290 [ERROR] [org.gradle.BuildExceptionReporter] Build aborted
because of an unexpected internal error. Please file an issue at:
http://forums.gradle.org
the same using -S (--full-stacktrace) parameter.
any ideas?

My ideas are:

1) Run gradle in a debugger and try to investigate what exactly is
causing the problem; unexpected internal error is not helping much.

already done

2) Check if the problem persists after replacing all dependencies with
binary JARs used by upstream.  If the issue is solved this way then you
can try bisection method (replace half of dependencies, then quarter and
so on, narrowing the possible cause of the problem).

i use f18 

3) Talk to the upstream.  They surely know more about gradle internals
and hopefully they will give you some advice how to fix the problem.


i applied a patch (#31) as suggested by A. Murdoc, gradle developer [1]
http://pkgs.fedoraproject.org/cgit/gradle.git/tree/gradle-1.0-printStackTrace.patch
but dont work ... probably did something wrong ...
thanks
regards


[1] Is it possible for you to temporarily add some trace to the Gradle 
source that you're using, as it looks like our logging is throwing away 
some useful details. In BuildExceptionReporter.execute(), can you add a 
call to failure.printStackTrace(), so that we get the full details for 
the failure.








-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Strange ssh / openldap linking problem

2013-04-22 Thread Richard W.M. Jones

I'm not sure whether or not this is a bug, but it sure looks strange.

$ rpm -qf /usr/bin/ssh
openssh-clients-6.1p1-6.fc18.x86_64

$ ldd /usr/bin/ssh|grep ldap
  libldap-2.4.so.2 = /lib64/libldap-2.4.so.2 (0x7fad274fc000)

/usr/lib64/libldap-2.4.so.2 is a symbolic link to a symbolic link
which passes through a -devel package.

/usr/lib64/libldap-2.4.so.2 - libldap.so   # openldap-2.4.34-1.fc18
/usr/lib64/libldap.so - libldap-2.4.so.2.9.0   # openldap-devel-2.4.34-1.fc18
/usr/lib64/libldap-2.4.so.2.9.0 is a real file  # openldap-2.4.34-1.fc18

To cut a long story short, I fixed this by uninstalling openldap-devel
and reinstalling it.  Now there is no -devel package in the chain:

$ ldd /usr/bin/ssh | grep ldap
  libldap-2.4.so.2 = /lib64/libldap-2.4.so.2 (0x7fe8caf69000)

/lib64/libldap-2.4.so.2 - libldap-2.4.so.2.9.0

I'd like to understand how the original situation happened, because it
broke a supermin-built appliance (RHBZ#954185).  I assume ldconfig
must have something to do with it.  There is nothing unusual in the
%scripts of openldap (it just runs ldconfig as you'd expect), nor is
there any special openssh/openldap config file in /etc/ld.so.conf.d.

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-df lists disk usage of guests without needing to install any
software inside the virtual machine.  Supports Linux and Windows.
http://people.redhat.com/~rjones/virt-df/
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Strange ssh / openldap linking problem

2013-04-22 Thread Michael Schwendt
On Mon, 22 Apr 2013 09:36:34 +0100, Richard W.M. Jones wrote:

 
 I'm not sure whether or not this is a bug, but it sure looks strange.
 
 $ rpm -qf /usr/bin/ssh
 openssh-clients-6.1p1-6.fc18.x86_64
 
 $ ldd /usr/bin/ssh|grep ldap
   libldap-2.4.so.2 = /lib64/libldap-2.4.so.2 (0x7fad274fc000)
 
 /usr/lib64/libldap-2.4.so.2 is a symbolic link to a symbolic link
 which passes through a -devel package.
 
 /usr/lib64/libldap-2.4.so.2 - libldap.so   # openldap-2.4.34-1.fc18
 /usr/lib64/libldap.so - libldap-2.4.so.2.9.0   # openldap-devel-2.4.34-1.fc18
 /usr/lib64/libldap-2.4.so.2.9.0 is a real file  # openldap-2.4.34-1.fc18
 
 To cut a long story short, I fixed this by uninstalling openldap-devel
 and reinstalling it.  Now there is no -devel package in the chain:
 
 $ ldd /usr/bin/ssh | grep ldap
   libldap-2.4.so.2 = /lib64/libldap-2.4.so.2 (0x7fe8caf69000)
 
 /lib64/libldap-2.4.so.2 - libldap-2.4.so.2.9.0
 
 I'd like to understand how the original situation happened, because it
 broke a supermin-built appliance (RHBZ#954185).  I assume ldconfig
 must have something to do with it.  There is nothing unusual in the
 %scripts of openldap (it just runs ldconfig as you'd expect), nor is
 there any special openssh/openldap config file in /etc/ld.so.conf.d.

Some thoughts:

1) ldconfig does not touch the non-versioned .so libs (especially not if
they are development-only symlinks), since it only cares about the
run-time libs. It adjusts the SONAME - FULLY-VERSIONED-LIBNAME symlinks,
so .so.2 will point at the latest .so.2.x.y, for example. It would not
recreate a deleted .so symlink and would not redirect it either.

2) The openldap-devel package contains a (harmless) bug, since it runs
ldconfig in its scriptlets. It doesn't need to.

3) Funny things going on (f19 here), but haven't examined anything
beyond this:

# rpm -e openldap-devel
# ldconfig -v|grep ldap
libldap_r-2.4.so.2 - libldap_r-2.4.so.2.9.1
libldap-2.4.so.2 - libldap-2.4.so.2.9.1
# yum -y install openldap-devel
# ldconfig -v|grep ldap
libldap_r-2.4.so.2 - libldap_r.so
libldap-2.4.so.2 - libldap.so

That makes no sense.
In /lib64 it looks different (and correct), however:

# ls -la /lib64/*ldap*
lrwxrwxrwx. 1 root root 20 Apr 17 22:30 /lib64/libldap-2.4.so.2 - 
libldap-2.4.so.2.9.1
-rwxr-xr-x. 1 root root 336504 Apr 15 10:56 /lib64/libldap-2.4.so.2.9.1
lrwxrwxrwx. 1 root root 22 Apr 17 22:30 /lib64/libldap_r-2.4.so.2 - 
libldap_r-2.4.so.2.9.1
-rwxr-xr-x. 1 root root 358720 Apr 15 10:56 /lib64/libldap_r-2.4.so.2.9.1
lrwxrwxrwx. 1 root root 22 Apr 22 11:18 /lib64/libldap_r.so - 
libldap_r-2.4.so.2.9.1
lrwxrwxrwx. 1 root root 20 Apr 22 11:18 /lib64/libldap.so - 
libldap-2.4.so.2.9.1
-rwxr-xr-x. 1 root root  45896 Apr 10 16:52 /lib64/libsmbldap.so.0

-- 
Fedora release 19 (Schrödinger’s Cat) - Linux 3.9.0-0.rc7.git3.1.fc19.x86_64
loadavg: 0.27 0.17 0.26
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: FirewallD - terminology

2013-04-22 Thread Jiri Popelka

https://fedorahosted.org/firewalld/ticket/7

thanks

--
Jiri
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Strange ssh / openldap linking problem

2013-04-22 Thread Richard W.M. Jones
On Mon, Apr 22, 2013 at 11:27:42AM +0200, Michael Schwendt wrote:
 3) Funny things going on (f19 here), but haven't examined anything
 beyond this:
 
 # rpm -e openldap-devel
 # ldconfig -v|grep ldap
   libldap_r-2.4.so.2 - libldap_r-2.4.so.2.9.1
   libldap-2.4.so.2 - libldap-2.4.so.2.9.1
 # yum -y install openldap-devel
 # ldconfig -v|grep ldap
   libldap_r-2.4.so.2 - libldap_r.so
   libldap-2.4.so.2 - libldap.so
 
 That makes no sense.

On my (now fixed) system I get the same output from ldconfig:

$ sudo ldconfig -v | grep ldap
ldconfig: Can't stat /libx32: No such file or directory
ldconfig: Path `/usr/lib' given more than once
ldconfig: Path `/usr/lib64' given more than once
ldconfig: Can't stat /usr/libx32: No such file or directory
  libsmbldap.so.0 - libsmbldap.so.0
  libldap_r-2.4.so.2 - libldap_r.so
  libldap-2.4.so.2 - libldap.so

which as you say makes no sense.

On the other hand, the links on the filesystem are still correct:

$ ll /usr/lib64/libldap-2.4.so.2
lrwxrwxrwx. 1 root root 20 Apr 22 09:26 /usr/lib64/libldap-2.4.so.2 - 
libldap-2.4.so.2.9.0

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-df lists disk usage of guests without needing to install any
software inside the virtual machine.  Supports Linux and Windows.
http://people.redhat.com/~rjones/virt-df/
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: gradle problem in f{19,20}

2013-04-22 Thread Mikolaj Izdebski
On 04/22/2013 10:16 AM, gil wrote:
 1) Run gradle in a debugger and try to investigate what exactly is
 causing the problem; unexpected internal error is not helping much.
 already done

And? Any results?

 2) Check if the problem persists after replacing all dependencies with
 binary JARs used by upstream.  If the issue is solved this way then you
 can try bisection method (replace half of dependencies, then quarter and
 so on, narrowing the possible cause of the problem).
 i use f18 

And what is your point? Does using F18 prevent you from trying the
bisection method? It helped me solve several difficult cases.

Besides that the message title says you are using F19/F20, so I'm a bit
confused now.

 3) Talk to the upstream.  They surely know more about gradle internals
 and hopefully they will give you some advice how to fix the problem.

 i applied a patch (#31) as suggested by A. Murdoc, gradle developer [1]
 http://pkgs.fedoraproject.org/cgit/gradle.git/tree/gradle-1.0-printStackTrace.patch
 
 but dont work ... probably did something wrong ...

Try changing the patch to print the stack trace even when failure is not
 instance of GradleException (i.e. uncomment line 13).

-- 
Mikolaj Izdebski
Software Engineer, Red Hat
IRC: mizdebsk
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

rawhide report: 20130422 changes

2013-04-22 Thread Fedora Rawhide Report
Compose started at Mon Apr 22 08:15:31 UTC 2013

Broken deps for x86_64
--
[3Depict]
3Depict-0.0.12-4.fc20.x86_64 requires libmgl.so.5()(64bit)
[aeolus-conductor]
aeolus-conductor-0.10.6-2.fc19.noarch requires ruby(abi) = 0:1.9.1
[amide]
amide-1.0.0-4.fc19.x86_64 requires libvolpack.so.1()(64bit)
[clementine]
clementine-1.1.1-1.fc19.x86_64 requires libprotobuf.so.7()(64bit)
clementine-1.1.1-1.fc19.x86_64 requires libimobiledevice.so.3()(64bit)
[connman]
connman-1.5-4.fc19.i686 requires libxtables.so.7
connman-1.5-4.fc19.i686 requires libgnutls.so.26(GNUTLS_1_4)
connman-1.5-4.fc19.i686 requires libgnutls.so.26
connman-1.5-4.fc19.x86_64 requires libxtables.so.7()(64bit)
connman-1.5-4.fc19.x86_64 requires libgnutls.so.26(GNUTLS_1_4)(64bit)
connman-1.5-4.fc19.x86_64 requires libgnutls.so.26()(64bit)
[deltacloud-core]
deltacloud-core-1.0.5-2.fc19.noarch requires ruby(abi) = 0:1.9.1
[dragonegg]
dragonegg-3.1-19.fc19.x86_64 requires gcc = 0:4.7.2-9.fc19
[eg]
eg-1.7.5.2-1.fc20.noarch requires perl(one)
eg-1.7.5.2-1.fc20.noarch requires perl(it)
eg-1.7.5.2-1.fc20.noarch requires perl(an)
[flowcanvas]
flowcanvas-0.7.1-8.fc18.i686 requires libgraph.so.5
flowcanvas-0.7.1-8.fc18.x86_64 requires libgraph.so.5()(64bit)
[gcc-python-plugin]
gcc-python2-debug-plugin-0.11-1.fc19.x86_64 requires gcc = 
0:4.7.2-8.fc19
gcc-python2-plugin-0.11-1.fc19.x86_64 requires gcc = 0:4.7.2-8.fc19
gcc-python3-debug-plugin-0.11-1.fc19.x86_64 requires gcc = 
0:4.7.2-8.fc19
gcc-python3-plugin-0.11-1.fc19.x86_64 requires gcc = 0:4.7.2-8.fc19
[gnome-applets]
1:gnome-applets-3.5.92-3.fc18.x86_64 requires 
libgweather-3.so.1()(64bit)
[gnome-panel]
gnome-panel-3.6.2-6.fc19.x86_64 requires 
libgnome-desktop-3.so.5()(64bit)
gnome-panel-devel-3.6.2-6.fc19.i686 requires libgnome-desktop-3.so.5
gnome-panel-devel-3.6.2-6.fc19.x86_64 requires 
libgnome-desktop-3.so.5()(64bit)
[gnome-pie]
gnome-pie-0.5.3-3.20120826git1b93e1.fc19.x86_64 requires 
libbamf3.so.0()(64bit)
[gnomint]
gnomint-1.2.1-5.fc18.x86_64 requires libgnutls.so.26(GNUTLS_2_8)(64bit)
gnomint-1.2.1-5.fc18.x86_64 requires libgnutls.so.26(GNUTLS_1_4)(64bit)
gnomint-1.2.1-5.fc18.x86_64 requires libgnutls.so.26()(64bit)
[gooddata-cl]
gooddata-cl-1.2.56-2.fc19.noarch requires gdata-java
[kawa]
1:kawa-1.11-5.fc19.x86_64 requires servlet25
[libkolab]
php-kolab-0.4.1-3.fc19.x86_64 requires php(zend-abi) = 0:20100525-x86-64
php-kolab-0.4.1-3.fc19.x86_64 requires php(api) = 0:20100412-x86-64
[mapserver]
php-mapserver-6.0.3-9.fc19.x86_64 requires php(zend-abi) = 
0:20100525-x86-64
php-mapserver-6.0.3-9.fc19.x86_64 requires php(api) = 0:20100412-x86-64
[matreshka]
matreshka-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-amf-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-amf-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-amf-mofext-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-amf-mofext-0.3.0-3.fc19.x86_64 requires 
libgnat-4.7.so()(64bit)
matreshka-amf-ocl-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-amf-ocl-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-amf-uml-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-amf-uml-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-amf-utp-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-amf-utp-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-fastcgi-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-fastcgi-0.3.0-3.fc19.i686 requires libgnarl-4.7.so
matreshka-fastcgi-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-fastcgi-0.3.0-3.fc19.x86_64 requires libgnarl-4.7.so()(64bit)
matreshka-sql-core-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-sql-core-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-sql-postgresql-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-sql-postgresql-0.3.0-3.fc19.x86_64 requires 
libgnat-4.7.so()(64bit)
matreshka-sql-sqlite-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-sql-sqlite-0.3.0-3.fc19.x86_64 requires 
libgnat-4.7.so()(64bit)
matreshka-xml-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-xml-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
[mgetty]
mgetty-1.1.36-20.fc20.x86_64 requires /sbin/sendmail
mgetty-sendfax-1.1.36-20.fc20.x86_64 requires /sbin/useradd
[mygui]
mygui-3.2.0-4.fc20.i686 requires libCommon.so
mygui-3.2.0-4.fc20.x86_64 requires libCommon.so()(64bit)

Receiving bugs from Crash Catcher with [faf] in the subject line

2013-04-22 Thread Dan Mashal
Seems like someone turned on a bot this morning. Just a heads up..
these have [faf] in the subject line and seem to be filing bugs on old
components (for me at least). Looks like it's just starting to make
the rounds. Who owns this?

Dan
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

F-19 Branched report: 20130422 changes

2013-04-22 Thread Fedora Branched Report
Compose started at Mon Apr 22 09:15:20 UTC 2013

Broken deps for x86_64
--
[accerciser]
accerciser-3.8.0-2.fc19.noarch requires python3-ipython-console
[aeolus-conductor]
aeolus-conductor-0.10.6-2.fc19.noarch requires ruby(abi) = 0:1.9.1
[amide]
amide-1.0.0-4.fc19.x86_64 requires libvolpack.so.1()(64bit)
[astromenace-data]
astromenace-data-1.2-7.fc19.noarch requires astromenace = 0:1.2
[clementine]
clementine-1.1.1-1.fc19.x86_64 requires libprotobuf.so.7()(64bit)
clementine-1.1.1-1.fc19.x86_64 requires libimobiledevice.so.3()(64bit)
[connman]
connman-1.5-4.fc19.i686 requires libxtables.so.7
connman-1.5-4.fc19.i686 requires libgnutls.so.26(GNUTLS_1_4)
connman-1.5-4.fc19.i686 requires libgnutls.so.26
connman-1.5-4.fc19.x86_64 requires libxtables.so.7()(64bit)
connman-1.5-4.fc19.x86_64 requires libgnutls.so.26(GNUTLS_1_4)(64bit)
connman-1.5-4.fc19.x86_64 requires libgnutls.so.26()(64bit)
[deltacloud-core]
deltacloud-core-1.0.5-2.fc19.noarch requires ruby(abi) = 0:1.9.1
[dragonegg]
dragonegg-3.1-19.fc19.x86_64 requires gcc = 0:4.7.2-9.fc19
[flowcanvas]
flowcanvas-0.7.1-8.fc18.i686 requires libgraph.so.5
flowcanvas-0.7.1-8.fc18.x86_64 requires libgraph.so.5()(64bit)
[gcc-python-plugin]
gcc-python2-debug-plugin-0.11-1.fc19.x86_64 requires gcc = 
0:4.7.2-8.fc19
gcc-python2-plugin-0.11-1.fc19.x86_64 requires gcc = 0:4.7.2-8.fc19
gcc-python3-debug-plugin-0.11-1.fc19.x86_64 requires gcc = 
0:4.7.2-8.fc19
gcc-python3-plugin-0.11-1.fc19.x86_64 requires gcc = 0:4.7.2-8.fc19
[gnome-applets]
1:gnome-applets-3.5.92-3.fc18.x86_64 requires 
libgweather-3.so.1()(64bit)
[gnome-panel]
gnome-panel-3.6.2-6.fc19.x86_64 requires 
libgnome-desktop-3.so.5()(64bit)
gnome-panel-devel-3.6.2-6.fc19.i686 requires libgnome-desktop-3.so.5
gnome-panel-devel-3.6.2-6.fc19.x86_64 requires 
libgnome-desktop-3.so.5()(64bit)
[gnome-pie]
gnome-pie-0.5.3-3.20120826git1b93e1.fc19.x86_64 requires 
libbamf3.so.0()(64bit)
[gnomint]
gnomint-1.2.1-5.fc18.x86_64 requires libgnutls.so.26(GNUTLS_2_8)(64bit)
gnomint-1.2.1-5.fc18.x86_64 requires libgnutls.so.26(GNUTLS_1_4)(64bit)
gnomint-1.2.1-5.fc18.x86_64 requires libgnutls.so.26()(64bit)
[gooddata-cl]
gooddata-cl-1.2.56-2.fc19.noarch requires gdata-java
[kawa]
1:kawa-1.11-5.fc19.x86_64 requires servlet25
[libguestfs]
1:libguestfs-1.21.26-4.fc19.i686 requires libk5radius.so.0
1:libguestfs-1.21.26-4.fc19.x86_64 requires libk5radius.so.0()(64bit)
[libkolab]
php-kolab-0.4.1-3.fc19.x86_64 requires php(zend-abi) = 0:20100525-x86-64
php-kolab-0.4.1-3.fc19.x86_64 requires php(api) = 0:20100412-x86-64
[matreshka]
matreshka-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-amf-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-amf-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-amf-mofext-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-amf-mofext-0.3.0-3.fc19.x86_64 requires 
libgnat-4.7.so()(64bit)
matreshka-amf-ocl-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-amf-ocl-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-amf-uml-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-amf-uml-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-amf-utp-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-amf-utp-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-fastcgi-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-fastcgi-0.3.0-3.fc19.i686 requires libgnarl-4.7.so
matreshka-fastcgi-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-fastcgi-0.3.0-3.fc19.x86_64 requires libgnarl-4.7.so()(64bit)
matreshka-sql-core-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-sql-core-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
matreshka-sql-postgresql-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-sql-postgresql-0.3.0-3.fc19.x86_64 requires 
libgnat-4.7.so()(64bit)
matreshka-sql-sqlite-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-sql-sqlite-0.3.0-3.fc19.x86_64 requires 
libgnat-4.7.so()(64bit)
matreshka-xml-0.3.0-3.fc19.i686 requires libgnat-4.7.so
matreshka-xml-0.3.0-3.fc19.x86_64 requires libgnat-4.7.so()(64bit)
[maven-dependency-plugin]
maven-dependency-plugin-2.7-1.fc19.noarch requires 
mvn(org.apache.commons:commons-io)
[mygui]
mygui-3.2.0-4.fc19.i686 requires libCommon.so
mygui-3.2.0-4.fc19.x86_64 requires libCommon.so()(64bit)
mygui-demos-3.2.0-4.fc19.x86_64 requires libCommon.so()(64bit)

Re: gradle problem in f{19,20}

2013-04-22 Thread gil

Il 22/04/2013 12:58, Mikolaj Izdebski ha scritto:

On 04/22/2013 10:16 AM, gil wrote:

1) Run gradle in a debugger and try to investigate what exactly is
causing the problem; unexpected internal error is not helping much.

already done

And? Any results?

the same error reported in the previous emal



2) Check if the problem persists after replacing all dependencies with
binary JARs used by upstream.  If the issue is solved this way then you
can try bisection method (replace half of dependencies, then quarter and
so on, narrowing the possible cause of the problem).

i use f18 

And what is your point? Does using F18 prevent you from trying the
bisection method? It helped me solve several difficult cases.

Besides that the message title says you are using F19/F20, so I'm a bit
confused now.


sorry, tried to rebuilt gradle on koji in non boostrap mode for F19/F20

3) Talk to the upstream.  They surely know more about gradle internals
and hopefully they will give you some advice how to fix the problem.


i applied a patch (#31) as suggested by A. Murdoc, gradle developer [1]
http://pkgs.fedoraproject.org/cgit/gradle.git/tree/gradle-1.0-printStackTrace.patch

but dont work ... probably did something wrong ...

Try changing the patch to print the stack trace even when failure is not
  instance of GradleException (i.e. uncomment line 13).


ok thanks now try
regards
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Receiving bugs from Crash Catcher with [faf] in the subject line

2013-04-22 Thread Peter Robinson
On Mon, Apr 22, 2013 at 1:24 PM, Dan Mashal dan.mas...@gmail.com wrote:
 Seems like someone turned on a bot this morning. Just a heads up..
 these have [faf] in the subject line and seem to be filing bugs on old
 components (for me at least). Looks like it's just starting to make
 the rounds. Who owns this?

The age of the components look fine for the ones that I've received
and some of them even look useful but it's always nice for the people
that are going to generate mass bug spam to sent a heads up to the
list so people are aware it's happening.

Peter
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Receiving bugs from Crash Catcher with [faf] in the subject line

2013-04-22 Thread Richard Marko
On 04/22/2013 02:24 PM, Dan Mashal wrote:
 Seems like someone turned on a bot this morning. Just a heads up..
 these have [faf] in the subject line and seem to be filing bugs on old
 components (for me at least). Looks like it's just starting to make
 the rounds. Who owns this?

 Dan

Yes, we did that and started filing bugs for everything that seemed
worth (even old stuff). After initial sync between bugzilla and faf
server it won't create as much tickets for old components as it does now
which is partially caused by the order in which the bot creates these
tickets.

Creation of new tickets is stopped for now until we fix few issues
reported to us.
More feedback is welcome.

-- 
Richard Marko

-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Receiving bugs from Crash Catcher with [faf] in the subject line

2013-04-22 Thread Orion Poplawski

On 04/22/2013 06:24 AM, Dan Mashal wrote:

Seems like someone turned on a bot this morning. Just a heads up..
these have [faf] in the subject line and seem to be filing bugs on old
components (for me at least). Looks like it's just starting to make
the rounds. Who owns this?

Dan



I also find it annoying that the crash-catcher list is not open, since that is 
where comments are asked to be sent to.  I really don't want to have to 
subscribe to yet another list.


--
Orion Poplawski
Technical Manager 303-415-9701 x222
NWRA, Boulder/CoRA Office FAX: 303-415-9702
3380 Mitchell Lane   or...@nwra.com
Boulder, CO 80301   http://www.nwra.com
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Receiving bugs from Crash Catcher with [faf] in the subject line

2013-04-22 Thread Jerry James
On Mon, Apr 22, 2013 at 8:05 AM, Richard Marko rma...@redhat.com wrote:
 Yes, we did that and started filing bugs for everything that seemed
 worth (even old stuff). After initial sync between bugzilla and faf
 server it won't create as much tickets for old components as it does now
 which is partially caused by the order in which the bot creates these
 tickets.

 Creation of new tickets is stopped for now until we fix few issues
 reported to us.
 More feedback is welcome.

Here is some feedback.  The bugs say to send email to
crash-catc...@lists.fedorahosted.org if a bug report is wrong or not
helpful, so that the tool may be improved.  I sent an email with some
suggestions.  It bounced back:

  You need to subscribe before you can post to this list.

That's not very friendly.  Either suggest an open email address to
which suggestions can be sent, or modify the bugzilla message so that
the necessity of subscribing before posting is made clear.

Regards,
--
Jerry James
http://www.jamezone.org/
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

clock-applet memory leak

2013-04-22 Thread Przemek Klosowski

I reported the large memory leak in clock-applet:

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

(TLDR: clock-applet grows by 1GB/day when reporting weather)

Since clock-applet is a default install on every Fedora, I thought this 
would be widely reported---it essentially makes the system unusable 
within a day or two if you  run into this problem---but that doesn't 
seem to be the case. I guess people don't see it because nobody 
reconfigures clock-applet.


Anyway, I am looking for a way to debug this: I tried attaching GDB to 
the running process but the results are unreliable (see BZ). I couldn't 
figure out how to run valgrind on the executable: it has to be run in 
the context of the Gnome panel, so how do I tell it to run 'valgrind 
/usr/libexec/clock-applet', and how do I get access to the results?

Is there another way?
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Re: Receiving bugs from Crash Catcher with [faf] in the subject line

2013-04-22 Thread Rave it
Am Mon, 22 Apr 2013 16:37:34 +
schrieb devel-requ...@lists.fedoraproject.org:

For me as compiz maintainer those info's are complete useless whithout
having more infomation what the user did if abrt would trigered.
Maybe thy played arround without knowledge about the programm and did
wrong things?
Better the abrt guys forced the user to write what they did if abrt
trigger a alarm.
For me a bug whithout a comment isn't a bug.
And honestly, if i get such bugs without a comment, i asked the user
friendly what they did.
In case of 50% i get no answer.

Wolfgang
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: clock-applet memory leak

2013-04-22 Thread Richard W.M. Jones
On Mon, Apr 22, 2013 at 12:55:00PM -0400, Przemek Klosowski wrote:
 I reported the large memory leak in clock-applet:
 
 https://bugzilla.redhat.com/show_bug.cgi?id=952763
 
 (TLDR: clock-applet grows by 1GB/day when reporting weather)
 
 Since clock-applet is a default install on every Fedora, I thought
 this would be widely reported---it essentially makes the system
 unusable within a day or two if you  run into this problem---but
 that doesn't seem to be the case. I guess people don't see it
 because nobody reconfigures clock-applet.
 
 Anyway, I am looking for a way to debug this: I tried attaching GDB
 to the running process but the results are unreliable (see BZ). I
 couldn't figure out how to run valgrind on the executable: it has to
 be run in the context of the Gnome panel, so how do I tell it to run
 'valgrind /usr/libexec/clock-applet', and how do I get access to the
 results?
 Is there another way?

One trick I've used in the past is to core dump the process
(set 'ulimit -c unlimited' before startx, then kill -SEGV $clockpid),
and parse it with some simple command line tools.

sort  core | uniq -c | sort -nr

Example: https://bugzilla.redhat.com/show_bug.cgi?id=890039#c2

This will tell you if some obvious string is being leaked.
Unfortunately it's not useful for any other type of leak.  But you
never know, and it only takes a few minutes to do this analysis.

Rich.

PS. If you can't coredump the process, you can probably read
/proc/$pid/mem instead, but note that simple 'cat' won't work:
http://unix.stackexchange.com/questions/6267/how-to-unswap-my-desktop/6271#6271

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming blog: http://rwmj.wordpress.com
Fedora now supports 80 OCaml packages (the OPEN alternative to F#)
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

question about journald and rsyslogd in f19, are both enabled by default?

2013-04-22 Thread Reartes Guillermo
Hi,

I noticed this after many freezes (due to bug 954181) in the messages:

[3.549075] systemd-journald[177]: File
/var/log/journal/4697cb8e07b94ed28925792b701e629f/system.journal corrupted
or uncleanly shut down, renaming and replacing.

But why is it running if i did not enable it nor have i changed the default
syslog?

# cat /etc/fedora-release
Fedora release 19 (Schrödinger’s Cat)

# uname -r
3.9.0-0.rc7.git3.1.fc19.x86_64


# systemctl list-units |grep -i journal
systemd-journald.serviceloaded active running   Journal Service
systemd-journald.socket loaded active running   Journal Socket

# systemctl list-units |grep -i syslog
rsyslog.service loaded active running   System Logging Service
syslog.socket   loaded active running   Syslog Socket

# systemctl status systemd-journald.service
systemd-journald.service - Journal Service
   Loaded: loaded (/usr/lib/systemd/system/systemd-journald.service; static)
   Active: active (running) since Mon 2013-04-22 17:06:33 ART; 20min ago
 Docs: man:systemd-journald.service(8)
   man:journald.conf(5)
 Main PID: 177 (systemd-journal)
   Status: Processing requests...
   CGroup: name=systemd:/system/systemd-journald.service
   └─177 /usr/lib/systemd/systemd-journald

Apr 22 17:06:33 stark.espada systemd-journal[177]: Allowing runtime journal
files to grow to 399.3M.
Apr 22 17:06:33 stark.espada systemd-journal[177]: Journal started
Apr 22 17:06:34 stark.espada systemd-journal[177]: Allowing system journal
files to grow to 4.0G.
Apr 22 17:07:24 stark.espada systemd-journal[177]: Forwarding to syslog
missed 53 messages.

# systemctl status rsyslog.service
rsyslog.service - System Logging Service
   Loaded: loaded (/usr/lib/systemd/system/rsyslog.service; enabled)
   Active: active (running) since Mon 2013-04-22 17:06:34 ART; 20min ago
 Main PID: 333 (rsyslogd)
   CGroup: name=systemd:/system/rsyslog.service
   └─333 /sbin/rsyslogd -n

# ls -l /var/log/messages*
-rw---. 1 root root  598516 Apr 22 17:21 /var/log/messages
-rw---. 1 root root 1982160 Apr 13 15:56 /var/log/messages-20130413
-rw---. 1 root root  550418 Apr 20 17:04 /var/log/messages-20130420
-rw---. 1 root root  514731 Apr 21 13:09 /var/log/messages-20130421

# ls -l /var/log/journal/
total 8
drwxr-xr-x+ 2 root root 4096 Apr 22 17:06 4697cb8e07b94ed28925792b701e629f

# ls -l /var/log/journal/4697cb8e07b94ed28925792b701e629f/
total 76360
-rw-r-+ 1 root systemd-journal  7462912 Apr  5 15:06
system@0004d9a0f39c9cf9-f6c68c6aa8300de3.journal~
-rw-r-+ 1 root systemd-journal  9494528 Apr  5 17:53
system@0004d9a34756be53-519bcb0f6de7ed66.journal~
-rw-r-+ 1 root systemd-journal  5353472 Apr  5 18:13
system@0004d9a38d8574e1-0ec56d6bae16b243.journal~
-rw-r-+ 1 root systemd-journal  8417280 Apr  7 17:04
system@0004d9cad4c2a0ec-be79b785f140e32d.journal~
-rw-r-+ 1 root systemd-journal 20258816 Apr 21 12:27
system@0004dae096de651e-cace31ff8c7f7724.journal~
-rw-r-+ 1 root systemd-journal  6901760 Apr 21 15:56
system@0004dae381c7f9ac-122c42176d3ec2af.journal~
-rw-r-+ 1 root systemd-journal  4919296 Apr 21 16:54
system@0004dae452a0f1bf-da4c74f3ea564679.journal~
-rw-r-+ 1 root systemd-journal  6795264 Apr 22 17:06
system@0004daf89b05d07b-c306684d77ae2787.journal~
-rw-r-+ 1 root systemd-journal  4751360 Apr 22 17:24 system.journal
-rw-r-x---+ 1 root systemd-journal  3743744 Apr  5 15:11 user-1000.journal


# ps aux|grep -i journald | grep -v grep
root   177  0.0  0.2 299340 17180 ?Ss   17:06   0:00
/usr/lib/systemd/systemd-journald

# ps aux|grep -i rsyslogd | grep -v grep
root   333  0.0  0.0 254700  1660 ?Ssl  17:06   0:00
/sbin/rsyslogd -n

Do i have both rsyslogd and journald running at the same time?

I re-checked my F17 Box and also both systemd-journald.service and
rsyslog.service are up. But
unlike F19a, there are no /var/log/journal directories nor any .journal
file.

On the F19a Host, when i encounter the freeze event:

/var/log/messages (rsyslogd) shows:

Apr 22 18:01:41 stark kernel: [ 3312.986034] kvm [1866]: vcpu0 unhandled
rdmsr: 0xc001100d
Apr 22 18:01:41 stark kernel: [ 3312.986067] kvm [1866]: vcpu0 unhandled
rdmsr: 0xc0010112
Apr 22 18:01:41 stark kernel: [ 3313.128231] kvm [1866]: vcpu0 unhandled
rdmsr: 0xc0010001
Apr 22 18:03:08 stark rsyslogd: [origin software=rsyslogd
swVersion=7.2.6 x-pid=348 x-info=http://www.rsyslog.com;] start

journalctl -r (journald) shows:

Apr 22 18:03:03 stark.espada systemd-journal[68]: Allowing runtime journal
files to grow to 399.3M.
-- Reboot --
Apr 22 18:01:45 stark.espada setroubleshoot[1871]: writing database
(/var/lib/setroubleshoot/setroubleshoot_database.xml) mod
Apr 22 18:01:45 stark.espada setroubleshoot[1871]: KeyboardInterrupt in
RunFaultServer
Apr 22 18:01:45 stark.espada setroubleshoot[1871]: received signal=14
Apr 22 18:01:41 stark.espada kernel: kvm [1866]: vcpu0 unhandled rdmsr:
0xc0010001
Apr 22 18:01:41 stark.espada 

Re: Receiving bugs from Crash Catcher with [faf] in the subject line

2013-04-22 Thread Kevin Fenzi
On Mon, 22 Apr 2013 19:55:02 +0200
Rave it chat-to...@raveit.de wrote:

 Am Mon, 22 Apr 2013 16:37:34 +
 schrieb devel-requ...@lists.fedoraproject.org:
 
 For me as compiz maintainer those info's are complete useless whithout
 having more infomation what the user did if abrt would trigered.
 Maybe thy played arround without knowledge about the programm and did
 wrong things?
 Better the abrt guys forced the user to write what they did if abrt
 trigger a alarm.
 For me a bug whithout a comment isn't a bug.
 And honestly, if i get such bugs without a comment, i asked the user
 friendly what they did.
 In case of 50% i get no answer.

50% is much higher than I have gotten. ;) 

On any new abrt bugs I get, I typically: 

- Check to see if the submitter filled in the 'description of problem'
  which something I could try and work into a reproducer. I'd say
  perhaps 1% do. 

- If not, then I ask them what they were doing when the crash happened
  and if they can reproduce it. I'd say 90% never reply to that and the
  bug sits there until EOL. Some folks do, and those I can gather info
  from or ask various troubleshooting things which often results in a
  fix or at least an upstream bug. 

I'm not personally finding these faf reports of much use. They seem to
have a sanitized backtrace with even less info in them, and I also have
no way at all of finding out from people who saw this what they were
doing or ask them debugging steps. 

kevin


signature.asc
Description: PGP signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Login to Koji

2013-04-22 Thread Ravindra Kumar

 Hopefully, last problem is how do I specify proxy for koji commands?
 Does it not support proxies? I found this being asked earlier,
 http://www.redhat.com/archives/rhl-devel-list/2008-August/msg00667.html?

kevin I think it uses the normal http_proxy and https_proxy env variables... 

Dennis Koji doesnt support proxies. the ssl code opens sockets directly

I think Dennis is right. Even after setting proxy env vars, koji is not able to 
connect.

Given that I have to do it from behind a proxy, what is the alternative for me 
in this case?

Thanks,
Ravindra
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

[Test-Announce] Fedora 19 Graphics Test Week starts tomorrow (2013-04-23)!

2013-04-22 Thread Adam Williamson
Hi, folks. It's that time again: Graphics Test Week! Tomorrow 
(2013-04-23) is Intel Test Day, Wednesday 2013-04-24 is Nouveau Test 
Day, and Thursday 2013-04-25 is Radeon Test Day:


https://fedoraproject.org/wiki/Test_Day:2013-04-23_Intel
https://fedoraproject.org/wiki/Test_Day:2013-04-24_Nouveau
https://fedoraproject.org/wiki/Test_Day:2013-04-25_Radeon

This is one of those events where we really need as much data as 
possible - the idea is just to get testing on as wide a range of 
hardware as we can manage. So please, if you have a few spare minutes, 
come out and test! It's very easy. Live images will be available on the 
Wiki pages soon (martix is just finishing those off), and we'll be in 
#fedora-test-day all week to help out with testing and debugging.


There's a longer announcement post on my blog at 
http://www.happyassassin.net/2013/04/22/fedora-19-graphics-test-week-kicks-off-tomorrow/ 
- if you want to spread the word about the event (and please do!), 
that's probably the best thing to link to.

--
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | identi.ca: adamwfedora
http://www.happyassassin.net
___
test-announce mailing list
test-annou...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/test-announce
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: question about journald and rsyslogd in f19, are both enabled by default?

2013-04-22 Thread Lennart Poettering
On Mon, 22.04.13 18:21, Reartes Guillermo (rtgui...@gmail.com) wrote:

 Hi,
 
 I noticed this after many freezes (due to bug 954181) in the messages:
 
 [3.549075] systemd-journald[177]: File
 /var/log/journal/4697cb8e07b94ed28925792b701e629f/system.journal corrupted
 or uncleanly shut down, renaming and replacing.

Make sure to run the newest systemd RPM, and this shouldn't happen
anymore unless you turned off the machine abruptly at the worst possible
moment.

 But why is it running if i did not enable it nor have i changed the default
 syslog?

In contrast to syslog journald is running in early and late boot and
collects output from all services's stdout/stderr. It forwards all that
to syslog if one is running, so that syslog gets substantially more data
this way than on classic sysvinit setups. journald cannot be turned off,
since all service stdout/stderr is connected to it, it's simply too
integrated.

If you think the journal is evil, then you can set Storage=none in
/etc/systemd/journald.conf which will still leave it running but without
storing anything locally on disk. It will then act as a concentrator
only, and will simply make the data logged to syslog more
comprehensive. Instead of turning storage off, I can only recommend you
giving journalctl a try, since it is so much nicer than anything that
existed before:

https://www.youtube.com/watch?v=i4CACB7paLc

In F18, storage in journald was disabled by default, in F19 we enabled
it by default, since it greatly improves the usefulness of systemctl
status (simply because we can store a bit more data this way, where
before we only used a tiny ringbuffer in /run). Also, this has the
effect of allowing unprivileged users access to their own journals.

Note that rsyslog remains turned on in F19 by default (we were a bit
tired to fight this through for now). You hence get journald and rsyslog
running side-by-side by default. Both of them store data in /var/log/.

Lennart

-- 
Lennart Poettering - Red Hat, Inc.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: [F18][ATI Rage XL] Problems with install on ATI Rage XP video driver

2013-04-22 Thread Aaron Gray
I have updated and added debugging information and screen shots on these
two bugs on F18 https://bugzilla.redhat.com/show_bug.cgi?id=951643 and
F19Live https://bugzilla.redhat.com/show_bug.cgi?id=951648


On 14 April 2013 17:23, Aaron Gray aaronngray.li...@gmail.com wrote:

 I have put in two bugzilla entries :-

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

 On for F18 and another for F19-Live as they seem to be different results.

 Aaron


 On 5 April 2013 12:58, Aaron Gray aaronngray.li...@gmail.com wrote:

 Yeah I am getting the same messed up graphics results for F19 Alpha Live
 Spin on both monitors. Better than with F18 which would only work using
 VESA.

 BTW The Samsung has the following modes :-

- IBM, 640 x 480
- VESA, 800 x 600
- VESA, 800 x 600
- VESA, 1024 x 768
- VESA, 1280 X 960
- VESA, 1280 X 1024
- VESA, 1600 X 1200
- VESA, 1920 X 1200




 On 5 April 2013 12:41, Aaron Gray aaronngray.li...@gmail.com wrote:

 On 5 April 2013 06:59, Felix Miata mrma...@earthlink.net wrote:

 On 2013-04-05 01:38 (GMT-0400) Aaron Gray composed:


  Its quite strange.


  The Samsung monitor is 1920 x 1200


 What other modes does it support?


 Quite a range AFAICT.

 This problem on F18 arose using a smaller 1280 by 1024 monitor, which is
 now giving the same results.

 ---
 Aaron




-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: clock-applet memory leak

2013-04-22 Thread Conrad Meyer
On Mon, 22 Apr 2013 12:55:00 -0400
Przemek Klosowski przemek.klosow...@nist.gov wrote:

 I reported the large memory leak in clock-applet:
 
 https://bugzilla.redhat.com/show_bug.cgi?id=952763
 
 (TLDR: clock-applet grows by 1GB/day when reporting weather)

Ouch. Until this is fixed, I duct-taped around by adding this
line to cron:

*/5 * * * * /home/conrad/kill_clock_applet_leak.sh

Script:

#!/bin/bash

memused=`ps auxwww|grep clock-ap[p]let | awk '{ print $6 }'`

if [[ $memused -gt 25 ]]; then
memhuman=$((memused/1024))
echo Clock-applet using $memhuman MB, killing panel
pkill gnome-panel
fi


It's ugly and dumb, but should prevent run-away stupidity...
(kills at 250MB RSS).

Conrad
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Embedded SIG

2013-04-22 Thread Sérgio Basto
On Dom, 2013-04-21 at 21:00 +0200, Markus Mayer wrote: 
 On 04/21/2013 04:23 PM, John J. McDonough wrote:
  On Sun, Apr 21, 2013 at 5:01 AM, Markus Mayer lotharl...@gmx.de wrote:
 
  So I have decide to ask if there are others like me, and if there are
  willing to form a SIG (special interest group) to enhance embedded
  developing with fedora.
 
  I have an interest in an Embedded SIG, although less for the ARM as for
  the Microchip devices (PIC, dsPIC) which are reasonably well supported.
  Not that I don't play with ARM, too, but it is somewhat less of a
  passion.
 
  --McD
 
 
 
 As it was pointed out to me, there already exists and embedded SIG 
 (https://fedoraproject.org/wiki/Embedded). I am trying to contact and 
 join them, but I do not know if they are still alive.

https://fedoraproject.org/wiki/Architectures
you have here a little information about arches supported or wish
supported like MIPS 

-- 
Sérgio M. B.

-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: [Test-Announce] Fedora 19 Graphics Test Week starts tomorrow (2013-04-23)!

2013-04-22 Thread M. Edward (Ed) Borasky
Count me in for Nouveau - I have a problem I've been trying to nail
down for months on my ancient GeForce 6150SE nForce 430. Symptoms
(Fedora 18) none with 3.6 kernel. With 3.7 or later, GNOME desktop
comes up but as soon as I launch Firefox, I get diagonal lines across
the screen and I need to power cycle the machine to use it again. With
the KDE desktop, it does the same thing during the login and I don't
even get a desktop. I had to switch to the 'nv' X driver to get the
machine to function with 3.7. And there's no log file anywhere I can
attach to a bug report. If there are things I can do to capture a log
of this beast, please let me know!

On Mon, Apr 22, 2013 at 4:46 PM, Adam Williamson awill...@redhat.com wrote:
 Hi, folks. It's that time again: Graphics Test Week! Tomorrow (2013-04-23)
 is Intel Test Day, Wednesday 2013-04-24 is Nouveau Test Day, and Thursday
 2013-04-25 is Radeon Test Day:

 https://fedoraproject.org/wiki/Test_Day:2013-04-23_Intel
 https://fedoraproject.org/wiki/Test_Day:2013-04-24_Nouveau
 https://fedoraproject.org/wiki/Test_Day:2013-04-25_Radeon

 This is one of those events where we really need as much data as possible -
 the idea is just to get testing on as wide a range of hardware as we can
 manage. So please, if you have a few spare minutes, come out and test! It's
 very easy. Live images will be available on the Wiki pages soon (martix is
 just finishing those off), and we'll be in #fedora-test-day all week to help
 out with testing and debugging.

 There's a longer announcement post on my blog at
 http://www.happyassassin.net/2013/04/22/fedora-19-graphics-test-week-kicks-off-tomorrow/
 - if you want to spread the word about the event (and please do!), that's
 probably the best thing to link to.
 --
 Adam Williamson
 Fedora QA Community Monkey
 IRC: adamw | Twitter: AdamW_Fedora | identi.ca: adamwfedora
 http://www.happyassassin.net
 ___
 test-announce mailing list
 test-annou...@lists.fedoraproject.org
 https://admin.fedoraproject.org/mailman/listinfo/test-announce
 --
 devel mailing list
 devel@lists.fedoraproject.org
 https://admin.fedoraproject.org/mailman/listinfo/devel



-- 
Twitter: http://twitter.com/znmeb; Computational Journalism Publishers Workbench
http://j.mp/CompJournBench/

I am not an IP address! I am a free man!
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Package review statistics: 2013-04-16 - 2013-04-23

2013-04-22 Thread Ankur Sinha
Hi!

Here are the package review statistics for the past week, from
2013-04-16 to today, 2013-04-23. Anderson did the most reviews this
week. In total, there were 64 reviews this week.

Start Date: 2013-04-16 00:00:00
End Date: 2013-04-23 14:18:24.572433

Anderson Silva : 14

https://bugzilla.redhat.com/show_bug.cgi?id=925968  
drupal6-node_import
https://bugzilla.redhat.com/show_bug.cgi?id=925972  
drupal6-stringoverrides
https://bugzilla.redhat.com/show_bug.cgi?id=925974  
drupal6-user_badges
https://bugzilla.redhat.com/show_bug.cgi?id=925975  
drupal6-userpoints
https://bugzilla.redhat.com/show_bug.cgi?id=925976  
drupal6-userpoints_votingapi
https://bugzilla.redhat.com/show_bug.cgi?id=925978  
drupal6-vertical_tabs
https://bugzilla.redhat.com/show_bug.cgi?id=925979  
drupal6-views_customfield
https://bugzilla.redhat.com/show_bug.cgi?id=925980  
drupal6-views_datasource
https://bugzilla.redhat.com/show_bug.cgi?id=925982  
drupal6-vote_up_down
https://bugzilla.redhat.com/show_bug.cgi?id=925984  
drupal6-wikitools
https://bugzilla.redhat.com/show_bug.cgi?id=925989  drupal6-devel
https://bugzilla.redhat.com/show_bug.cgi?id=925990  
drupal6-path_redirect
https://bugzilla.redhat.com/show_bug.cgi?id=925991  
drupal6-messaging
https://bugzilla.redhat.com/show_bug.cgi?id=925995  
drupal6-notifications


Petr Šabata : 7

https://bugzilla.redhat.com/show_bug.cgi?id=947454  
perl-ExtUtils-InstallPaths
https://bugzilla.redhat.com/show_bug.cgi?id=951396  
perl-JSON-Pointer
https://bugzilla.redhat.com/show_bug.cgi?id=951874  
perl-DBD-Firebird
https://bugzilla.redhat.com/show_bug.cgi?id=952544  perl-Object-Tiny
https://bugzilla.redhat.com/show_bug.cgi?id=952555  
perl-Getopt-Lucid
https://bugzilla.redhat.com/show_bug.cgi?id=952563  
perl-App-mymeta_requires
https://bugzilla.redhat.com/show_bug.cgi?id=952579  perl-IO-Event


T.C. Hollingsworth : 5

https://bugzilla.redhat.com/show_bug.cgi?id=907018  stbi
https://bugzilla.redhat.com/show_bug.cgi?id=907027  rapidxml
https://bugzilla.redhat.com/show_bug.cgi?id=907213  lmfit
https://bugzilla.redhat.com/show_bug.cgi?id=907261  poly2tri
https://bugzilla.redhat.com/show_bug.cgi?id=953379  tipcutils


Michal Srb : 3

https://bugzilla.redhat.com/show_bug.cgi?id=859110  
glassfish-management-api
https://bugzilla.redhat.com/show_bug.cgi?id=859112  glassfish-gmbal
https://bugzilla.redhat.com/show_bug.cgi?id=859114  grizzly


gil cattaneo : 3

https://bugzilla.redhat.com/show_bug.cgi?id=920037  maven-jsf-plugin
https://bugzilla.redhat.com/show_bug.cgi?id=920038  infomas-asl
https://bugzilla.redhat.com/show_bug.cgi?id=920039  atmosphere


Brendan Jones : 2

https://bugzilla.redhat.com/show_bug.cgi?id=947049  qxkb
https://bugzilla.redhat.com/show_bug.cgi?id=952632  qtermwidget


Fabian Affolter : 2

https://bugzilla.redhat.com/show_bug.cgi?id=922708  supybot-irccat
https://bugzilla.redhat.com/show_bug.cgi?id=954100  sendxmpp


Mario Blättermann : 2

https://bugzilla.redhat.com/show_bug.cgi?id=915427  
python-zc-customdoctests
https://bugzilla.redhat.com/show_bug.cgi?id=953384  Review


Orion Poplawski : 2

https://bugzilla.redhat.com/show_bug.cgi?id=815566  mybatis
https://bugzilla.redhat.com/show_bug.cgi?id=954134  mybatis-parent


Paulo Andrade : 2

https://bugzilla.redhat.com/show_bug.cgi?id=903428  lfsc
https://bugzilla.redhat.com/show_bug.cgi?id=927477  remake


Pierre-YvesChibon : 2

https://bugzilla.redhat.com/show_bug.cgi?id=951777  python-pygal
https://bugzilla.redhat.com/show_bug.cgi?id=952141  python-mccabe


Robert Kuska : 2

https://bugzilla.redhat.com/show_bug.cgi?id=950907  python-jedi
https://bugzilla.redhat.com/show_bug.cgi?id=952093  
python-wtf-peewee


Dan Mashal : 1

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


Eugene A. Pivnev : 1

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


Greg Bailey : 1

https://bugzilla.redhat.com/show_bug.cgi?id=912152  lua-event


Jamie Nguyen : 1

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


Jared Smith : 1

https://bugzilla.redhat.com/show_bug.cgi?id=91  
php-pecl-zendopcache


Jaromír Cápík : 1

https://bugzilla.redhat.com/show_bug.cgi?id=750902  java-sleep


Jerry James : 1

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


Lokesh Mandvekar : 1

https://bugzilla.redhat.com/show_bug.cgi?id=949214  python-iptools


Mario Ceresa : 1


Re: Expanding the list of Hardened Packages

2013-04-22 Thread Conrad Meyer
On Tue, 16 Apr 2013 14:05:39 +0200
Florian Weimer fwei...@redhat.com wrote:

 On 04/15/2013 08:17 PM, Miloslav Trmač wrote:
  Sure, moving away from C/C++ does not make programs
  completely secure; however, on average, C/C++ programs
  are noticeably less secure (because most vulnerabilities
  that can happen in higher-level languages can also happen
  in C, but not the other way around).
 
 To illustrate this point, here's a fairly concrete
 example:  If you have got a program that is written in a
 memory-safe language which also provides some form of
 encapsulation, it is possible to demonstrate convincingly
 (*) that a software module which provides an
 encryption/decryption service never leaks the key
 material.  If there is no memory safety, other code in the
 program could peek at the key bits, and encapsulation is no
 longer guaranteed.  What should be a local property of the
 module now turns into a global property of the program,
 making review more difficult.
 
 (*) As soon as cryptography is involved, mathematically
 rigorous results are the exception.
 

Memory-safe languages don't protect against key material
being left un-zeroed in pages, nor against side-channel
attacks due to non-constant operation timing, power, etc.
Sure there is a certain class of problems you aren't going to
get in Python that you are in C, but it's not a panacea.

Conrad
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

File ExtUtils-MakeMaker-6.66.tar.gz uploaded to lookaside cache by ppisar

2013-04-22 Thread Petr Pisar
A file has been added to the lookaside cache for perl-ExtUtils-MakeMaker:

aca56039a78a3d0369aea0b3348aa2b2  ExtUtils-MakeMaker-6.66.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-ExtUtils-MakeMaker] 6.66 bump

2013-04-22 Thread Petr Pisar
commit e7e6a87dcd7bacc586553fd937fc287bdaa3baef
Author: Petr Písař ppi...@redhat.com
Date:   Mon Apr 22 10:08:42 2013 +0200

6.66 bump

 .gitignore   |1 +
 perl-ExtUtils-MakeMaker.spec |9 ++---
 sources  |2 +-
 3 files changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d6e103d..eeb8cb5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /ExtUtils-MakeMaker-6.62.tar.gz
 /ExtUtils-MakeMaker-6.63_02.tar.gz
 /ExtUtils-MakeMaker-6.64.tar.gz
+/ExtUtils-MakeMaker-6.66.tar.gz
diff --git a/perl-ExtUtils-MakeMaker.spec b/perl-ExtUtils-MakeMaker.spec
index 81531b5..fddb156 100644
--- a/perl-ExtUtils-MakeMaker.spec
+++ b/perl-ExtUtils-MakeMaker.spec
@@ -1,14 +1,14 @@
 %global cpan_name ExtUtils-MakeMaker
-%global cpan_version 6.64
+%global cpan_version 6.66
 
 Name:   perl-%{cpan_name}
 Version:%(echo '%{cpan_version}' | tr _ .)
-Release:2%{?dist}
+Release:1%{?dist}
 Summary:Create a module Makefile
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/%{cpan_name}/
-Source0:
http://www.cpan.org/authors/id/M/MS/MSCHWERN/%{cpan_name}-%{cpan_version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/B/BI/BINGOS/%{cpan_name}-%{cpan_version}.tar.gz
 # Do not set RPATH to perl shared-library modules by default. Bug #773622.
 # This is copy from `perl' package. This is distributor extension.
 Patch0: %{cpan_name}-6.64-USE_MM_LD_RUN_PATH.patch
@@ -89,6 +89,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Apr 22 2013 Petr Pisar ppi...@redhat.com - 6.66-1
+- 6.66 bump
+
 * Tue Jan 29 2013 Petr Pisar ppi...@redhat.com - 6.64-2
 - Run-require POD convertors to get manual pages when building other packages
 
diff --git a/sources b/sources
index 76aad0e..9765d44 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-852339e7c219263cdfca93a7e2dc210d  ExtUtils-MakeMaker-6.64.tar.gz
+aca56039a78a3d0369aea0b3348aa2b2  ExtUtils-MakeMaker-6.66.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File Probe-Perl-0.02.tar.gz uploaded to lookaside cache by psabata

2013-04-22 Thread Petr Šabata
A file has been added to the lookaside cache for perl-Probe-Perl:

e719323ef5cb22ab08e954f5868d8c6b  Probe-Perl-0.02.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Probe-Perl] 0.02 bump

2013-04-22 Thread Petr Šabata
commit 9a3ba752d1b4cb79a9fbd8a2be8675d6275d05f1
Author: Petr Šabata con...@redhat.com
Date:   Mon Apr 22 10:12:01 2013 +0200

0.02 bump

 .gitignore   |1 +
 perl-Probe-Perl.spec |   27 ++-
 sources  |2 +-
 3 files changed, 20 insertions(+), 10 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 4015e66..97a1587 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 Probe-Perl-0.01.tar.gz
+/Probe-Perl-0.02.tar.gz
diff --git a/perl-Probe-Perl.spec b/perl-Probe-Perl.spec
index 6d9e7a9..4aa8c43 100644
--- a/perl-Probe-Perl.spec
+++ b/perl-Probe-Perl.spec
@@ -1,19 +1,24 @@
 Name:   perl-Probe-Perl
-Version:0.01
-Release:14%{?dist}
+Version:0.02
+Release:1%{?dist}
 Summary:Information about the currently running perl
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Probe-Perl/
 Source0:
http://www.cpan.org/authors/id/K/KW/KWILLIAMS/Probe-Perl-%{version}.tar.gz
 BuildArch:  noarch
-BuildRequires:  perl(Module::Build)
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
 # Run-time:
 BuildRequires:  perl(Config)
 BuildRequires:  perl(File::Spec)
 # Tests:
+BuildRequires:  perl(English)
 BuildRequires:  perl(Test)
-Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+BuildRequires:  perl(Test::More)
+Requires:   perl(:MODULE_COMPAT_%(eval $(perl -V:version); echo 
$version))
 
 %description
 This module provides methods for obtaining information about the currently
@@ -24,15 +29,16 @@ Module::Build project, but has been externalized here for 
general use.
 %setup -q -n Probe-Perl-%{version}
 
 %build
-%{__perl} Build.PL installdirs=vendor
-./Build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %install
-./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
-%{_fixperms} $RPM_BUILD_ROOT/*
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} +
+%{_fixperms} %{buildroot}/*
 
 %check
-./Build test
+make test
 
 %files
 %doc Changes README
@@ -40,6 +46,9 @@ Module::Build project, but has been externalized here for 
general use.
 %{_mandir}/man3/*
 
 %changelog
+* Mon Apr 22 2013 Petr Šabata con...@redhat.com - 0.02-1
+- 0.02 bump
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.01-14
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 
diff --git a/sources b/sources
index 11b44b1..6b7b7bc 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b6f613a7d07dde568a0d4b9570de47c3  Probe-Perl-0.01.tar.gz
+e719323ef5cb22ab08e954f5868d8c6b  Probe-Perl-0.02.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 954291] perl-Probe-Perl-0.02 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=954291

Petr Šabata psab...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Probe-Perl-0.02-1.fc20
 Resolution|--- |RAWHIDE
Last Closed||2013-04-22 04:13:28

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=SBuYXtRB6ha=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 954288] perl-ExtUtils-MakeMaker-6.66 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=954288

Petr Pisar ppi...@redhat.com changed:

   What|Removed |Added

 Status|NEW |CLOSED
   Fixed In Version||perl-ExtUtils-MakeMaker-6.6
   ||6-1.fc20
 Resolution|--- |RAWHIDE
Last Closed||2013-04-22 04:22:06

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=CQ5MaRJw0Ta=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File MooseX-AttributeShortcuts-0.019.tar.gz uploaded to lookaside cache by ppisar

2013-04-22 Thread Petr Pisar
A file has been added to the lookaside cache for perl-MooseX-AttributeShortcuts:

eef4905f87832b270d0d5cb5ef582f49  MooseX-AttributeShortcuts-0.019.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 954290] perl-MooseX-AttributeShortcuts-0.019 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=954290

Petr Pisar ppi...@redhat.com changed:

   What|Removed |Added

 Depends On||954319

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=aIh5mO3lSNa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 954346] New: Upgrade to new upstream version

2013-04-22 Thread bugzilla
Product: Fedora EPEL
https://bugzilla.redhat.com/show_bug.cgi?id=954346

Bug ID: 954346
   Summary: Upgrade to new upstream version
   Product: Fedora EPEL
   Version: el6
 Component: stompclt
  Severity: unspecified
  Priority: unspecified
  Assignee: massimo.pala...@gmail.com
  Reporter: lionel.c...@cern.ch
QA Contact: extras...@fedoraproject.org
CC: massimo.pala...@gmail.com,
perl-devel@lists.fedoraproject.org
  Category: ---

The latest version of stompclt is now 0.9.

This is the version to use everywhere. Please upgrade in EPEL.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=GuCbxvqitaa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Bio-ASN1-EntrezGene

2013-04-22 Thread buildsys


perl-Bio-ASN1-EntrezGene has broken dependencies in the rawhide tree:
On x86_64:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
On i386:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Bio-SamTools

2013-04-22 Thread buildsys


perl-Bio-SamTools has broken dependencies in the rawhide tree:
On x86_64:
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires 
perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires perl(Bio::PrimarySeq)
On i386:
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::PrimarySeq)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Math-Clipper

2013-04-22 Thread buildsys


perl-Math-Clipper has broken dependencies in the rawhide tree:
On x86_64:
perl-Math-Clipper-1.17-3.fc19.x86_64 requires 
libpolyclipping.so.5()(64bit)
On i386:
perl-Math-Clipper-1.17-3.fc19.i686 requires libpolyclipping.so.5
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File DateTime-TimeZone-1.59.tar.gz uploaded to lookaside cache by iarnell

2013-04-22 Thread Iain Arnell
A file has been added to the lookaside cache for perl-DateTime-TimeZone:

9036b3f388b88a41c074f94b78ea3355  DateTime-TimeZone-1.59.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File stompclt-0.9.tar.gz uploaded to lookaside cache by mpaladin

2013-04-22 Thread mpaladin
A file has been added to the lookaside cache for stompclt:

29a21e4a900a1356a758a3708b293c52  stompclt-0.9.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-DateTime-TimeZone] update to 1.59

2013-04-22 Thread Iain Arnell
commit 9bd223ba2f9b66266f1197daedc58548554e119c
Author: Iain Arnell iarn...@gmail.com
Date:   Mon Apr 22 05:40:49 2013 -0600

update to 1.59

 .gitignore  |1 +
 perl-DateTime-TimeZone.spec |5 -
 sources |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 93b319e..a2b4cd7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,3 +17,4 @@
 /DateTime-TimeZone-1.56.tar.gz
 /DateTime-TimeZone-1.57.tar.gz
 /DateTime-TimeZone-1.58.tar.gz
+/DateTime-TimeZone-1.59.tar.gz
diff --git a/perl-DateTime-TimeZone.spec b/perl-DateTime-TimeZone.spec
index 94cb8bb..f72c76c 100644
--- a/perl-DateTime-TimeZone.spec
+++ b/perl-DateTime-TimeZone.spec
@@ -1,5 +1,5 @@
 Name:   perl-DateTime-TimeZone
-Version:1.58
+Version:1.59
 Release:1%{?dist}
 Summary:Time zone object base class and factory
 License:GPL+ or Artistic
@@ -79,6 +79,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Apr 22 2013 Iain Arnell iarn...@gmail.com 1.59-1
+- update to latest upstream version - Olson 2013c
+
 * Wed Mar 20 2013 Iain Arnell iarn...@gmail.com 1.58-1
 - update to latest upstream version - Olson 2013b
 
diff --git a/sources b/sources
index 868fcef..6cf99fe 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a815c7a18b3386ff2d2f6bcadab61fb6  DateTime-TimeZone-1.58.tar.gz
+9036b3f388b88a41c074f94b78ea3355  DateTime-TimeZone-1.59.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-DateTime-TimeZone/f19] update to 1.59

2013-04-22 Thread Iain Arnell
Summary of changes:

  9bd223b... update to 1.59 (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-DateTime-TimeZone/f18] update to 1.59

2013-04-22 Thread Iain Arnell
Summary of changes:

  9bd223b... update to 1.59 (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-DateTime-TimeZone/f17] update to 1.59

2013-04-22 Thread Iain Arnell
Summary of changes:

  9bd223b... update to 1.59 (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[stompclt] Update to 0.9, rhbz #954346.

2013-04-22 Thread mpaladin
commit f0f248ea5a377645fd116a4eea53d72b6f02fec3
Author: Massimo massimo.pala...@gmail.com
Date:   Mon Apr 22 13:48:59 2013 +0200

Update to 0.9, rhbz #954346.

 .gitignore|1 +
 sources   |2 +-
 stompclt.spec |5 -
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 885340c..182d4fe 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
 /stompclt-0.6.tar.gz
 /stompclt-0.7.tar.gz
 /stompclt-0.8.tar.gz
+/stompclt-0.9.tar.gz
diff --git a/sources b/sources
index 777e15e..44fe772 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-4bee00650ccaefc2f26ba9c1ac6371b7  stompclt-0.8.tar.gz
+29a21e4a900a1356a758a3708b293c52  stompclt-0.9.tar.gz
diff --git a/stompclt.spec b/stompclt.spec
index 82c8797..ee33e92 100644
--- a/stompclt.spec
+++ b/stompclt.spec
@@ -1,6 +1,6 @@
 Summary:   Versatile STOMP client
 Name:  stompclt
-Version:   0.8
+Version:   0.9
 Release:   1%{?dist}
 URL:   http://cern.ch/lionel.cons/perl/%{name}/
 License:   GPL+ or Artistic
@@ -49,6 +49,9 @@ rm -rf %{buildroot}
 %{_mandir}/man1/%{name}.1.*
 
 %changelog
+* Mon Apr 22 2013 Massimo Paladin massimo.pala...@gmail.com 0.9-1
+- Update to 0.9, rhbz #954346.
+
 * Tue Feb 26 2013 Massimo Paladin massimo.pala...@gmail.com 0.8-1
 - Update to 0.8, rhbz #915292.
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[stompclt/el5] Update to 0.9, rhbz #954346.

2013-04-22 Thread mpaladin
Summary of changes:

  f0f248e... Update to 0.9, rhbz #954346. (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[stompclt/el6] Update to 0.9, rhbz #954346.

2013-04-22 Thread mpaladin
Summary of changes:

  f0f248e... Update to 0.9, rhbz #954346. (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[stompclt/f17] Update to 0.9, rhbz #954346.

2013-04-22 Thread mpaladin
Summary of changes:

  f0f248e... Update to 0.9, rhbz #954346. (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[stompclt/f18] Update to 0.9, rhbz #954346.

2013-04-22 Thread mpaladin
Summary of changes:

  f0f248e... Update to 0.9, rhbz #954346. (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[stompclt/f19] Update to 0.9, rhbz #954346.

2013-04-22 Thread mpaladin
Summary of changes:

  f0f248e... Update to 0.9, rhbz #954346. (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Bio-SamTools

2013-04-22 Thread buildsys


perl-Bio-SamTools has broken dependencies in the F-19 tree:
On x86_64:
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires 
perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires perl(Bio::PrimarySeq)
On i386:
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::PrimarySeq)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Bio-ASN1-EntrezGene

2013-04-22 Thread buildsys


perl-Bio-ASN1-EntrezGene has broken dependencies in the F-19 tree:
On x86_64:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
On i386:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Math-Clipper

2013-04-22 Thread buildsys


perl-Math-Clipper has broken dependencies in the F-19 tree:
On x86_64:
perl-Math-Clipper-1.17-3.fc19.x86_64 requires 
libpolyclipping.so.5()(64bit)
On i386:
perl-Math-Clipper-1.17-3.fc19.i686 requires libpolyclipping.so.5
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 954287] New: perl-DateTime-TimeZone-1.59 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=954287

Bug ID: 954287
   Summary: perl-DateTime-TimeZone-1.59 is available
   Product: Fedora
   Version: rawhide
 Component: perl-DateTime-TimeZone
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
  Assignee: iarn...@gmail.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: iarn...@gmail.com, perl-devel@lists.fedoraproject.org
  Category: ---

Latest upstream release: 1.59
Current version in Fedora Rawhide: 1.58
URL: http://search.cpan.org/dist/DateTime-TimeZone/

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=vz3boT7a9ga=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 954285] New: perl-App-cpanminus-1.6902 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=954285

Bug ID: 954285
   Summary: perl-App-cpanminus-1.6902 is available
   Product: Fedora
   Version: rawhide
 Component: perl-App-cpanminus
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
  Assignee: mmasl...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org
  Category: ---

Latest upstream release: 1.6902
Current version in Fedora Rawhide: 1.6108
URL: http://search.cpan.org/dist/App-cpanminus/

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=HryzP6KxMza=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 954288] New: perl-ExtUtils-MakeMaker-6.66 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=954288

Bug ID: 954288
   Summary: perl-ExtUtils-MakeMaker-6.66 is available
   Product: Fedora
   Version: rawhide
 Component: perl-ExtUtils-MakeMaker
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
  Assignee: ppi...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Category: ---

Latest upstream release: 6.66
Current version in Fedora Rawhide: 6.64
URL: http://search.cpan.org/dist/ExtUtils-MakeMaker/

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=dmwYQfEwHIa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 954289] New: perl-Log-Log4perl-1.41 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=954289

Bug ID: 954289
   Summary: perl-Log-Log4perl-1.41 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Log-Log4perl
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
  Assignee: mmasl...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org
  Category: ---

Latest upstream release: 1.41
Current version in Fedora Rawhide: 1.40
URL: http://search.cpan.org/dist/Log-Log4perl/

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=bwJJey4pS7a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 954290] New: perl-MooseX-AttributeShortcuts-0.019 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=954290

Bug ID: 954290
   Summary: perl-MooseX-AttributeShortcuts-0.019 is available
   Product: Fedora
   Version: rawhide
 Component: perl-MooseX-AttributeShortcuts
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
  Assignee: ppi...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Category: ---

Latest upstream release: 0.019
Current version in Fedora Rawhide: 0.017
URL: http://search.cpan.org/dist/MooseX-AttributeShortcuts/

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=iWojeISvCKa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 954291] New: perl-Probe-Perl-0.02 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=954291

Bug ID: 954291
   Summary: perl-Probe-Perl-0.02 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Probe-Perl
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
  Assignee: mmasl...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Category: ---

Latest upstream release: 0.02
Current version in Fedora Rawhide: 0.01
URL: http://search.cpan.org/dist/Probe-Perl/

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=DN7lviD0Mpa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 954291] perl-Probe-Perl-0.02 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=954291

Petr Šabata psab...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||psab...@redhat.com
   Assignee|mmasl...@redhat.com |psab...@redhat.com

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=1EfnYuW0jOa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 954285] perl-App-cpanminus-1.6902 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=954285

Jitka Plesnikova jples...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||jples...@redhat.com
   Assignee|mmasl...@redhat.com |jples...@redhat.com

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=P6aq5XlUmMa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 955210] New: perl-Log-Message: use explicit mode specified in open

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=955210

Bug ID: 955210
   Summary: perl-Log-Message: use explicit mode specified in open
   Product: Fedora
   Version: rawhide
 Component: perl-Log-Message
  Severity: unspecified
  Priority: unspecified
  Assignee: ppi...@redhat.com
  Reporter: fwei...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Category: ---

In Log/Message/Config.pm, sub _read_config_file, I think it's appropriate to
specify a  mode indicator to open, as in:

$FH-open($file) or (

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=I0tDHkjnUba=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 955210] perl-Log-Message: use explicit mode specified in open

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=955210

Florian Weimer fwei...@redhat.com changed:

   What|Removed |Added

 Blocks||955212

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=Zr5xlATSWAa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File Math-Clipper-1.19.tar.gz uploaded to lookaside cache by churchyard

2013-04-22 Thread Miro Hrončok
A file has been added to the lookaside cache for perl-Math-Clipper:

a2533e57ac6ad7e2e154c00e8db0ce36  Math-Clipper-1.19.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Math-Clipper] New version 1.19 compatible with polyclipping 5.1.x

2013-04-22 Thread Miro Hrončok
commit 6f0a0b4d700287e3a809650f2e15e8595d3d43c9
Author: Miro Hrončok m...@hroncok.cz
Date:   Mon Apr 22 19:08:54 2013 +0200

New version 1.19 compatible with polyclipping 5.1.x

 .gitignore |1 +
 ...s.patch = perl-Math-Clipper-no-c-sources.patch |   29 +++-
 perl-Math-Clipper.spec |   12 +---
 sources|2 +-
 4 files changed, 26 insertions(+), 18 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 498c508..24302c0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /Math-Clipper-1.17.tar.gz
+/Math-Clipper-1.19.tar.gz
diff --git a/perl-Math-Clipper-1.16-1.no-c-sources.patch 
b/perl-Math-Clipper-no-c-sources.patch
similarity index 58%
rename from perl-Math-Clipper-1.16-1.no-c-sources.patch
rename to perl-Math-Clipper-no-c-sources.patch
index c237eee..ddccc87 100644
--- a/perl-Math-Clipper-1.16-1.no-c-sources.patch
+++ b/perl-Math-Clipper-no-c-sources.patch
@@ -1,7 +1,8 @@
-diff -ru a/Build.PL b/Build.PL
 a/Build.PL 2012-12-26 15:31:43.0 +0100
-+++ b/Build.PL 2012-12-29 15:49:20.306844474 +0100
-@@ -14,6 +14,8 @@
+diff --git a/Build.PL b/Build.PL
+index 20af712..9b28fdb 100644
+--- a/Build.PL
 b/Build.PL
+@@ -14,6 +14,8 @@ my $build = Module::Build::WithXSpp-new(
# _GLIBCXX_USE_C99 : to get the long long type for g++
# HAS_BOOL : stops Perl/lib/CORE/handy.h from doing #  define bool 
char for MSVC
extra_compiler_flags = [qw(-D_GLIBCXX_USE_C99 -DHAS_BOOL)],
@@ -10,21 +11,23 @@ diff -ru a/Build.PL b/Build.PL
# Provides extra C typemaps that are auto-merged
extra_typemap_modules = {
  'ExtUtils::Typemaps::Default' = '0.05',
-diff -ru a/MANIFEST b/MANIFEST
 a/MANIFEST 2012-12-26 15:31:43.0 +0100
-+++ b/MANIFEST 2012-12-29 15:50:54.963555010 +0100
-@@ -4,8 +4,6 @@
+diff --git a/MANIFEST b/MANIFEST
+index b2dfe19..505af7c 100644
+--- a/MANIFEST
 b/MANIFEST
+@@ -4,8 +4,6 @@ lib/Math/Clipper.pm
  MANIFEST  This list of files
  MANIFEST.SKIP
  META.yml
 -src/clipper.cpp
 -src/clipper.hpp
  src/myinit.h
+ src/offset.h
  src/poly2av.h
- src/ppport.h
-diff -ru a/src/myinit.h b/src/myinit.h
 a/src/myinit.h 2012-12-26 15:31:43.0 +0100
-+++ b/src/myinit.h 2012-12-29 15:48:17.674024173 +0100
+diff --git a/src/myinit.h b/src/myinit.h
+index ab37d12..6dc22b2 100644
+--- a/src/myinit.h
 b/src/myinit.h
 @@ -1,7 +1,7 @@
  #ifndef __clipper_myinit_h_
  #define __clipper_myinit_h_
@@ -32,5 +35,5 @@ diff -ru a/src/myinit.h b/src/myinit.h
 -#include clipper.hpp
 +#include polyclipping/clipper.hpp
  
- #include poly2av.h
+ using namespace ClipperLib;
  
diff --git a/perl-Math-Clipper.spec b/perl-Math-Clipper.spec
index 666df8c..b0f199d 100644
--- a/perl-Math-Clipper.spec
+++ b/perl-Math-Clipper.spec
@@ -1,12 +1,12 @@
 Name:   perl-Math-Clipper
-Version:1.17
-Release:3%{?dist}
+Version:1.19
+Release:1%{?dist}
 Summary:Perl wrapper around Clipper library
 License:Boost
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Math-Clipper/
 Source0:
http://www.cpan.org/authors/id/A/AA/AAR/Math-Clipper-%{version}.tar.gz
-Patch0: %{name}-1.16-1.no-c-sources.patch
+Patch0: %{name}-no-c-sources.patch
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(Config)
 BuildRequires:  perl(constant)
@@ -17,7 +17,7 @@ BuildRequires:  perl(Module::Build::WithXSpp) = 0.10
 BuildRequires:  perl(Test::Deep)
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(XSLoader)
-BuildRequires:  polyclipping-devel = 5.0.3
+BuildRequires:  polyclipping-devel = 5.1
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
 
 %{?perl_default_filter} # Filters (not)shared c libs
@@ -51,6 +51,10 @@ find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f 
{} \;
 %{_mandir}/man3/*
 
 %changelog
+* Mon Apr 22 2013 Miro Hrončok mhron...@redhat.com - 1.19-1
+- New version compatible with polyclipping 5.1.x
+- Patch to don't use bundled C sources updated and renamed
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.17-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 
diff --git a/sources b/sources
index e8cddf9..a9c5a7c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-1fcba1c1106c4e56c2f4d740f97619c4  Math-Clipper-1.17.tar.gz
+a2533e57ac6ad7e2e154c00e8db0ce36  Math-Clipper-1.19.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Math-Clipper/f19] New version 1.19 compatible with polyclipping 5.1.x

2013-04-22 Thread Miro Hrončok
Summary of changes:

  6f0a0b4... New version 1.19 compatible with polyclipping 5.1.x (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[slic3r] Slic3r 0.9.9

2013-04-22 Thread Miro Hrončok
Summary of changes:

  5429fab... Slic3r 0.9.9 (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 947755] perl-Filter-1.49 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=947755

--- Comment #5 from Fedora Update System upda...@fedoraproject.org ---
perl-Filter-1.49-1.fc18 has been pushed to the Fedora 18 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.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=SBwdd0r2vwa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 864102] Bad precedence in library version check

2013-04-22 Thread bugzilla
Product: Fedora EPEL
https://bugzilla.redhat.com/show_bug.cgi?id=864102

--- Comment #8 from Fedora Update System upda...@fedoraproject.org ---
perl-Net-SSH2-0.45-4.el6 has been pushed to the Fedora EPEL 6 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=6rjxTixIAja=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 781417] perl-XML-Writer-0.621 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=781417

--- Comment #5 from Fedora Update System upda...@fedoraproject.org ---
perl-XML-Writer-0.621-1.fc19 has been pushed to the Fedora 19 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.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=z4aKpDlsLoa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 952185] perl-Wx-0.9921 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=952185

--- Comment #3 from Fedora Update System upda...@fedoraproject.org ---
perl-Wx-0.9921-1.fc19 has been pushed to the Fedora 19 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.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=6VDqHRWUZaa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 952185] perl-Wx-0.9921 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=952185

Fedora Update System upda...@fedoraproject.org changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-22 23:45:20

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=9tPk5xcalJa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 910278] perl-Wx-0.9918 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=910278

--- Comment #5 from Fedora Update System upda...@fedoraproject.org ---
perl-Wx-0.9921-1.fc19 has been pushed to the Fedora 19 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.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=mZ6UEQzPtMa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 910278] perl-Wx-0.9918 is available

2013-04-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=910278

Fedora Update System upda...@fedoraproject.org changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-22 23:45:30

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=r0VVhxTUY0a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[389-devel] Please Review: Add git commit hash to developer rpm build name

2013-04-22 Thread Nathan Kinder


From 52fb682ceb0b1f03de26b6f9d56a8ee2476d9422 Mon Sep 17 00:00:00 2001
From: Nathan Kinder nkin...@redhat.com
Date: Mon, 22 Apr 2013 13:34:44 -0700
Subject: [PATCH] Add git commit hash to developer rpm build names

We need to set the srcdir variable in order for the most recent
git hash to be determined by VERSION.sh.  This patch will result
in deveoper RPM builds having the git commit hash in the release
field.
---
 rpm/rpmverrel.sh | 4 
 1 file changed, 4 insertions(+)

diff --git a/rpm/rpmverrel.sh b/rpm/rpmverrel.sh
index 064b052..86b808e 100755
--- a/rpm/rpmverrel.sh
+++ b/rpm/rpmverrel.sh
@@ -1,5 +1,9 @@
 #!/bin/sh
 
+# Set srcdir so VERSION.sh is able to
+# determine the last git commit hash.
+srcdir=`pwd`
+
 # Source VERSION.sh to set the version
 # and release environment variables.
 source ./VERSION.sh
-- 
1.8.1.4

--
389-devel mailing list
389-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-devel

Re: [389-devel] Please Review: Add git commit hash to developer rpm build name

2013-04-22 Thread Noriko Hosoi

Nathan Kinder wrote:




--
389-devel mailing list
389-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-devel

ack!
--
389-devel mailing list
389-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-devel

[389-devel] Please review: Ticket #47341 - logconv.pl -m time calculation is wrong

2013-04-22 Thread Rich Megginson

https://fedorahosted.org/389/attachment/ticket/47341/0001-Ticket-47341-logconv.pl-m-time-calculation-is-wrong.patch
--
389-devel mailing list
389-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-devel

Review Request 21: Milestone Update List Generates HTTP 500 Error

2013-04-22 Thread Martin Krizek

---
This is an automatically generated e-mail. To reply, visit:
http://reviewboard-tflink.rhcloud.com/r/21/
---

Review request for blockerbugs.


Bugs: 382
https://fedorahosted.org/fedora-qa/ticket/382


Repository: blockerbugs


Description
---

commit 9df9a31b61b4e952a0bb5f5c1c56dc62ac9923a6
Author: Martin Krizek mkri...@redhat.com
Date:   Mon Apr 22 09:50:32 2013 +0200

Replace NTH with FE in the rest of places.

commit 39cef0d8cfe416ed401174c8c4a5a51b3ca0af2d
Author: Martin Krizek mkri...@redhat.com
Date:   Mon Apr 22 09:37:20 2013 +0200

Fix out of date field names for bug objects


Diffs
-

  docs/source/index.rst f07f013268aaa01cec780efec6e320c6cb267339 
  docs/source/development.rst 35b1b34a6b81d8d35e91fb11d32b35dc5d8269a9 
  blockerbugs/util/bz_interface.py 7dedce924c2f96110ed98bd311b870e03e617887 
  blockerbugs/templates/propose_bug.html 
7c1ac3d1f7202ad96214d064145f026b251754d1 
  blockerbugs/__init__.py aebfe96cc9268f6bbeab3d0bb0c9ae3a4218986b 

Diff: http://reviewboard-tflink.rhcloud.com/r/21/diff/


Testing
---


Thanks,

Martin Krizek

___
qa-devel mailing list
qa-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/qa-devel