Please unblock blender 2.46+dfsg-6

2008-11-04 Thread Cyril Brulebois
Hi,

Luk already unblocked blender 2.46+dfsg-5 (RC bug, security issue) but
it FTBFS'd on alpha, hppa, mips*, and sparc, as reported in
[EMAIL PROTECTED]; I've added a patch to support
python's sys.platform's now being linux2-$arch on those architectures,
with the first attached patch. Since it then became quite easy to enable
GNU/kFreeBSD support, I also did so, see second patch. I also added a
bit of documentation, so that I don't forget how I came to those
patches.

Changelog entry:
,--
| blender (2.46+dfsg-6) unstable; urgency=high
| 
|   * Add patch to fix FTBFS now that python's sys.platform reports
| linux2-$arch on various architectures (alpha, hppa, mips*, sparc), see
| #499132. At toplevel, the SConstruct script sets ENV['OURPLATFORM'] to
| sys.platform, and with this patch, makes it become 'linux2' when the
| platform string starts with 'linux2', and since userland is the same,
| ditto when the platform string starts with 'gnukfreebsd'. That patch
| also adds a check for sys.platform starting with those variables in
| various parts (which are not using ENV['OURPLATFORM]'), mostly in
| SConscript scripts, and in Python scripts shipped under the
| release/scripts directory (Closes: #503639):
|  - debian/patches/70_portability_platform_detection
|   * Keep urgency to “high” since the previous upload couldn't migrate to
| testing because of this FTBFS.
|   * Enable GNU/kFreeBSD support again. The previous patch was obsolete,
| and this new one benefits from the aforementioned one, since there's
| no need to add a specific check for tests on ENV['OURPLATFORM']. Don't
| delete the (already disabled) 10_gnukfreebsd_support patch to keep the
| release team happy:
|  - debian/patches/80_gnukfreebsd_support
|   * Add documentation on how to upgrade to a new upstream release, which
| will mostly be useful to keep those patches uptodate:
|  - debian/README.source
| 
|  -- Cyril Brulebois [EMAIL PROTECTED]  Mon, 03 Nov 2008 00:52:01 +0100
`--

Finally, I noticed a WTF-like FTBFS on hppa, and asked for a give-back,
but didn't get any answer yet, so could you please try and have it
retried? That might have been a transient issue, the whole 2.46* series
(up to -5 obviously) built without any issues, so I don't really see why
it would FTBFS now, and in such a way. IIRC that would be something
like:
  gb blender . hppa

Thanks for your time!

Mraw,
KiBi.
--- a/extern/bullet2/src/SConscript
+++ b/extern/bullet2/src/SConscript
@@ -14,7 +14,7 @@
 elif env['OURPLATFORM']=='win32-mingw':
 defs += ' NDEBUG'
 cflags += ['-O2']
-elif sys.platform=='linux2' or sys.platform=='linux-i386' or 
sys.platform=='freebsd4' or sys.platform=='freebsd5':
+elif sys.platform=='linux2' or sys.platform=='linux-i386' or 
sys.platform=='freebsd4' or sys.platform=='freebsd5' or 
sys.platform.startswith('linux2') or sys.platform.startswith('gnukfreebsd'):
 defs += ' NDEBUG'
 cflags += ['-O2']
 elif sys.platform=='darwin':
--- a/extern/qhull/SConscript
+++ b/extern/qhull/SConscript
@@ -5,7 +5,7 @@
 Import('env')
 defs = ''
 cflags = []
-if sys.platform=='linux2' or sys.platform=='linux-i386':
+if sys.platform=='linux2' or sys.platform=='linux-i386' or 
sys.platform.startswith('linux2') or sys.platform.startswith('gnukfreebsd'):
cflags += ['-O2','-ansi']
 elif env['OURPLATFORM']=='win32-vc':
cflags += ['/O2']
--- a/extern/solid/SConscript
+++ b/extern/solid/SConscript
@@ -12,7 +12,7 @@
 elif env['OURPLATFORM']=='win32-mingw':
 defs += ' NDEBUG'
 cflags += ['-O2']
-elif sys.platform=='linux2' or sys.platform=='linux-i386' or 
sys.platform=='freebsd4' or sys.platform=='freebsd5' or 
sys.platform=='openbsd3' or sys.platform=='sunos5':
+elif sys.platform=='linux2' or sys.platform=='linux-i386' or 
sys.platform=='freebsd4' or sys.platform=='freebsd5' or 
sys.platform=='openbsd3' or sys.platform=='sunos5' or 
sys.platform.startswith('linux2') or sys.platform.startswith('gnukfreebsd'):
 defs += ' NDEBUG'
 cflags += ['-O2']
 elif sys.platform=='darwin' :
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -137,8 +137,11 @@
 
 BF_FFMPEG_LIB = commands.getoutput('pkg-config --libs libavformat vorbisenc 
libswscale') + ' -lgsm'
 
+# Note: While linux2* and gnukfreebsd* share a lot, that particular case is
+# really Linux-specific, which is why there's not test on sys.platform starting
+# with 'gnukfreebsd' here.
 import sys
-if sys.platform == 'linux2':
+if sys.platform == 'linux2' or sys.platform.startswith('linux2'):
 BF_FFMPEG_LIB += ' ' + commands.getoutput('pkg-config --libs libdc1394-2')
 
 # Mesa Libs should go here if your using them as well
--- a/SConstruct
+++ b/SConstruct
@@ -143,6 +143,13 @@
 
 env['OURPLATFORM'] = platform
 
+# Fake being on a linux2 platform when on linux2-* (see arch-specific
+# modifications in just-before-lenny python uploads), as well as when
+# on gnukfreebsd* (which, for a blender point 

Please unblock libnss-ldap (RC bug fix)

2008-11-04 Thread Neil Williams
http://incoming.debian.org/libnss-ldap_261-2.1_amd64.changes

$ debdiff ../libnss-ldap_261-2.dsc ../libnss-ldap_261-2.1.dsc

diff -u libnss-ldap-261/debian/libnss-ldap.postinst 
libnss-ldap-261/debian/libnss-ldap.postinst
--- libnss-ldap-261/debian/libnss-ldap.postinst
+++ libnss-ldap-261/debian/libnss-ldap.postinst
@@ -176,7 +176,7 @@
cp -p /etc/ldap.secret /etc/libnss-ldap.secret
 fi
 
-if [ -s /usr/sbin/nscd ]; then
+if [ -x /etc/init.d/nscd ]; then
if [ `pidof -s nscd` ]; then 
if which invoke-rc.d /dev/null 21; then
invoke-rc.d nscd restart
diff -u libnss-ldap-261/debian/changelog libnss-ldap-261/debian/changelog
--- libnss-ldap-261/debian/changelog
+++ libnss-ldap-261/debian/changelog
@@ -1,3 +1,11 @@
+libnss-ldap (261-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * libnss-ldap calls nscd init script w/o checking its existance
+(Closes: #502760)
+
+ -- Neil Williams [EMAIL PROTECTED]  Tue, 04 Nov 2008 14:07:23 +
+
 libnss-ldap (261-2) unstable; urgency=low
 
   * Updated nl.po   Closes: #469175


-- 


Neil Williams
=
http://www.data-freedom.org/
http://www.nosoftwarepatents.com/
http://www.linux.codehelp.co.uk/




signature.asc
Description: This is a digitally signed message part


Re: Please unblock libnss-ldap (RC bug fix)

2008-11-04 Thread Cyril Brulebois
Andreas Barth [EMAIL PROTECTED] (04/11/2008):
 I doubt that this changes is correct, because /etc/init.d/nscd is an
 conffile and isn't removed during remove but only during purge.
 
 You need to check that both the conffile exists plus the binary.

Hmm, that's the init script's job, not the postinst's?

Mraw,
KiBi.


signature.asc
Description: Digital signature


Re: Please unblock libnss-ldap (RC bug fix)

2008-11-04 Thread Bastian Blank
On Tue, Nov 04, 2008 at 04:08:12PM +0100, Andreas Barth wrote:
 I doubt that this changes is correct, because /etc/init.d/nscd is an
 conffile and isn't removed during remove but only during purge.

The initscript have to check this on its own anyway.

Bastian

-- 
We have phasers, I vote we blast 'em!
-- Bailey, The Corbomite Maneuver, stardate 1514.2


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Please unblock libnss-ldap (RC bug fix)

2008-11-04 Thread Neil Williams
On Tue, 2008-11-04 at 16:08 +0100, Andreas Barth wrote:
 * Neil Williams ([EMAIL PROTECTED]) [081104 16:03]:
  http://incoming.debian.org/libnss-ldap_261-2.1_amd64.changes
  

 I doubt that this changes is correct, because /etc/init.d/nscd is an
 conffile and isn't removed during remove but only during purge.
 
 You need to check that both the conffile exists plus the binary.

I did some testing on the fix and the init script actually does check
for the existence of the binary:

in glibc-2.7/debian/nscd.init

# Sanity checks.

NAME=nscd
DESC=Name Service Cache Daemon
DAEMON=/usr/sbin/nscd
PIDFILE=/var/run/nscd/nscd.pid

# Sanity checks.
umask 022
[ -f /etc/nscd.conf ] || exit 0
[ -x $DAEMON ] || exit 0
[ -d /var/run/nscd ] || mkdir -p /var/run/nscd
. /lib/lsb/init-functions


If you prefer that I add a double check then I can but the bug itself
was about /etc/init.d/nscd being removed during an etch-lenny upgrade
whilst /usr/sbin/nscd remained.

   invoke-rc.d: unknown initscript, /etc/init.d/nscd not found.
   dpkg: error processing libnss-ldap (--configure):
subprocess post-installation script returned error exit status 100
   dpkg: dependency problems prevent configuration of ldapscripts:
ldapscripts depends on libnss-ldap; however:
 Package libnss-ldap is not configured yet.



-- 


Neil Williams
=
http://www.data-freedom.org/
http://www.nosoftwarepatents.com/
http://www.linux.codehelp.co.uk/




signature.asc
Description: This is a digitally signed message part


Re: Please unblock libnss-ldap (RC bug fix)

2008-11-04 Thread Adeodato Simó
* Neil Williams [Tue, 04 Nov 2008 15:11:03 +]:

 http://incoming.debian.org/libnss-ldap_261-2.1_amd64.changes

 $ debdiff ../libnss-ldap_261-2.dsc ../libnss-ldap_261-2.1.dsc

 diff -u libnss-ldap-261/debian/libnss-ldap.postinst 
 libnss-ldap-261/debian/libnss-ldap.postinst
 --- libnss-ldap-261/debian/libnss-ldap.postinst
 +++ libnss-ldap-261/debian/libnss-ldap.postinst
 @@ -176,7 +176,7 @@
   cp -p /etc/ldap.secret /etc/libnss-ldap.secret
  fi

 -if [ -s /usr/sbin/nscd ]; then
 +if [ -x /etc/init.d/nscd ]; then
   if [ `pidof -s nscd` ]; then 
   if which invoke-rc.d /dev/null 21; then
   invoke-rc.d nscd restart
 diff -u libnss-ldap-261/debian/changelog libnss-ldap-261/debian/changelog
 --- libnss-ldap-261/debian/changelog
 +++ libnss-ldap-261/debian/changelog
 @@ -1,3 +1,11 @@
 +libnss-ldap (261-2.1) unstable; urgency=low
 +
 +  * Non-maintainer upload.
 +  * libnss-ldap calls nscd init script w/o checking its existance
 +(Closes: #502760)
 +
 + -- Neil Williams [EMAIL PROTECTED]  Tue, 04 Nov 2008 14:07:23 +
 +
  libnss-ldap (261-2) unstable; urgency=low

Unblocked, thanks for the fix.

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
I promise you. Once I enter into an exclusive relationship, I sleep with
very few people.
-- Denny Crane


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



please unfreeze darcsweb_1.1-1 for lenny

2008-11-04 Thread Fabian Linzberger
hi,

darcsweb is a web frontend for the version control system
darcs.

because of the new darcs major version 2.0 entering lenny, the current
version 1.0 of darcsweb in lenny has some issues (for details see:
http://bugs.debian.org/502343).


upstream has released the version 1.1 to fix the issues with darcs
2.0, which i have packaged and is waiting in unstable due for
migration to lenny from tomorrow on. i hope some minor cleanups i also
made in this upload will not distract you too much.

i believe this version should be in lenny and therefore kindly ask you
to unblock it. find the detailed changelog below.


Format: 1.8
Date: Tue, 28 Oct 2008 18:34:58 +0100
Source: darcsweb
Binary: darcsweb
Architecture: source all
Version: 1.1-1
Distribution: unstable
Urgency: medium
Maintainer: fabian linzberger [EMAIL PROTECTED]
Changed-By: fabian linzberger [EMAIL PROTECTED]
Description: 
 darcsweb   - web interface for browsing darcs repositories
Closes: 494013 502343
Changes: 
 darcsweb (1.1-1) unstable; urgency=medium
 .
   * New upstream version fixing compatibility issues with the new darcs
 2.0, (Closes: #502343)
   * debian/control: s/X-Vcs-Darcs/Vcs-Darcs/, add Vcs-Browser field
   * add ${misc:Depends} to Depends as suggested by morph
   * recommend httpd-cgi instead of httpd, thanks to Stephane Glondu for
 pointing it out. (Closes: #494013)
   * cleanup debian/rules along suggestions of morph



thanks for your consideration,

  fabian

--
fabian linzberger -- http://lefant.net/ -- http://debienna.at/
   - do yourself a favour: use and support free software!


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Please unblock libnss-ldap (RC bug fix)

2008-11-04 Thread Andreas Barth
* Neil Williams ([EMAIL PROTECTED]) [081104 16:40]:
 On Tue, 2008-11-04 at 16:08 +0100, Andreas Barth wrote:
  * Neil Williams ([EMAIL PROTECTED]) [081104 16:03]:
   http://incoming.debian.org/libnss-ldap_261-2.1_amd64.changes
   
 
  I doubt that this changes is correct, because /etc/init.d/nscd is an
  conffile and isn't removed during remove but only during purge.
  
  You need to check that both the conffile exists plus the binary.
 
 I did some testing on the fix and the init script actually does check
 for the existence of the binary:

Yes, you're right, sorry.


Cheers,
Andi


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: unblock pixelpost 1.7.1-5

2008-11-04 Thread Luk Claes
Xavier Luthi wrote:
 Hi,
 
 Can you please unblock pixelpost 1.7.1-5?  This new package version
 contains a fix for a security vulnerability (CVE-2008-4796).

Already unblocked

Cheers

Luk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Unblock request for cacti-spine/0.8.7a-2.3 (l10n updates)

2008-11-04 Thread Christian Perrier

Dear release managers,

I recently NMU'ed (or worked with the maintainer of) cacti-spine to fix
some pending l10n bugs.

Could you consider unblocking that version and allow it to enter testing?

The changelog for 0.8.7a-2.3 is:

Source: cacti-spine
Version: 0.8.7a-2.3
Distribution: unstable
Urgency: low
Maintainer: Christian Perrier [EMAIL PROTECTED]
Date: Sun, 02 Nov 2008 08:03:57 +0100
Closes: 500020 503540 503980
Changes: 
 cacti-spine (0.8.7a-2.3) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Remove accidentally added debian/po/pt2.po file
   * Fix pending l10n issues. Debconf translations:
 - Vietnamese. Closes: #500020
 - Czech. Closes: #503540
 - Italian. Closes: #503980

-- 




signature.asc
Description: Digital signature


Unblock request for pcd2html/0.5.1-3.1 (l10n updates)

2008-11-04 Thread Christian Perrier

Dear release managers,

I recently NMU'ed (or worked with the maintainer of) pcd2html to fix
some pending l10n bugs.

Could you consider unblocking that version and allow it to enter testing?

The changelog for 0.5.1-3.1 is:

Source: pcd2html
Version: 0.5.1-3.1
Distribution: unstable
Urgency: low
Maintainer: Christian Perrier [EMAIL PROTECTED]
Date: Sun, 02 Nov 2008 08:05:03 +0100
Closes: 491953
Changes: 
 pcd2html (0.5.1-3.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix pending l10n issues. Debconf translations:
 - Swedish. Closes: #491953

-- 




signature.asc
Description: Digital signature


Unblock request for pure-ftpd/1.0.21-11.4 (l10n updates)

2008-11-04 Thread Christian Perrier

Dear release managers,

I recently NMU'ed (or worked with the maintainer of) pure-ftpd to fix
some pending l10n bugs.

Could you consider unblocking that version and allow it to enter testing?

The changelog for 1.0.21-11.4 is:

Source: pure-ftpd
Version: 1.0.21-11.4
Distribution: unstable
Urgency: low
Maintainer: Christian Perrier [EMAIL PROTECTED]
Date: Sun, 02 Nov 2008 10:48:45 +0100
Closes: 500032 502969
Changes: 
 pure-ftpd (1.0.21-11.4) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix pending l10n issues. Debconf translations:
 - Vietnamese. Closes: #500032
 - Swedish. Closes: #502969

-- 




signature.asc
Description: Digital signature


Re: please unblock httrack

2008-11-04 Thread Luk Claes
Xavier Roche wrote:
 Hi folks!
 
 This is not a real emergency, so don't hesitate to drop the request if
 deemed unnecessary, but the current testing 3.42.3-1 version of httrack
 has serious bugs (a dozen) which have been fixed in 3.43.1-1 (1) thanks
 to patient user's feedback. It would be much better if 3.43 was in lenny
 rather than this buggy version (I know, I'm always a bit late).

Sorry, but the diff looks way too large to be considered. You might want
to point out which fixes are really necessary to get included so we can
have a look if it would be acceptable to get them in via t-p-u.

Cheers

Luk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Please unblock toshset/1.73-3

2008-11-04 Thread Luk Claes
Giuseppe Iuculano wrote:
 Hello,
 
 please unblock toshset/1.73-3.

unblocked

Cheers

Luk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Unblock request for cacti-spine/0.8.7a-2.3 (l10n updates)

2008-11-04 Thread Luk Claes
Christian Perrier wrote:
 Dear release managers,
 
 I recently NMU'ed (or worked with the maintainer of) cacti-spine to fix
 some pending l10n bugs.
 
 Could you consider unblocking that version and allow it to enter testing?

unblocked

Cheers

Luk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Unblock request for pcd2html/0.5.1-3.1 (l10n updates)

2008-11-04 Thread Luk Claes
Christian Perrier wrote:
 Dear release managers,
 
 I recently NMU'ed (or worked with the maintainer of) pcd2html to fix
 some pending l10n bugs.
 
 Could you consider unblocking that version and allow it to enter testing?

unblocked

Cheers

Luk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Unblock request for pure-ftpd/1.0.21-11.4 (l10n updates)

2008-11-04 Thread Luk Claes
Christian Perrier wrote:
 Dear release managers,
 
 I recently NMU'ed (or worked with the maintainer of) pure-ftpd to fix
 some pending l10n bugs.
 
 Could you consider unblocking that version and allow it to enter testing?

unblocked

Cheers

Luk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



please unfreeze darcsweb_1.1-1 for lenny

2008-11-04 Thread Fabian Linzberger
hi,

darcsweb is a web frontend for the version control system
darcs.

because of the new darcs major version 2.0 entering lenny, the current
version 1.0 of darcsweb in lenny has some issues (for details see:
http://bugs.debian.org/502343).


upstream has released the version 1.1 to fix the issues with darcs
2.0, which i have packaged and is waiting in unstable due for
migration to lenny from tomorrow on. i hope some minor cleanups i also
made in this upload will not distract you too much.

i believe this version should be in lenny and therefore kindly ask you
to unblock it. find the detailed changelog below.



Format: 1.8
Date: Tue, 28 Oct 2008 18:34:58 +0100
Source: darcsweb
Binary: darcsweb
Architecture: source all
Version: 1.1-1
Distribution: unstable
Urgency: medium
Maintainer: fabian linzberger [EMAIL PROTECTED]
Changed-By: fabian linzberger [EMAIL PROTECTED]
Description: 
 darcsweb   - web interface for browsing darcs repositories
Closes: 494013 502343
Changes: 
 darcsweb (1.1-1) unstable; urgency=medium
 .
   * New upstream version fixing compatibility issues with the new darcs
 2.0, (Closes: #502343)
   * debian/control: s/X-Vcs-Darcs/Vcs-Darcs/, add Vcs-Browser field
   * add ${misc:Depends} to Depends as suggested by morph
   * recommend httpd-cgi instead of httpd, thanks to Stephane Glondu for
 pointing it out. (Closes: #494013)
   * cleanup debian/rules along suggestions of morph



thanks,

  fabian
-- 
fabian linzberger -- http://lefant.net/ -- http://debienna.at/
   - do yourself a favour: use and support free software!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Please unblock libnss-ldap (RC bug fix)

2008-11-04 Thread Andreas Barth
* Neil Williams ([EMAIL PROTECTED]) [081104 16:03]:
 http://incoming.debian.org/libnss-ldap_261-2.1_amd64.changes
 
 $ debdiff ../libnss-ldap_261-2.dsc ../libnss-ldap_261-2.1.dsc
 
 diff -u libnss-ldap-261/debian/libnss-ldap.postinst 
 libnss-ldap-261/debian/libnss-ldap.postinst
 --- libnss-ldap-261/debian/libnss-ldap.postinst
 +++ libnss-ldap-261/debian/libnss-ldap.postinst
 @@ -176,7 +176,7 @@
   cp -p /etc/ldap.secret /etc/libnss-ldap.secret
  fi
  
 -if [ -s /usr/sbin/nscd ]; then
 +if [ -x /etc/init.d/nscd ]; then
   if [ `pidof -s nscd` ]; then 
   if which invoke-rc.d /dev/null 21; then
   invoke-rc.d nscd restart
 diff -u libnss-ldap-261/debian/changelog libnss-ldap-261/debian/changelog
 --- libnss-ldap-261/debian/changelog
 +++ libnss-ldap-261/debian/changelog
 @@ -1,3 +1,11 @@
 +libnss-ldap (261-2.1) unstable; urgency=low
 +
 +  * Non-maintainer upload.
 +  * libnss-ldap calls nscd init script w/o checking its existance
 +(Closes: #502760)
 +
 + -- Neil Williams [EMAIL PROTECTED]  Tue, 04 Nov 2008 14:07:23 +
 +
  libnss-ldap (261-2) unstable; urgency=low
  
* Updated nl.po   Closes: #469175

I doubt that this changes is correct, because /etc/init.d/nscd is an
conffile and isn't removed during remove but only during purge.

You need to check that both the conffile exists plus the binary.



Cheers,
Andi


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Please unblock these packages

2008-11-04 Thread Laurent Bigonville
Hi,


Please could you unblock the following packages:

d-feet/0.1.8-2
gnome-nds-thumbnailer/1.0.2-2
vim-syntax-gtk/20070925-2

These uploads fix lintian warnings and use my new email address

Could you also unblock

empathy/0.23.3-3
This upload fix a crash when adding SIP/IRC contacts

and

libjingle0.3/0.3.11-5
that fix FTBFS on kFreebsd

Thanks

Laurent Bigonville


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: please unblock httrack

2008-11-04 Thread Xavier Roche

Luk Claes a écrit :

Sorry, but the diff looks way too large to be considered. You might want
to point out which fixes are really necessary to get included so we can
have a look if it would be acceptable to get them in via t-p-u.


Unfortunately there are a lot of fixes - and the diff can not be easily 
splitted. I guess the 3.43 release will have to wait for the next release :)


Thanks for the check anyway.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Template Toolkit, Template::DBI and Etch updates breakage

2008-11-04 Thread Gunnar Wolf
Dominic Hargreaves dijo [Tue, Nov 04, 2008 at 01:07:50PM +]:
 It was a deliberate decision not to proactively package Template::DBI
 based on the fact that no package used that functionality at the time
 (and presumably still doesn't).
 
 If it's now considered essential, then another option would be to
 repackage Template::DBI inside the main TT package as a high-urgency
 upload (and preparing a package for NEW) if that would make it more
 likely to be accepted by the release team.
 
 I am happy to do the work either as a NEW package for lenny or as
 described above, if there is consensus.

Umh, IMHO it would be way cleaner and better to make this a new
package. After all, the release team are not robots, and I guess that
making this a clean solution will look much better in their eyes than
clumping (hiding even?) a full module inside this package.

Greetins,

-- 
Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5623-0154 / 1451-2244
PGP key 1024D/8BB527AF 2001-10-23
Fingerprint: 0C79 D2D1 2C4E 9CE4 5973  F800 D80E F35A 8BB5 27AF


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: [Pkg-fglrx-devel] Bug#503878: fglrx-atieventsd: authatieventsd.sh uses finger without depending on it and is unreliable

2008-11-04 Thread Mark Purcell
On Wednesday 05 November 2008 02:29:52 Romain Beauxis wrote:
 The plan could be to fix the package in lenny, as well as uploading a new
 package for sid, wait for the bugs to come, and if it is still possible,
 consider proposing an update.

Romain  Bertand,

Thanks for your efforts on this.

I would recommend you upload the fixed package to sid, which will give at least 
a 10 day testing period, but the good thing is that this bug will of been 
addressed and we can reassess if further uploads are needed.

Mark


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Bug#502824: alevt: diff for NMU version 1:1.6.1-10.2

2008-11-04 Thread Mark Purcell
On Tuesday 04 November 2008 19:08:55 Chris Lamb wrote:
 I have prepared and uploaded it *3* times, both to the SSH queue on
 ravel and via FTP; every time the upload simply disappears.

Thats a bit weird ;-(

Can you upload somewhere else, such as people.debian.org and do you want to 
have someone else to try and upload?

Mark


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Drop nbsmtp from lenny?

2008-11-04 Thread Marco Rodrigues
Hi!

I agree with KiBi. I think nbsmtp is a duplicate of ssmtp that is more
active upstream, so it should be removed from lenny until a new upload is done
by maintainer to fix this issue.

Personally, I think it should be removed, we don't need duplicated packages, and
this one doesn't have an official homepage and upstream looks dead.
It also doesn't support SSL, so it does insecure connections by nature.

Thanks

-- 
Marco Rodrigues

http://Marco.Tondela.org


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#439363: reopen, affects etch

2008-11-04 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 439363 release.debian.org
Bug#439363: youtube-dl: version in etch useless
Bug reassigned from package `youtube-dl' to `release.debian.org'.

 retitle 439363 RM: youtube-dl/etch -- RoQA; broken
Bug#439363: youtube-dl: version in etch useless
Changed Bug title to `RM: youtube-dl/etch -- RoQA; broken' from `youtube-dl: 
version in etch useless'.

 severity 439363 normal
Bug#439363: RM: youtube-dl/etch -- RoQA; broken
Severity set to `normal' from `grave'

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Upload of mahara 1.0.4-3 to testing-proposed-updates

2008-11-04 Thread Francois Marier
After talking to the testing security team, I will be taking these two fixes
to testing-security instead of testing-proposed-updates.

Therefore, please ignore this upload.

Cheers,
Francois


signature.asc
Description: Digital signature


unblock pixelpost 1.7.1-5

2008-11-04 Thread Xavier Luthi
Hi,

Can you please unblock pixelpost 1.7.1-5?  This new package version
contains a fix for a security vulnerability (CVE-2008-4796).

Thanks!
 Xavier


signature.asc
Description: Digital signature


Cannot link to -lshp on armel: hidden symbol '__aeabi_dcmpgt'

2008-11-04 Thread Riku Voipio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags 497160 + patch
thanks

The problem is that shapelib throws away a seemingly good libtool linked 
library and replaces
it with something hacks in together almost right.

This fix should make gpsmanshp and xastir runnable on armel, would this be 
acceptable for lenny?

diff -urN old/shapelib-1.2.10/Makefile shapelib-1.2.10/Makefile
- --- old/shapelib-1.2.10/Makefile2003-04-07 13:03:22.0 +
+++ shapelib-1.2.10/Makefile2008-11-04 12:23:06.0 +
@@ -113,18 +113,18 @@
gcc -DPACKAGE=\libshp\ -DVERSION=\$(SHPLIB_VERSION)\ 
-DSTDC_HEADERS=1 -I. -I. -I/usr/local/include -g -O2 -c  -fPIC -DPIC dbfopen.c 
-o .libs/dbfopen.lo
gcc -DPACKAGE=\libshp\ -DVERSION=\$(SHPLIB_VERSION)\ 
-DSTDC_HEADERS=1 -I. -I. -I/usr/local/include -g -O2 -c dbfopen.c -o dbfopen.o 
/dev/null 21
mv -f .libs/dbfopen.lo dbfopen.lo
- -   /bin/sh ./libtool --mode=link gcc  -g -O2  -o libshp.la -rpath 
/usr/local/lib -version-info 1:1:0 shpopen.lo shptree.lo dbfopen.lo
- -   rm -fr .libs/libshp.la .libs/libshp.* .libs/libshp.*
- -   rm -fr .libs/libshp.lax
- -   mkdir .libs/libshp.lax
- -   /usr/bin/ld -G -h libshp.so.1 -o .libs/libshp.so.$(LIBSHP_VERSION)  
shpopen.lo shptree.lo dbfopen.lo  -lc
- -
- -   (cd .libs  rm -f libshp.so.1  ln -s libshp.so.$(LIBSHP_VERSION) 
libshp.so.1)
- -   (cd .libs  rm -f libshp.so  ln -s libshp.so.$(LIBSHP_VERSION) 
libshp.so)
- -   ar cru .libs/libshp.a  shpopen.o shptree.o dbfopen.o
- -   ranlib .libs/libshp.a
- -   rm -fr .libs/libshp.lax
- -   (cd .libs  rm -f libshp.la  ln -s ../libshp.la libshp.la)
+   /bin/sh ./libtool --mode=link gcc  -g -O2  -o libshp.la -rpath /usr/lib 
-version-info 1:1:0 shpopen.lo shptree.lo dbfopen.lo
+#  rm -fr .libs/libshp.la .libs/libshp.* .libs/libshp.*
+#  rm -fr .libs/libshp.lax
+#  mkdir .libs/libshp.lax
+#  /usr/bin/ld -G -h libshp.so.1 -o .libs/libshp.so.$(LIBSHP_VERSION)  
shpopen.lo shptree.lo dbfopen.loa -lc
+#
+#  (cd .libs  rm -f libshp.so.1  ln -s libshp.so.$(LIBSHP_VERSION) 
libshp.so.1)
+#  (cd .libs  rm -f libshp.so  ln -s libshp.so.$(LIBSHP_VERSION) 
libshp.so)
+#  ar cru .libs/libshp.a  shpopen.o shptree.o dbfopen.o
+#  ranlib .libs/libshp.a
+#  rm -fr .libs/libshp.lax
+#  (cd .libs  rm -f libshp.la  ln -s ../libshp.la libshp.la)

 lib_install:
cp .libs/libshp.la .libs/libshp.lai
Binary files old/shapelib-1.2.10/shprewind and shapelib-1.2.10/shprewind differ


- -- 
rm -rf only sounds scary if you don't have backups
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFJEERAibPvMsrqrwMRAvyJAJwPyiNvs8a7CJTrhG7RDM/7xWE4mQCgpX/4
IMbOmZ+JFcGlD2wfh/QLHwg=
=itZG
-END PGP SIGNATURE-


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Please unfreeze snort 2.7.0-20

2008-11-04 Thread Javier Fernández-Sanguino Peña
On Sun, Nov 02, 2008 at 12:31:04PM +0100, Adeodato Simó wrote:
 Please make a new sourceful upload of snort to t-p-u, but please fix
 binNMUability at the same time; I'm attaching a patch. Please make sure
 that the fix is included on the next upload to unstable as well.

I have found out the 'pbuilder --create' did not work properly for me. It
created a sid pbuild even though I instructed it to be lenny :(

I'm making new packages for t-p-u with the fixes you mentioned and, once I
upload those, I will apply the fixes to sid too.

Regards

Javier


signature.asc
Description: Digital signature


Re: Template Toolkit, Template::DBI and Etch updates breakage

2008-11-04 Thread Dominic Hargreaves
On Tue, Nov 04, 2008 at 01:26:35AM +0100, Ansgar Burchardt wrote:
 Gunnar Wolf wrote:
  However, a big selling point for the Template Toolkit has long been
  the Template::DBI module. Sadly, I believe we are quite a bit late to
  introduce it into Lenny - But the package could be uploaded into
  Debian, and basically added straight to lenny-backports as soon as it
  is available.
 
 If the Template::DBI module is an important part of Template Toolkit, we
 should avoid regressions *within* Debian instead of referring users to
 backports.  That look more like a work-around for the release process to
 me.
 
 We should ask the release team if the package could still be allowed for
 Lenny -- the code has already been in Debian before after all and it
 would avoid regressions.  Though I agree it very late, probably too
 late, for this.

It was a deliberate decision not to proactively package Template::DBI
based on the fact that no package used that functionality at the time
(and presumably still doesn't).

If it's now considered essential, then another option would be to
repackage Template::DBI inside the main TT package as a high-urgency
upload (and preparing a package for NEW) if that would make it more
likely to be accepted by the release team.

I am happy to do the work either as a NEW package for lenny or as
described above, if there is consensus.

Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



ROM: Upload of swfdec-mozilla 0.6.0-5 to testing-proposed-updates

2008-11-04 Thread Santiago Garcia Mantinan
Hi!

After talking with upstream about #496741 and #503315 (one of them is a RC
bug) it has said that this seems to be upstream's bug
http://bugs.freedesktop.org/show_bug.cgi?id=15962
which was solved with this patch:
http://cgit.freedesktop.org/swfdec/swfdec-mozilla/diff/src/swfmoz_player.c?h=0.8id=c37f02fc20a4ffc74eecfceeaff913a250933320
on newer versions, applying it to 0.6.0 would be like this:

--- swfdec-mozilla-0.6.0.orig/src/swfmoz_player.c
+++ swfdec-mozilla-0.6.0/src/swfmoz_player.c
@@ -353,10 +353,6 @@
 gdk_region_destroy (player-repaint);
 player-repaint = NULL;
   }
-  if (player-initial) {
-g_object_unref (player-initial);
-player-initial = NULL;
-  }
   if (player-loaders) {
 g_object_unref (player-loaders);
 player-loaders = NULL;

Quoting upstream:

[21:07] Company manty: i can tell you the code is wrong in 0.6, because it
unrefs an NPStream
[21:07] Company manty: so whenever player-initial is set, swfdec-mozilla is
gonna crash

Reporters have not been clear on their bugs, they are unresponsive to my
requests of more info and I cannot replicate the problem on amd64 or i386 so
I cannot tell if the patch will really fix this bugs or not, but upstream
thinks it will and at least will fix the crash upstream comments.

So... if you think this is ok I'll try to upload through
testing-proposed-updates (we have 0.8.2 in unstable) or whatever you tell me
to do.

Regards...
-- 
Manty/BestiaTester - http://manty.net


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Please unblock iso-codes/3.4-1

2008-11-04 Thread Tobias Quathamer
Hi,

the package iso-codes has been updated. Could you please consider it for 
unblocking, even though it's a new upstream version? The package consists of 
documentation and translations only, no binaries, no libraries, no scripts.

This is the upstream changelog:

  [ ISO-3166 ]
  * Changes from ISO-3166 MA Newsletter VI-3:
- NP full name to Federal Democratic Republic of Nepal

  [ ISO-639 ]
  * Update to 2008-10-21

  [ ISO-639-3 ]
  * Update to 2008-10-23

  [ ISO-15924 translations ]
  * Spanish by Juan Cuquejo Mira (TP)

  [ ISO-639 translations ]
  * Simplified Chinese by LI Daobing (TP)
  * Finnish by Tommi Vainikainen (TP)
  * Dutch by Freek de Kruijf (TP)
  * Irish by Kevin Scannell (TP)
  * Italian by Milo Casagrande (TP)
  * Vietnamese by Clytie Siddall (TP)
  * Esperanto by Edmund GRIMLEY EVANS (TP)
  * Marathi correction by pn-guest. Closes: alioth#311136
  * Konkani correction by pn-guest. Closes: alioth#311136
  * Greek by Athanasios Lefteris. Closes: alioth#311159
  * Russian by Yuri Kozlov
  * French by Christian Perrier
  * Lithuanian updated by Kęstutis Biliūnas.

  [ ISO-639-3 translations ]
  * Greek by Athanasios Lefteris. Closes: alioth#311159
  * French update by Christian Perrier
  * Lithuanian updated by Kęstutis Biliūnas.

  [ ISO-4217 translations ]
  * Simplified Chinese by LI Daobing (TP)

  [ ISO-3166 translations ]
  * Hindi by Kumar Appaiah (sent directly to Christian Perrier)
  * Georgian by Aiet Kolkhi. Closes: #498421
  * Polish by Lukasz Pazdziora (sent directly to Christian Perrier)
  * Macedonian by Arangel Angov (sent directly to Christian Perrier)
  * Correct wrong German translation for ETH, thanks to Stefan Lüchinger.
Closes: alioth#311152
  * Russian by Yuri Kozlov
  * Lithuanian updated by Kęstutis Biliūnas.
  * Estonian updated by Tõivo Leedjärv, sent directly to mailing list

Regards,
Tobias

-- 
Tobias Quathamer | Only two things are infinite, the universe and
Hamburg, Germany | human stupidity, and I'm not sure about the former
 |   -- Albert Einstein


signature.asc
Description: This is a digitally signed message part.


Re: Please unfreeze snort 2.7.0-20

2008-11-04 Thread Javier Fernández-Sanguino Peña
On Sun, Nov 02, 2008 at 12:31:04PM +0100, Adeodato Simó wrote:
 * Javier Fernández-Sanguino Peña [Mon, 27 Oct 2008 21:56:52 +0100]:
 
 Hello, Javier.
 
  Snort 2.7.0-20, recently uploaded to unstable, introduces a fix for a known
  security vulnerability (CVE-2008-1804). Please unfreeze this package so that
  the fix can move into Lenny.
 
 The i386 binaries that were uploaded to t-p-u depended on the pcre3 on
 unstable (they were built in an unstable system/chroot and not in a
 testing one). They hence can't migrate to testing.

I've recompiled and reuploaded new packages for t-p-u and sid fixing ths
issues (pcre3 version in t-p-u and fixing binNMUability in both). Please
review them.

Regards

Javier


signature.asc
Description: Digital signature


Please unblock ttf-kochi-1.0.20030809-8

2008-11-04 Thread Hideki Yamane
On Tue, 04 Nov 2008 07:59:13 +0100
Luk Claes [EMAIL PROTECTED] wrote:
   Please unblock ttf-sazanami-gothic and ttf-sazanami-mincho 
  0.0.1.20040629-5 
   from ttf-sazanami source package, ttf-kochi-gothic, ttf-kochi-mincho, 
   ttf-kochi-naga10-gothic and ttf-kochi-naga10-mincho 1.0.20030809-7 from 
   ttf-kochi and ttf-kochi-naga10 source package to along with 
  ttf-vlgothic, 
   align with ttf-japanese-gothic.ttf alternative. 
 
 All three unblocked

 GREAT thanks Luk!!
 # Those updates make easier some issue about Japanese fonts, 
   very thanks again.

 But, I've updated ttf-kochi (oh, no) to fix trivial bug. The changelog is 
below,


ttf-kochi (1.0.20030809-8) unstable; urgency=low

  * debian/ttf-kochi-mincho.defoma-hints
- I've mistake at 1.0.20030809-5, really add CIDSupplement = 0 now.

 -- Hideki Yamane (Debian-JP) [EMAIL PROTECTED]  Sun, 02 Nov 2008 20:38:52 
+0900


 I'm verry sorry, but please re-unblock ttf-kochi package?


-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/iijmio-mail.jp
 http://wiki.debian.org/HidekiYamane


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Pre-approval for next hugin upload?

2008-11-04 Thread Cyril Brulebois
Adeodato Simó [EMAIL PROTECTED] (03/11/2008):
 Ok; if it eats users' hard drives, it can be removed without worrying
 about missing functionality, heh.

Sure. :)

In unstable with:
,--
| hugin (0.7.0~svn3191+beta5-2) unstable; urgency=low
| 
|   * Update README.Debian to reflect the current status of hugin with
| respect to enblend/enfuse. Also point to the following page, which
| will contain uptodate information about the backports for the lenny
| lifetime:
|   http://pkg-phototools.alioth.debian.org/lenny.html
|   * Add forgotten “tca_correct” binary to debian/hugin-tools.install,
| thanks to Chris Chiappa (Closes: #502104). Another one is
| “matchpoint”, but since it wasn't requested yet, don't touch it at the
| moment.
| 
|  -- Cyril Brulebois [EMAIL PROTECTED]  Tue, 04 Nov 2008 15:00:59 +0100
`--

Happy unblocking!

Mraw,
KiBi.


signature.asc
Description: Digital signature


Re: Please unblock ttf-kochi-1.0.20030809-8

2008-11-04 Thread Luk Claes
Hideki Yamane wrote:
 On Tue, 04 Nov 2008 07:59:13 +0100
 Luk Claes [EMAIL PROTECTED] wrote:
  Please unblock ttf-sazanami-gothic and ttf-sazanami-mincho 
 0.0.1.20040629-5 
  from ttf-sazanami source package, ttf-kochi-gothic, ttf-kochi-mincho, 
  ttf-kochi-naga10-gothic and ttf-kochi-naga10-mincho 1.0.20030809-7 from 
  ttf-kochi and ttf-kochi-naga10 source package to along with 
 ttf-vlgothic, 
  align with ttf-japanese-gothic.ttf alternative. 
 All three unblocked
 
  GREAT thanks Luk!!
  # Those updates make easier some issue about Japanese fonts, 
very thanks again.
 
  But, I've updated ttf-kochi (oh, no) to fix trivial bug. The changelog is 
 below,
 
 
 ttf-kochi (1.0.20030809-8) unstable; urgency=low
 
   * debian/ttf-kochi-mincho.defoma-hints
 - I've mistake at 1.0.20030809-5, really add CIDSupplement = 0 now.
 
  -- Hideki Yamane (Debian-JP) [EMAIL PROTECTED]  Sun, 02 Nov 2008 20:38:52 
 +0900
 
 
  I'm verry sorry, but please re-unblock ttf-kochi package?

I unblocked that version already as that's the one which was in unstable
when I reviewed.

Cheers

Luk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]