[Bug 909471] Review Request: rubygem-openshift-origin-auth-remote-user - OpenShift plugin for remote-user authentication

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

--- Comment #20 from Vít Ondruch  ---
(In reply to comment #12)
> OK, at this point I'm going to have to say "really?"

Troy, although it may be annoying, I strongly encourage everybody to include
test suite, even some basic one. It helps a lot during times like this, i.e.
new Ruby is released and there is done automatic rebuild, or even during mass
rebuild of Fedora, since your package may become failing anytime, due to
changed dependencies, etc. So it is safe net for every Fedora user.

I as a maintainer am glad, if the test suite fails during such occasion and I
am happy to fix any issue it uncovers. Naturally, I am happier if I see that
although there were changes, the test suite still passes.

Also, please note, I am not sure how much are you involved in upstream
development of this package, but this is upstream question IMO, so there should
be no hard feeling. It should be no blocker, but I have to ask.

> I have to wait months at a time in between comments.

Sorry for that, but you can always ping me.

-- 
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=41lK4v4nYD&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 923564] Review Request: NetworkManager-ssh - NetworkManager VPN plugin for SSH

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

--- Comment #29 from Dan Fruehauf  ---
Pavel,

You've followed up in the NetworkManager mailing list, however I want to make
sure the issue is clear.

Even if we patch NetworkManager - yes or no, we'll still have to suggest the
user to restart NetworkManager. If the user will have to restart
NetworkManager, do we really want the patch?

In future versions if the patch is not applied and the NetworkManager-ssh
package is downloaded after NetworkManager and the patch was not applied, a
restart will be needed. If the patch would be applied - it wouldn't require a
restart.

If someone does not perform a distribution upgrade (f18 for instance) and
updates NetworkManager with the patch and downloads NetworkManager-ssh - things
will not work until a restart of NetworkManager.

In my opinion the patch should be applied regardless, since all the known VPN
plugins are recognized in NetworkManager dbus config file, however much of a
difference it doesn't make since the current limitations will require a restart
in some cases. It wouldn't be "clean".

Please advise what you think is the best solution.

-- 
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=bqQLEeAS5i&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 905255] Review Request: open-vm-tools - Open Virtual Machine Tools

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

--- Comment #5 from Mark Mikofski  ---
use:

sudo ./configure CFLAGS=-Wno-deprecated-declarations

to remove deprecation warnings treated as errors

isntalls fine as long as you also link to libprocps.so

Of course this is a short term fix. I tried looking into replacing the
depracated functions

g_static_rw_lock_reader_lock --> g_rw_lock_reader_lock
g_static_rw_lock_reader_unlock --> g_rw_lock_reader_unlock
g_static_rw_lock_writer_lock --> g_rw_lock_writer_lock
g_static_rw_lock_writer_unlock --> g_rw_lock_writer_unlock
g_static_rw_lock_free --> g_rw_lock_free
g_static_rw_lock_init --> g_rw_lock_init

but the function signatures are not the same, so it would take an investment

-- 
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=LhJ7FGi639&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 905255] Review Request: open-vm-tools - Open Virtual Machine Tools

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

Mark Mikofski  changed:

   What|Removed |Added

 CC||bwanama...@yahoo.com

--- Comment #4 from Mark Mikofski  ---
I had the same 2 issues as Mohamed 2 and 7, although I had to make a symlink to
libproc.so --> libprocps.so to get past 2, since export
CUSTOM_PROCPS_NAME=procps didn't work. Both of these are bugs that should be
addressed upstream by open-vm-tools, if it is even being maintained anymore;
there hasn't been a new release in a while.

here's my make traceback:
fileLogger.c: In function 'FileLoggerLog':
fileLogger.c:257:4: error: 'g_static_rw_lock_reader_lock' is deprecated
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:210): Use
'g_rw_lock_reader_lock' instead [-Werror=deprecated-declarations]
fileLogger.c:268:7: error: 'g_static_rw_lock_reader_unlock' is deprecated
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:216): Use
'g_rw_lock_reader_unlock' instead [-Werror=deprecated-declarations]
fileLogger.c:269:7: error: 'g_static_rw_lock_writer_lock' is deprecated
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:219): Use
'g_rw_lock_writer_lock' instead [-Werror=deprecated-declarations]
fileLogger.c:273:7: error: 'g_static_rw_lock_writer_unlock' is deprecated
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:225): Use
'g_rw_lock_writer_unlock' instead [-Werror=deprecated-declarations]
fileLogger.c:274:7: error: 'g_static_rw_lock_reader_lock' is deprecated
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:210): Use
'g_rw_lock_reader_lock' instead [-Werror=deprecated-declarations]
fileLogger.c:291:13: error: 'g_static_rw_lock_reader_unlock' is deprecated
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:216): Use
'g_rw_lock_reader_unlock' instead [-Werror=deprecated-declarations]
fileLogger.c:292:13: error: 'g_static_rw_lock_writer_lock' is deprecated
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:219): Use
'g_rw_lock_writer_lock' instead [-Werror=deprecated-declarations]
fileLogger.c:298:13: error: 'g_static_rw_lock_writer_unlock' is deprecated
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:225): Use
'g_rw_lock_writer_unlock' instead [-Werror=deprecated-declarations]
fileLogger.c:299:13: error: 'g_static_rw_lock_reader_lock' is deprecated
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:210): Use
'g_rw_lock_reader_lock' instead [-Werror=deprecated-declarations]
fileLogger.c:309:4: error: 'g_static_rw_lock_reader_unlock' is deprecated
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:216): Use
'g_rw_lock_reader_unlock' instead [-Werror=deprecated-declarations]
fileLogger.c: In function 'FileLoggerDestroy':
fileLogger.c:331:4: error: 'g_static_rw_lock_free' is deprecated (declared at
/usr/include/glib-2.0/glib/deprecated/gthread.h:228): Use 'g_rw_lock_free'
instead [-Werror=deprecated-declarations]
fileLogger.c: In function 'GlibUtils_CreateFileLogger':
fileLogger.c:378:4: error: 'g_static_rw_lock_init' is deprecated (declared at
/usr/include/glib-2.0/glib/deprecated/gthread.h:207): Use 'g_rw_lock_init'
instead [-Werror=deprecated-declarations]
cc1: all warnings being treated as errors
make[2]: *** [libGlibUtils_la-fileLogger.lo] Error 1
make[2]: Leaving directory
`/home/whoami/Downloads/open-vm-tools-9.2.2-893683/lib/glibUtils'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory
`/home/whoami/Downloads/open-vm-tools-9.2.2-893683/lib'
make: *** [all-recursive] Error 1

-- 
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=CXvjRhtr7R&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 906765] Review Request: mingw-libwebp - MinGW compilation of Library and tools for the WebP format

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

Kalev Lember  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||mingw-libwebp-0.2.1-2.fc18
 Resolution|--- |NEXTRELEASE
Last Closed||2013-04-01 21:31:51

-- 
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=9yVBAHQoNY&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 947071] New Review Request: monitorix - A free, open source, lightweight system monitoring tool

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

--- Comment #2 from Christopher Meng  ---
HTML should be modified by users because html is a monthly report file which
contains:

y...@example.com
http://www.example.com";>http://www.example.com

This section must be changed by users in order to match their personal use.

For 777 permissions problem, I'll contact upstream.

Thnaks for the review! I'll upload a 2nd version later.

-- 
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=bcY38YRZhs&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 785447] Review Request: php-horde-Horde-Auth - Horde Authentication API

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

--- Comment #20 from Nick Bebout  ---
Actually

Updated

Spec URL: http://nb.fedorapeople.org/horde-reviews/php-horde-Horde-Auth.spec
SRPM URL:
http://nb.fedorapeople.org/horde-reviews/php-horde-Horde-Auth-2.0.4-2.fc17.src.rpm

-- 
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=03pWtwFXZE&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 785447] Review Request: php-horde-Horde-Auth - Horde Authentication API

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

--- Comment #19 from Nick Bebout  ---
Updated

Spec URL: http://nb.fedorapeople.org/horde-reviews/php-horde-Horde-Auth.spec
SRPM URL:
http://nb.fedorapeople.org/horde-reviews/php-horde-Horde-Auth-2.0.4-1.fc17.src.rpm

-- 
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=nC9LE5u7U2&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 927920] Review Request: php-pecl-msgpack - API for communicating with MessagePack serialization

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

Shawn Iwinski  changed:

   What|Removed |Added

 CC||shawn.iwin...@gmail.com

--- Comment #1 from Shawn Iwinski  ---
Please verify license.  msgpack/version.h lists Apache 2.

-- 
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=Fg9twn4G3K&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829021] Review Request: drupal6-media_youku - Youku Video Module for Drupal6

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

--- Comment #13 from Fedora Update System  ---
drupal6-media_youku-1.0-3.fc17 has been pushed to the Fedora 17 stable
repository.

-- 
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=N0WaU3EcsT&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829775] Review Request: drupal6-markdown - Markdown modules for drupal6

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

--- Comment #14 from Fedora Update System  ---
drupal6-markdown-1.3-1.fc18 has been pushed to the Fedora 18 stable repository.

-- 
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=IhNcHqlIk3&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 923470] Review Request: python-q - Quick and dirty python debugging output

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

--- Comment #8 from Fedora Update System  ---
python-q-1.1-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=j8ZXMwz6d2&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829067] Review Request: drupal6-imageapi - Image API Module for Drupal6

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

--- Comment #13 from Fedora Update System  ---
drupal6-imageapi-1.10-3.fc18 has been pushed to the Fedora 18 stable
repository.

-- 
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=0SQwVttkSd&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829714] Review Request: drupal6-imagecache - Image Cache module for drupal6

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

--- Comment #14 from Fedora Update System  ---
drupal6-imagecache-2.0-5.rc1.fc18 has been pushed to the Fedora 18 stable
repository.

-- 
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=9yqPjIzyAC&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 828998] Review Request: drupal6-media_vimeo - Vimeo Video Module for Drupal6

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

--- Comment #16 from Fedora Update System  ---
drupal6-media_vimeo-1.1-3.fc18 has been pushed to the Fedora 18 stable
repository.

-- 
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=ZKTudh2fkT&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829718] Review Request: drupal6-imagecache_profiles - Image cache for User Profiles for Drupal6

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

--- Comment #13 from Fedora Update System  ---
drupal6-imagecache_profiles-1.3-3.fc17 has been pushed to the Fedora 17 stable
repository.

-- 
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=r7TIqKDlDG&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 909907] Review Request: php-horde-Horde-Crypt - Horde Cryptography API

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

--- Comment #11 from Fedora Update System  ---
php-horde-Horde-Crypt-2.1.3-1.fc18 has been pushed to the Fedora 18 stable
repository.

-- 
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=cO78OTyvFF&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829718] Review Request: drupal6-imagecache_profiles - Image cache for User Profiles for Drupal6

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

--- Comment #12 from Fedora Update System  ---
drupal6-imagecache_profiles-1.3-3.fc18 has been pushed to the Fedora 18 stable
repository.

-- 
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=3zfmgacexN&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829718] Review Request: drupal6-imagecache_profiles - Image cache for User Profiles for Drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:31:39

-- 
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=0nB3txl0DX&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829775] Review Request: drupal6-markdown - Markdown modules for drupal6

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

--- Comment #13 from Fedora Update System  ---
drupal6-markdown-1.3-1.fc17 has been pushed to the Fedora 17 stable repository.

-- 
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=NJx4mEnXgx&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829775] Review Request: drupal6-markdown - Markdown modules for drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:30:41

-- 
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=S6VU4NNOeB&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 828849] Review Request: drupal6-faq - FAQ Module for Drupal6

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

--- Comment #21 from Fedora Update System  ---
drupal6-faq-1.13-6.fc17 has been pushed to the Fedora 17 stable repository.

-- 
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=InH3pPf2Gc&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829030] Review Request: drupal6-flag - Flag module for Drupal6

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

--- Comment #15 from Fedora Update System  ---
drupal6-flag-1.3-3.fc17 has been pushed to the Fedora 17 stable repository.

-- 
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=pUkr1GEtzP&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829733] Review Request: drupal6-image_resize_filter - Image Resize Filter module for Drupal6

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

--- Comment #14 from Fedora Update System  ---
drupal6-image_resize_filter-1.13-3.fc17 has been pushed to the Fedora 17 stable
repository.

-- 
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=NgHktsocyz&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 911932] Review Request: bccc - The buddycloud console client

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

Bug 911932 depends on bug 909831, which changed state.

Bug 909831 Summary: Build also python3 version of the package
https://bugzilla.redhat.com/show_bug.cgi?id=909831

   What|Removed |Added

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

-- 
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=NFdYubsbkg&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829038] Review Request: drupal6-freelinking - Freelinking module for Drupal6

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

--- Comment #17 from Fedora Update System  ---
drupal6-freelinking-3.2-2.fc18 has been pushed to the Fedora 18 stable
repository.

-- 
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=Ys5Y2pr9jj&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829730] Review Request: drupal6-imagefield - Image Field Module for Drupal6

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

--- Comment #15 from Fedora Update System  ---
drupal6-imagefield-3.10-3.fc18 has been pushed to the Fedora 18 stable
repository.

-- 
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=YDHd7jSLg8&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829030] Review Request: drupal6-flag - Flag module for Drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:27:40

-- 
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=3oHjvLtsrU&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829030] Review Request: drupal6-flag - Flag module for Drupal6

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

--- Comment #14 from Fedora Update System  ---
drupal6-flag-1.3-3.fc18 has been pushed to the Fedora 18 stable repository.

-- 
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=fhFR1rbWVY&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829750] Review Request: drupal6-insert - Insert module for Drupal6

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

--- Comment #15 from Fedora Update System  ---
drupal6-insert-1.2-2.fc18 has been pushed to the Fedora 18 stable repository.

-- 
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=jXb8ESo6BW&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829750] Review Request: drupal6-insert - Insert module for Drupal6

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

--- Comment #14 from Fedora Update System  ---
drupal6-insert-1.2-2.fc17 has been pushed to the Fedora 17 stable repository.

-- 
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=ffwBsNrFP0&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829750] Review Request: drupal6-insert - Insert module for Drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:27:10

-- 
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=wAxaFOGR1j&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 919712] Review Request: boom - Simple HTTP Load tester

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

--- Comment #15 from Fedora Update System  ---
boom-0.5-2.fc17 has been pushed to the Fedora 17 stable repository.

-- 
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=4iWaP5GzKQ&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829038] Review Request: drupal6-freelinking - Freelinking module for Drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:26:37

-- 
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=FXRBAyGZdU&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829038] Review Request: drupal6-freelinking - Freelinking module for Drupal6

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

--- Comment #16 from Fedora Update System  ---
drupal6-freelinking-3.2-2.fc17 has been pushed to the Fedora 17 stable
repository.

-- 
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=3pEvkWNcFl&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829733] Review Request: drupal6-image_resize_filter - Image Resize Filter module for Drupal6

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

--- Comment #13 from Fedora Update System  ---
drupal6-image_resize_filter-1.13-3.fc18 has been pushed to the Fedora 18 stable
repository.

-- 
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=6unYwBLjKh&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829733] Review Request: drupal6-image_resize_filter - Image Resize Filter module for Drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:26:27

-- 
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=iP5LmN83FC&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 828998] Review Request: drupal6-media_vimeo - Vimeo Video Module for Drupal6

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

--- Comment #15 from Fedora Update System  ---
drupal6-media_vimeo-1.1-3.fc17 has been pushed to the Fedora 17 stable
repository.

-- 
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=UNy7AYv4Hv&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 828998] Review Request: drupal6-media_vimeo - Vimeo Video Module for Drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:25:46

-- 
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=sMnJW0sMol&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 923470] Review Request: python-q - Quick and dirty python debugging output

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

Fedora Update System  changed:

   What|Removed |Added

 Status|VERIFIED|CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:25:33

-- 
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=1HFLQFV6gi&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 923470] Review Request: python-q - Quick and dirty python debugging output

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

--- Comment #7 from Fedora Update System  ---
python-q-1.1-1.fc17 has been pushed to the Fedora 17 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=sdWWYXWruB&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 828849] Review Request: drupal6-faq - FAQ Module for Drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:24:50

-- 
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=ME7dz608yU&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 828849] Review Request: drupal6-faq - FAQ Module for Drupal6

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

--- Comment #20 from Fedora Update System  ---
drupal6-faq-1.13-6.fc18 has been pushed to the Fedora 18 stable repository.

-- 
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=IwMdBu3C5R&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 919712] Review Request: boom - Simple HTTP Load tester

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

--- Comment #14 from Fedora Update System  ---
boom-0.5-2.fc18 has been pushed to the Fedora 18 stable repository.

-- 
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=gl3HoTttg2&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829021] Review Request: drupal6-media_youku - Youku Video Module for Drupal6

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

--- Comment #12 from Fedora Update System  ---
drupal6-media_youku-1.0-3.fc18 has been pushed to the Fedora 18 stable
repository.

-- 
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=jQH4pbItXS&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829021] Review Request: drupal6-media_youku - Youku Video Module for Drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:24:22

-- 
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=3shgVbWhPr&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829730] Review Request: drupal6-imagefield - Image Field Module for Drupal6

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

--- Comment #14 from Fedora Update System  ---
drupal6-imagefield-3.10-3.fc17 has been pushed to the Fedora 17 stable
repository.

-- 
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=cQqajiXELh&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829730] Review Request: drupal6-imagefield - Image Field Module for Drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:24:11

-- 
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=nWWlxewTec&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829763] Review Request: drupal6-link - Link module for Drupal6

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

--- Comment #14 from Fedora Update System  ---
drupal6-link-2.10-1.fc17 has been pushed to the Fedora 17 stable repository.

-- 
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=69ARctO98D&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829714] Review Request: drupal6-imagecache - Image Cache module for drupal6

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

--- Comment #13 from Fedora Update System  ---
drupal6-imagecache-2.0-5.rc1.fc17 has been pushed to the Fedora 17 stable
repository.

-- 
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=zK8RFkfFQ2&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829714] Review Request: drupal6-imagecache - Image Cache module for drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:23:40

-- 
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=42iWbCdbJB&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829718] Review Request: drupal6-imagecache_profiles - Image cache for User Profiles for Drupal6

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

Bug 829718 depends on bug 829714, which changed state.

Bug 829714 Summary: Review Request: drupal6-imagecache - Image Cache module for 
drupal6
https://bugzilla.redhat.com/show_bug.cgi?id=829714

   What|Removed |Added

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

-- 
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=wT75SKdBJs&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 828444] Review Request: drupal6-context_menu_block - Context Menu Block Module for Drupal6

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

--- Comment #16 from Fedora Update System  ---
drupal6-context_menu_block-3.0-2.fc18 has been pushed to the Fedora 18 stable
repository.

-- 
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=KhHTTuEnGJ&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 828444] Review Request: drupal6-context_menu_block - Context Menu Block Module for Drupal6

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

--- Comment #15 from Fedora Update System  ---
drupal6-context_menu_block-3.0-2.fc17 has been pushed to the Fedora 17 stable
repository.

-- 
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=ND4Xj9TLKc&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 828444] Review Request: drupal6-context_menu_block - Context Menu Block Module for Drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:22:55

-- 
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=ACiPDEvtr4&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829067] Review Request: drupal6-imageapi - Image API Module for Drupal6

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

--- Comment #12 from Fedora Update System  ---
drupal6-imageapi-1.10-3.fc17 has been pushed to the Fedora 17 stable
repository.

-- 
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=tBU5Q8U3HE&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829714] Review Request: drupal6-imagecache - Image Cache module for drupal6

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

Bug 829714 depends on bug 829067, which changed state.

Bug 829067 Summary: Review Request: drupal6-imageapi - Image API Module for 
Drupal6
https://bugzilla.redhat.com/show_bug.cgi?id=829067

   What|Removed |Added

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

-- 
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=e2o4KHKGJF&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829067] Review Request: drupal6-imageapi - Image API Module for Drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:22: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=k2Cc4ZcFHL&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829763] Review Request: drupal6-link - Link module for Drupal6

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2013-04-01 18:21:51

-- 
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=XN13gl7nNU&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 829763] Review Request: drupal6-link - Link module for Drupal6

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

--- Comment #13 from Fedora Update System  ---
drupal6-link-2.10-1.fc18 has been pushed to the Fedora 18 stable repository.

-- 
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=kOClY7ZBGQ&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 927894] Review Request: php-horde-Horde-SyncMl - Horde_SyncMl provides an API for processing SyncML requests

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

Shawn Iwinski  changed:

   What|Removed |Added

  Flags|fedora-review?  |
  Flags||fedora-review+

--- Comment #4 from Shawn Iwinski  ---
[!]: Package installs properly.
 Note: Installation errors (see attachment)
 See: https://fedoraproject.org/wiki/Packaging:Guidelines

 Please wait for dependencies before import.


[!]: %check is present and all tests pass.

 Please add running of unit tests when they are updated.


Since you are targeting EPEL 5, please add the following after initial import:
* "rm -rf %{buildroot}" in %install
* add %clean section


No blockers.

= APPROVED =

-- 
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=WXrA8YmyC7&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 927894] Review Request: php-horde-Horde-SyncMl - Horde_SyncMl provides an API for processing SyncML requests

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

--- Comment #3 from Shawn Iwinski  ---
Created attachment 730500
  --> https://bugzilla.redhat.com/attachment.cgi?id=730500&action=edit
phpci

phpci version 2.13.2

-- 
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=vSSvFpIaH0&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 927894] Review Request: php-horde-Horde-SyncMl - Horde_SyncMl provides an API for processing SyncML requests

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

--- Comment #2 from Shawn Iwinski  ---
Created attachment 730499
  --> https://bugzilla.redhat.com/attachment.cgi?id=730499&action=edit
fedora-review

Generated by fedora-review 0.4.0 (660ce56) last change: 2013-01-29
Buildroot used: fedora-rawhide-x86_64
Command line :/usr/bin/fedora-review --mock-config fedora-rawhide-x86_64 -b
927894

-- 
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=edBhWzpPVr&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 785447] Review Request: php-horde-Horde-Auth - Horde Authentication API

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

Shawn Iwinski  changed:

   What|Removed |Added

 Blocks||927894 (Horde_SyncMl)

-- 
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=v6MCyXrK7k&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 927894] Review Request: php-horde-Horde-SyncMl - Horde_SyncMl provides an API for processing SyncML requests

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

Shawn Iwinski  changed:

   What|Removed |Added

 CC||shawn.iwin...@gmail.com
 Depends On||785447 (Horde_Auth)
   Assignee|nob...@fedoraproject.org|shawn.iwin...@gmail.com
  Flags||fedora-review?

-- 
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=9fL0pd5Sqb&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 909520] Review Request: php-horde-Horde-Imap-Client - Horde IMAP abstraction interface

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

Shawn Iwinski  changed:

   What|Removed |Added

  Flags|fedora-review?  |
  Flags||fedora-review+

--- Comment #10 from Shawn Iwinski  ---
Since you are targeting EPEL 5, please add the following after initial import:
* "rm -rf %{buildroot}" in %install
* add %clean section

No blockers.

= APPROVED =

-- 
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=GTZiwB4cjh&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 909520] Review Request: php-horde-Horde-Imap-Client - Horde IMAP abstraction interface

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

--- Comment #9 from Shawn Iwinski  ---
Created attachment 730480
  --> https://bugzilla.redhat.com/attachment.cgi?id=730480&action=edit
phpci

phpci version 2.13.2

-- 
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=4V9aq28GIK&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 909520] Review Request: php-horde-Horde-Imap-Client - Horde IMAP abstraction interface

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

--- Comment #8 from Shawn Iwinski  ---
Created attachment 730479
  --> https://bugzilla.redhat.com/attachment.cgi?id=730479&action=edit
fedora-review

Generated by fedora-review 0.4.0 (660ce56) last change: 2013-01-29
Buildroot used: fedora-rawhide-x86_64
Command line :/usr/bin/fedora-review --mock-config fedora-rawhide-x86_64 -b
909520

-- 
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=hSf4Cg0NJd&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 909520] Review Request: php-horde-Horde-Imap-Client - Horde IMAP abstraction interface

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

Shawn Iwinski  changed:

   What|Removed |Added

  Flags||fedora-review?
   Assignee|nob...@fedoraproject.org|shawn.iwin...@gmail.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=muP514yBJd&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 927903] Review Request: php-horde-Horde-Notification - Horde Notification System

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

--- Comment #5 from Shawn Iwinski  ---
*** Another EPEL 5 item... "rm -rf %{buildroot}" in %install

-- 
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=d9vBKfVSb0&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 909471] Review Request: rubygem-openshift-origin-auth-remote-user - OpenShift plugin for remote-user authentication

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

--- Comment #19 from Fedora Update System  ---
rubygem-openshift-origin-auth-remote-user-1.5.6-5.fc18 has been submitted as an
update for Fedora 18.
https://admin.fedoraproject.org/updates/rubygem-openshift-origin-auth-remote-user-1.5.6-5.fc18

-- 
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=mHYCDwteDs&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 909471] Review Request: rubygem-openshift-origin-auth-remote-user - OpenShift plugin for remote-user authentication

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

Fedora Update System  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED

-- 
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=GX2YFggCYP&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 927903] Review Request: php-horde-Horde-Notification - Horde Notification System

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

Shawn Iwinski  changed:

   What|Removed |Added

  Flags|fedora-review?  |
  Flags||fedora-review+

--- Comment #4 from Shawn Iwinski  ---
COULD: Include require for "php-spl"

*** Since you are targeting EPEL 5, %clean section should be added.  Please do
so after initial import.

No blockers.

= APPROVED =

-- 
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=kKTMYbCKx6&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 947155] Review Request: mingw-gstreamer1 - MinGW build of GStreamer1

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

Kalev Lember  changed:

   What|Removed |Added

  Flags||fedora-review+

--- Comment #4 from Kalev Lember  ---
Fedora review of mingw-gstreamer1-1.0.6-1.fc18.src.rpm 2013-04-01

+ OK
! needs attention

rpmlint output:

$ rpmlint mingw-gstreamer1-1.0.6-1.fc19.src.rpm \
  mingw32-gstreamer1-1.0.6-1.fc19.noarch.rpm \
  mingw64-gstreamer1-1.0.6-1.fc19.noarch.rpm \
  mingw32-gstreamer1-debuginfo-1.0.6-1.fc19.noarch.rpm \
  mingw64-gstreamer1-debuginfo-1.0.6-1.fc19.noarch.rpm
mingw-gstreamer1.src: W: spelling-error %description -l en_US GStreamer -> G
Streamer, Streamer, Steamer
mingw-gstreamer1.src: E: changelog-time-in-future 2013-04-02
mingw-gstreamer1.src: E: specfile-error warning: bogus date in %changelog: Mon
Apr 02 2013 Paweł Forysiuk  - 1.0.6-1
mingw32-gstreamer1.noarch: W: spelling-error %description -l en_US GStreamer ->
G Streamer, Streamer, Steamer
mingw32-gstreamer1.noarch: E: changelog-time-in-future 2013-04-02
mingw32-gstreamer1.noarch: E: incorrect-fsf-address
/usr/share/doc/mingw32-gstreamer1-1.0.6/COPYING
mingw64-gstreamer1.noarch: W: spelling-error %description -l en_US GStreamer ->
G Streamer, Streamer, Steamer
mingw64-gstreamer1.noarch: E: changelog-time-in-future 2013-04-02
mingw64-gstreamer1.noarch: E: incorrect-fsf-address
/usr/share/doc/mingw64-gstreamer1-1.0.6/COPYING
mingw32-gstreamer1-debuginfo.noarch: E: changelog-time-in-future 2013-04-02
mingw32-gstreamer1-debuginfo.noarch: E: debuginfo-without-sources
mingw64-gstreamer1-debuginfo.noarch: E: changelog-time-in-future 2013-04-02
mingw64-gstreamer1-debuginfo.noarch: E: debuginfo-without-sources
5 packages and 0 specfiles checked; 10 errors, 3 warnings.

+ The package is named according to Fedora MinGW packaging guidelines
+ The spec file name matches the base package name.
+ The package meets the Packaging Guidelines
+ The package is licensed with a Fedora approved license and meets the
  Licensing Guidelines.
+ The license field in the spec file matches the actual license
+ The stated license is the same as the one for the corresponding
  native Fedora package
+ The package contains the license file (COPYING)
+ Spec file is written in American English
+ Spec file is legible
+ Upstream sources match sources in the srpm. md5sum:
  d0797e51a420fca0beb973b9dcda586f  gstreamer-1.0.6.tar.xz
  d0797e51a420fca0beb973b9dcda586f  Download/gstreamer-1.0.6.tar.xz
+ The package builds in koji
n/a ExcludeArch bugs filed
+ BuildRequires look sane
+ locale handling
n/a ldconfig in %post and %postun
+ Package doesn't bundle copies of system libraries
n/a Package isn't relocatable
+ Package owns all directories it creates
+ No duplicate files in %files
+ Permissions are properly set
+ Consistent use of macros
+ The package must contain code or permissible content
n/a Large documentation files should go in -doc subpackage
+ Files marked %doc should not affect package
n/a Header files should be in -devel
Not applicable to MinGW packages.
n/a Static libraries should be in -static
n/a Library files that end in .so must go in a -devel package
n/a -devel must require the fully versioned base
+ Packages must not contain libtool .la files
n/a Packages containing GUI apps must include %{name}.desktop file
+ Directory ownership sane
+ Filenames are valid UTF-8

Just a small issue that rpmlint caught above: it should be 'Mon Apr 01', not
'Mon Apr 02' in the changelog.
Otherwise looks good, but please fix this before importing.

APPROVED

-- 
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=BrRmRBNm8L&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 927903] Review Request: php-horde-Horde-Notification - Horde Notification System

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

--- Comment #3 from Shawn Iwinski  ---
Created attachment 730469
  --> https://bugzilla.redhat.com/attachment.cgi?id=730469&action=edit
phpci

phpci version 2.13.2

-- 
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=S0VUgTFIqG&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 927903] Review Request: php-horde-Horde-Notification - Horde Notification System

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

--- Comment #2 from Shawn Iwinski  ---
Created attachment 730468
  --> https://bugzilla.redhat.com/attachment.cgi?id=730468&action=edit
fedora-review

Generated by fedora-review 0.4.0 (660ce56) last change: 2013-01-29
Buildroot used: fedora-rawhide-x86_64
Command line :/usr/bin/fedora-review --mock-config fedora-rawhide-x86_64 -b
927903

-- 
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=kLIO6jkHLA&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 927903] Review Request: php-horde-Horde-Notification - Horde Notification System

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

Shawn Iwinski  changed:

   What|Removed |Added

 CC||shawn.iwin...@gmail.com
   Assignee|nob...@fedoraproject.org|shawn.iwin...@gmail.com
  Flags||fedora-review?

-- 
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=EP1oGbC59b&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 928367] Review Request: php-horde-Horde-Feed - Horde Feed libraries

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

Shawn Iwinski  changed:

   What|Removed |Added

 CC||shawn.iwin...@gmail.com
   Assignee|nob...@fedoraproject.org|shawn.iwin...@gmail.com
  Flags||fedora-review?

--- Comment #1 from Shawn Iwinski  ---
Please fix dependency max versions (i.e. s/Requires:/Conflicts:/)

Requires:   php-pear(%{pear_channel}/Horde_Exception) >= 2.0.0
Requires:   php-pear(%{pear_channel}/Horde_Exception) >= 3.0.0  <<
Requires:   php-pear(%{pear_channel}/Horde_Http) >= 2.0.0
Requires:   php-pear(%{pear_channel}/Horde_Http) >= 3.0.0  <<
Requires:   php-pear(%{pear_channel}/Horde_Xml_Element) >= 2.0.0
Requires:   php-pear(%{pear_channel}/Horde_Xml_Element) >= 3.0.0 
<<

-- 
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=Ykvr1Du5K7&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 947155] Review Request: mingw-gstreamer1 - MinGW build of GStreamer1

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

--- Comment #3 from Paweł Forysiuk  ---
This was clearly a mistake, thanks for pointing it out. Updated files below.

Spec URL: https://dl.dropbox.com/u/2448780/mingw-gstreamer1-1.0.6.spec
SRPM URL:
https://dl.dropbox.com/u/2448780/mingw-gstreamer1-1.0.6-1.fc18.src.rpm

-- 
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=WXUq9CFcmV&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 929038] Review Request: php-horde-Horde-Kolab-Format - A package for reading/writing Kolab data formats

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

Shawn Iwinski  changed:

   What|Removed |Added

  Flags|fedora-review?  |
  Flags||fedora-review+

--- Comment #3 from Shawn Iwinski  ---
No blockers.

= APPROVED =

-- 
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=fk7CaZ7WdK&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 929038] Review Request: php-horde-Horde-Kolab-Format - A package for reading/writing Kolab data formats

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

--- Comment #2 from Shawn Iwinski  ---
Created attachment 730421
  --> https://bugzilla.redhat.com/attachment.cgi?id=730421&action=edit
phpci

phpci version 2.13.2

-- 
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=7imdvDEST3&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 929038] Review Request: php-horde-Horde-Kolab-Format - A package for reading/writing Kolab data formats

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

--- Comment #1 from Shawn Iwinski  ---
Created attachment 730420
  --> https://bugzilla.redhat.com/attachment.cgi?id=730420&action=edit
fedora-review

Generated by fedora-review 0.4.0 (660ce56) last change: 2013-01-29
Buildroot used: fedora-rawhide-x86_64
Command line :/usr/bin/fedora-review --mock-config fedora-rawhide-x86_64 -b
929038

-- 
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=K80eV6dHZi&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 929038] Review Request: php-horde-Horde-Kolab-Format - A package for reading/writing Kolab data formats

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

Shawn Iwinski  changed:

   What|Removed |Added

 CC||shawn.iwin...@gmail.com
   Assignee|nob...@fedoraproject.org|shawn.iwin...@gmail.com
  Flags||fedora-review?

-- 
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=Ckok4jXWkD&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 929333] Review Request: php-horde-Horde-Imsp - IMSP API

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

Shawn Iwinski  changed:

   What|Removed |Added

  Flags|fedora-review?  |
  Flags||fedora-review+

--- Comment #3 from Shawn Iwinski  ---
No blockers.

= APPROVED =

-- 
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=R94RLRKZsn&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 929333] Review Request: php-horde-Horde-Imsp - IMSP API

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

--- Comment #2 from Shawn Iwinski  ---
Created attachment 730416
  --> https://bugzilla.redhat.com/attachment.cgi?id=730416&action=edit
phpci

phpci version 2.13.2

-- 
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=oNFjMtv1we&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 929333] Review Request: php-horde-Horde-Imsp - IMSP API

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

--- Comment #1 from Shawn Iwinski  ---
Created attachment 730415
  --> https://bugzilla.redhat.com/attachment.cgi?id=730415&action=edit
fedora-review

Generated by fedora-review 0.4.0 (660ce56) last change: 2013-01-29
Buildroot used: fedora-rawhide-x86_64
Command line :/usr/bin/fedora-review --mock-config fedora-rawhide-x86_64 -b
929333

-- 
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=p0TCQGaFVL&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 929333] Review Request: php-horde-Horde-Imsp - IMSP API

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

Shawn Iwinski  changed:

   What|Removed |Added

  Flags|fedora-review+  |
  Flags||fedora-review?

-- 
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=KAcfQGtaL1&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 929333] Review Request: php-horde-Horde-Imsp - IMSP API

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

Shawn Iwinski  changed:

   What|Removed |Added

 CC||shawn.iwin...@gmail.com
   Assignee|nob...@fedoraproject.org|shawn.iwin...@gmail.com
  Flags||fedora-review+

-- 
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=fz6afbpECr&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 947155] Review Request: mingw-gstreamer1 - MinGW build of GStreamer1

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

--- Comment #2 from Kalev Lember  ---
The spec file renames the gst-plugin-scanner.exe that's in libexec/ to
gst-plugin-scanner-1.0.exe; why?

I'm no gstreamer expert, but it seems to be an internal helper executable
invoked by libgstreamer-1.0-0.dll. How does the library know what the new name
is?

-- 
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=AHAr7U9aGE&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 947071] New Review Request: monitorix - A free, open source, lightweight system monitoring tool

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

--- Comment #1 from Volker Fröhlich  ---
According to the files, the license is GPLv2+.

This seems to be a noarch package and should be labeled accordingly.

Use the name macro for your other sources as well.

You must BR systemd, according to
http://fedoraproject.org/wiki/Packaging:Systemd#Filesystem_locations

Take a look at the Perl guidelines on how and if to require Perl modules
manually.

I think you should create a monitorix system user. The logrotate file doesn't
match the actual file and directory layout. It should also have a su line. Your
package should either own %{_sysconfdir}/logrotate.d/ or require logrotate

"rm -rf %{buildroot}" in the install section should be dropped, as it is no
longer necessary.

%{_localstatedir}/lib/monitorix/reports/*.html -- You're not owning this
directory. I also wonder why html should be configuration.

Replace the ".gz" from the manpages with an asterisk, to allow for the
compression method to change.

What's the point of 777 permissions for that one directory?

Your changelog entry has an invalid form. See
http://fedoraproject.org/wiki/Packaging:Guidelines#Changelogs

As a sidenote, you could shorten your install section by using the -D option of
the install command. You must also use -p to preserve the timestamps.

-- 
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=e0yYOAvpAQ&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 928573] Review Request: python-webob1.1 - WSGI request and response object

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

Kevin Fenzi  changed:

   What|Removed |Added

  Flags|fedora-cvs? |
  Flags||fedora-cvs+

-- 
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=pqN5j9e0PW&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 928573] Review Request: python-webob1.1 - WSGI request and response object

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

--- Comment #5 from Kevin Fenzi  ---
Git done (by process-git-requests).

-- 
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=jHoaqRIaQA&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 947155] Review Request: mingw-gstreamer1 - MinGW build of GStreamer1

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

Kalev Lember  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||fedora-mingw@lists.fedorapr
   ||oject.org,
   ||kalevlem...@gmail.com
   Assignee|nob...@fedoraproject.org|kalevlem...@gmail.com

--- Comment #1 from Kalev Lember  ---
Taking for review.

Koji scratch build:
http://koji.fedoraproject.org/koji/taskinfo?taskID=5195682

-- 
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=K4TRUEJRZs&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 923564] Review Request: NetworkManager-ssh - NetworkManager VPN plugin for SSH

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

--- Comment #28 from Kevin Fenzi  ---
Git done (by process-git-requests).

-- 
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=WUg2UxJKHE&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 923564] Review Request: NetworkManager-ssh - NetworkManager VPN plugin for SSH

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

Kevin Fenzi  changed:

   What|Removed |Added

  Flags|fedora-cvs? |
  Flags||fedora-cvs+

-- 
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=ooLFiT77oU&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 909471] Review Request: rubygem-openshift-origin-auth-remote-user - OpenShift plugin for remote-user authentication

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

--- Comment #18 from Kevin Fenzi  ---
Git done (by process-git-requests).

-- 
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=4LagSZaLb6&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 909471] Review Request: rubygem-openshift-origin-auth-remote-user - OpenShift plugin for remote-user authentication

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

Kevin Fenzi  changed:

   What|Removed |Added

  Flags|fedora-cvs? |
  Flags||fedora-cvs+

-- 
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=rxoKMR1VjU&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 928061] Review Request: nagstamon - Nagios status monitor for desktop

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

--- Comment #9 from Nikita Klimov  ---
(In reply to comment #8)
> Hi Nikita, welcome to Fedora
> 

Hi Eduardo.
Thank you for the invitation, I am pleased to hear such words.

> - Use python2-devel instead of python-devel as BR, See
> http://fedoraproject.org/wiki/Packaging:Python#BuildRequires.
> 
> -  Copy icon desktop to pixmaps directory, provide directory to install and
> invoke the entry,  only as %{name}.svg
> 

I updated the package, please review.

Spec URL: http://jaur.su/nagstamon.spec
SRPM URL: http://jaur.su/nagstamon-0.9.9-4.fc18.src.rpm

> You have read this?
> https://fedoraproject.org/wiki/
> How_to_get_sponsored_into_the_packager_group#Convincing_someone_to_sponsor_yo
> u
> Please try to doing informal reviews to other packagers in order to find and
> convincing a willing sponsor
> 
> Cheers

Yes, I read it. I will try to make regular reviews other packages, starting
this week.

-- 
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=6hVZ31DMO1&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 929214] Review Request: php-pear-Net-IMAP - Provides an implementation of the IMAP protocol

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

Shawn Iwinski  changed:

   What|Removed |Added

 CC||shawn.iwin...@gmail.com
   Assignee|nob...@fedoraproject.org|shawn.iwin...@gmail.com
  Flags||fedora-review?

--- Comment #2 from Shawn Iwinski  ---
Can you verify the license(s) for this package?  package.xml lists "PHP", but
"tests/IMAPTest.php" and "tests/settings.php.sample" list GPL, and
"docs/test_IMAPProtocol.php" and "docs/test_IMAP.php" specifically list PHP v2.

-- 
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=NjwX31WMPe&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 916405] Review Request: php-Assetic - Asset Management for PHP

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

--- Comment #16 from Fedora Update System  ---
php-Assetic-1.1.0-0.2.alpha4.el6 has been pushed to the Fedora EPEL 6 stable
repository.

-- 
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=KZukdCcieF&a=cc_unsubscribe
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

  1   2   >