Bug#487212: sepolgen: diff for NMU version 1.0.11-3.1

2008-07-20 Thread Jan Hülsbergen
tags 487212 + patch
thanks


Hi,

The following is the diff for my sepolgen 1.0.11-3.1 NMU.

This is my first attempt at an NMU so any feedback would be greatly appreciated.


Regards,
Jan
diff -u sepolgen-1.0.11/debian/local.mk sepolgen-1.0.11/debian/local.mk
--- sepolgen-1.0.11/debian/local.mk
+++ sepolgen-1.0.11/debian/local.mk
@@ -42,7 +42,7 @@
$(make_directory)   $(TMPTOP)
$(make_directory)   $(DOCDIR)
$(make_directory)   $(MAPDIR)
-   $(MAKE) DESTDIR=$(TMPTOP) PACKAGEDIR=$(MODULES_DIR)/$(package) install
+   $(MAKE) DESTDIR=$(TMPTOP) PACKAGEDIR=$(MODULES_DIR)/sepolgen install
$(install_file) debian/changelog  $(DOCDIR)/changelog.Debian
$(install_file) ChangeLog $(DOCDIR)/changelog
gzip -9fqr  $(DOCDIR)/
diff -u sepolgen-1.0.11/debian/changelog sepolgen-1.0.11/debian/changelog
--- sepolgen-1.0.11/debian/changelog
+++ sepolgen-1.0.11/debian/changelog
@@ -1,3 +1,11 @@
+sepolgen (1.0.11-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * change debian/local.mk to install package to the right directory.
+(Closes: #487212)
+
+ -- Jan Hülsbergen [EMAIL PROTECTED]  Sun, 20 Jul 2008 19:14:41 +0200
+
 sepolgen (1.0.11-3) unstable; urgency=low

   * Record the fact that this package has moved to a new git repository.



Bug#485052: python-pyrss2gen: diff for NMU version 1.0.0-4.1

2008-07-20 Thread Jan Hülsbergen
tags 485052 + patch
thanks

Hi,

The following is the diff for my python-pyrss2gen 1.0.0-4.1 NMU.

I am not sure that this is the right solution, but it Works For Me.
diff -u python-pyrss2gen-1.0.0/debian/changelog python-pyrss2gen-1.0.0/debian/changelog
--- python-pyrss2gen-1.0.0/debian/changelog
+++ python-pyrss2gen-1.0.0/debian/changelog
@@ -1,3 +1,10 @@
+python-pyrss2gen (1.0.0-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Add check for python versions in debian/rules. (Closes: #485052)
+
+ -- Jan Hülsbergen [EMAIL PROTECTED]  Sun, 20 Jul 2008 19:45:32 +0200
+
 python-pyrss2gen (1.0.0-4) unstable; urgency=low

   * Bump Standards-Version to 3.7.3.0
diff -u python-pyrss2gen-1.0.0/debian/rules python-pyrss2gen-1.0.0/debian/rules
--- python-pyrss2gen-1.0.0/debian/rules
+++ python-pyrss2gen-1.0.0/debian/rules
@@ -15,7 +15,7 @@

set -e; \
for python in $(PYVERS); do \
-   $$python setup.py clean; \
+   [ -x $$python ]  $$python setup.py clean || true; \
done
find . -name *.py[co] -exec rm -f {} \;
rm -rf build-stamp build
@@ -29,7 +29,8 @@

# Install python module.
for python in $(PYVERS); do \
-   $$python setup.py install --root `pwd`/debian/python-pyrss2gen; \
+   [ -x $$python ]  $$python setup.py install \
+   --root `pwd`/debian/python-pyrss2gen || true; \
done

touch build-stamp



Bug#488743: netbeans-platform: should not be available on platforms that don't have a sun jre

2008-06-30 Thread Jan Hülsbergen
Package: netbeans-platform
Severity: important

The package netbeans-platform depends on
sun-java5-jdk | sun-java5-jre | sun-java6-jdk | sun-java6-jre
all of which are not available on ppc (and probably other architectures).

Once I have the time to 'hack' my java-package to work with recent versions of
the IBM JDK (see #487631) and compile libstdc++5 for ppc, I will check if
netbeans works with this so maybe there is an alternative.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.25-2-powerpc
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Bug#477799: python-m2crypto: missing inspect import makes m2urllib2 fail

2008-04-25 Thread Jan Hülsbergen
Package: python-m2crypto
Version: 0.18.2-1
Severity: important
Tags: patch

m2urllib2.py in M2Crypto uses from urllib 2 import *, which in python 2.4 also
brought in inspect, which is no longer the case in 2.5. Adding an explicit
inspect import works fine:

---snip---
--- m2urllib2.py.orig   2008-04-25 13:07:10.0 +0200
+++ m2urllib2.py2008-04-25 13:07:40.0 +0200
@@ -12,6 +12,7 @@
 
 
 from urllib2 import *
+import inspect
 import urlparse
 
 import SSL
---snap---

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.24-1-powerpc
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-m2crypto depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libssl0.9.8   0.9.8g-8   SSL shared libraries
ii  python2.5.2-1An interactive high-level object-o
ii  python-support0.7.7  automated rebuilding support for P

python-m2crypto recommends no packages.

-- no debconf information



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



Bug#438714: Possible patch

2007-08-23 Thread Jan Hülsbergen
Hello,

I just ran into the same issue and the following fixes it for me:

---snip---
--- DebPackage.py.orig  2007-08-24 02:30:26.0 +0200
+++ DebPackage.py   2007-08-24 02:31:27.0 +0200
@@ -232,7 +232,7 @@
 
 # check arch
 arch = self._sections[Architecture]
-if  arch != all and arch != apt_pkg.CPU:
+if  arch != all and arch !=
apt_pkg.Config[APT::Architecture]:
 self._dbg(1,ERROR: Wrong architecture dude!)
 self._failureString = _(Wrong architecture '%s' % arch)
 return False
---snap---
-- 
Jan Hülsbergen
Tel: +49 2241 257 99 73
Jabber: [EMAIL PROTECTED]


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


Bug#438714: Patch again

2007-08-23 Thread Jan Hülsbergen
Hello again,

sorry for the garbled patch, this time properly, as attachement.

regards,
Jan
--- DebPackage.py.orig	2007-08-24 02:30:26.0 +0200
+++ DebPackage.py	2007-08-24 02:31:27.0 +0200
@@ -232,7 +232,7 @@
 
 # check arch
 arch = self._sections[Architecture]
-if  arch != all and arch != apt_pkg.CPU:
+if  arch != all and arch != apt_pkg.Config[APT::Architecture]:
 self._dbg(1,ERROR: Wrong architecture dude!)
 self._failureString = _(Wrong architecture '%s' % arch)
 return False


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


Bug#433440: sonata: New upstream version fixes Bug with password-protected mpd-connections

2007-07-17 Thread Jan Hülsbergen
Package: sonata
Version: 1.2-1
Severity: important

When starting sonata 1.2 with a password configured it crashes:
--snip--
Traceback (most recent call last):
  File /usr/bin/sonata, line 48, in ?
app = sonata.Base()
  File /usr/lib/python2.4/site-packages/sonata.py, line 539, in __init__
self.connect(blocking=True)
  File /usr/lib/python2.4/site-packages/sonata.py, line 1256, in connect
self.connect2(blocking, force_connection)
  File /usr/lib/python2.4/site-packages/sonata.py, line 1268, in connect2
self.conn = Connection(self)
  File /usr/lib/python2.4/site-packages/sonata.py, line 161, in __init__
mpdclient3.connect(host=host, port=port, password=password)
  File /usr/lib/python2.4/site-packages/mpdclient3.py, line 338, in connect
conn.password(password)
AttributeError: 'mpd_connection' object has no attribute 'password'
--snap--

This bug is known and fixed in the latest upstream release (1.2.1), so
please upgrade to that. http://sonata.berlios.de/changelog.html

Many Thanks in Advance.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.21jan (PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages sonata depends on:
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libglib2.0-02.12.12-1+b1 The GLib library of C routines
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libpango1.0-0   1.16.4-3 Layout and rendering of internatio
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.1-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  python  2.4.4-6  An interactive high-level object-o
ii  python-central  0.5.14   register and build utility for Pyt
ii  python-dbus 0.82.0-1 simple interprocess messaging syst
ii  python-gtk2 2.10.6-1 Python bindings for the GTK+ widge

sonata recommends no packages.

-- no debconf information


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



Bug#322632: (no subject)

2007-03-08 Thread Jan Hülsbergen
Hi,

the behaviour described is still present in version 4:3.5.5a.dfsg.1-6. 

But after reading the CGI spec and searching the web, I don't think this 
really *is* a bug. It differs from what apache does in such a situation 
though, so I might be wrong but from what I've gathered, treating everything 
up to the first occurrence of '?' as part of the script's path is OK.

HTH,
Jan


pgpKINdkLP69x.pgp
Description: PGP signature


Bug#365955: tray icons for non-KDE apps detach from kicker system tray after kicker restart (debian bug #365955)

2007-03-08 Thread Jan Hülsbergen
This still happens and is reported upstream:

http://bugs.kde.org/show_bug.cgi?id=131520

HTH,
Jan


pgpz3vvAmEA5t.pgp
Description: PGP signature


Bug#413695: python-beautifulsoup: Description falsely states the package is only for python2.3

2007-03-06 Thread Jan Hülsbergen
Package: python-beautifulsoup
Version: 3.0.1-2
Severity: minor

The description of this package contains the line

This package contains BeautifulSoup for Python v2.3.

which is true but also missleading, since it contains BeautifulSoup
for every python version supplied since the transition to the new
python-policy.

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-jan
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages python-beautifulsoup depends on:
ii  python-support0.5.6  automated rebuilding support for p

python-beautifulsoup recommends no packages.

-- no debconf information


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



Bug#411652: incomplete upload?

2007-02-21 Thread Jan Hülsbergen
I just built the bacula source package (1.38.11-7) and the resulting packages 
don't have the mentioned problem. The +b1 does not show up in any of the 
version numbers of any of the built packages, which makes me (naively?) 
believe, that a proper rebuild would fix the problem in the archives, too.


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



Bug#403886: tetex-doc preinst: line 8: [: too many arguments

2006-12-20 Thread Jan Hülsbergen
Package: tetex-doc
Version: 3.0.dfsg.3-4
Severity: normal

When upgrading tetex-doc I got the error:

/var/lib/dpkg/tmp.ci/preinst: line 8: [: too many arguments

In /var/lib/dpkg/info/tetex-doc.preinst I found on line 8:

if [ `md5sum $OLDCONFFILE` = f2b4328c1403ac91f92d8b144c1be7fe ]; then

the md5sum output is not just the checksum but checksum filename. One
solution would be to change the line into

if [ `md5sum $OLDCONFFILE|cut -d' ' -f1` = f2b4328c1403ac91f92d8b144c1be7fe ]; 
then

but somehow I'm sure there's a better one.


-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-k7
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

tetex-doc depends on no packages.

Versions of packages tetex-doc recommends:
ii  gs-esp [postscript-vi 8.15.3.dfsg.1-1The Ghostscript PostScript interpr
ii  gs-gpl [postscript-vi 8.54.dfsg.1-5  The GPL Ghostscript PostScript int
ii  iceweasel [www-browse 2.0+dfsg-1 lightweight web browser based on M
ii  kghostview [pdf-viewe 4:3.5.5-2  PostScript viewer for KDE
ii  konqueror [www-browse 4:3.5.5a.dfsg.1-3  KDE's advanced file manager, web b
ii  kpdf [pdf-viewer] 4:3.5.5-2  PDF viewer for KDE
ii  links [www-browser]   0.99+1.00pre12-1.1 Character mode WWW browser
ii  tetex-bin 3.0-27 The teTeX programs
ii  xemacs21-mule [www-br 21.4.19-2  highly customizable text editor --
ii  xpdf  3.01-9 Portable Document Format (PDF) sui
ii  xpdf-reader [pdf-view 3.01-9 Portable Document Format (PDF) sui
ii  xpdf-utils [pdf-viewe 3.01-9 Portable Document Format (PDF) sui

-- no debconf information


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