Bug#638209: Additional package checks

2011-08-18 Thread Scott Kitterman
kscope FTBFS due to 631779, but gets to that stage with the new qscintilla2, 
so is probably fine.

smokekde builds fine.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638325: monkeystudio: Will FTBFS with new Qscintilla2 (2.5.1) once uploaded

2011-08-18 Thread Scott Kitterman
Package: monkeystudio
Version: 1.8.4.0-2
Severity: wishlist
Tags: patch

Due to Bug 638209 it's necessary to bump ABI for qscintilla2 sooner rather
that later. Most likely (I am waiting for an answer from the release team)
this will be done by updating to the newest upstream version.  Unfortunately
monkeystudio is FTBFS with this version due to API changes.  Fortunately,
there is already a fix in svn for monkeystudio (their svn rev 638209).

Patch is attached.  This can be uploaded in advance of the new qscintilla2.
Index: monkey/src/pMonkeyStudio.cpp
===
--- monkey/src/pMonkeyStudio.cpp	(revision 3907)
+++ monkey/src/pMonkeyStudio.cpp	(revision 3908)
@@ -733,8 +733,10 @@
 		else if ( lng == c++ )
 			return qobject_castQsciLexerCPP*( lexer )-foldCompact();
 #if QSCINTILLA_VERSION = 0x020300
+	#if QSCINTILLA_VERSION  0x020500
 		else if ( lng == tcl )
 			return qobject_castQsciLexerTCL*( lexer )-foldCompact();
+	#endif
 		else if ( lng == fortran )
 			return qobject_castQsciLexerFortran*( lexer )-foldCompact();
 		else if ( lng == fortran77 )


Bug#638325: Release team said go ahead with the qscintilla2 transition

2011-08-18 Thread Scott Kitterman
I'll be glad to upload the fix for this if you want after qscintilla2 2.5.1 is 
in the archive.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638325: Other rebuilds in progress

2011-08-18 Thread Scott Kitterman
Great.  I'll leave it to you then.  All the other rebuilds seem to be going 
well, so the way is clear whenever you're ready.

Thanks and sorry for the short notice.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#640252: override: qscintilla2/optional

2011-09-03 Thread Scott Kitterman
Package: ftp.debian.org
Severity: normal

There's on reason for these to be extra.  They aren't alternatives to anything
else and standard packages for doing what they do.

bqscintilla2-designer_2.5.1-1_i386.deb: package says priority is optional, 
override says extra.
libqscintilla2-dev_2.5.1-1_all.deb: package says priority is optional, override 
says extra.
libqscintilla2-doc_2.5.1-1_all.deb: package says priority is optional, override 
says extra.
python-qscintilla2_2.5.1-1_i386.deb: package says priority is optional, 
override says extra.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#640960: Fixed upstream in 0.7.3

2011-09-08 Thread Scott Kitterman
The 0.7.2 to 0.7.3 diff is almost all the fix for this.  It should be a 
reasonable basis for fixing 0.6, but I didn't actually compare the code.

This issue is being actively used.

Scott K


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


Bug#636777: New version uploaded

2011-08-24 Thread Scott Kitterman
Would you please check and see if 4.12.4 I just uploaded to Unstable works any 
better for you.

Scott K


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


Bug#639507: nlkt: Updates for qwt6 transition

2011-08-27 Thread Scott Kitterman
Package: nlkt
Version: 0.3.2.1-4
Severity: wishlist
Tags: patch

The qwt source package is now qwt6 (there is a separate qwt5 source recently
uploaded in Debian).  The attached patch gets nlkt to build with qwt6, but I
did not test if the application works correctly with qwt6 or not.
diff -u nlkt-0.3.2.1/debian/changelog nlkt-0.3.2.1/debian/changelog
--- nlkt-0.3.2.1/debian/changelog
+++ nlkt-0.3.2.1/debian/changelog
@@ -1,3 +1,13 @@
+nlkt (0.3.2.1-5) UNRELEASED; urgency=low
+
+  * Build-depend on libqwt-dev instead of libqwt5-qt4-dev for qwt6 transition
+  * Update src/nlkt.pro to use qwt6 include directory and library name for
+linking
+  * Update src/StatsWidget.cpp to use setSamples instead of setData for qwt6 
+API
+
+ -- Scott Kitterman sc...@kitterman.com  Fri, 26 Aug 2011 21:43:04 -0400
+
 nlkt (0.3.2.1-4) unstable; urgency=low
 
   * debian/control:
diff -u nlkt-0.3.2.1/debian/control nlkt-0.3.2.1/debian/control
--- nlkt-0.3.2.1/debian/control
+++ nlkt-0.3.2.1/debian/control
@@ -2,7 +2,7 @@
 Section: x11
 Priority: extra
 Maintainer: Eugene V. Lyubimkin jac...@debian.org
-Build-Depends: dpkg-dev (= 1.14.17), debhelper (= 7), libqt4-dev, libqwt5-qt4-dev
+Build-Depends: dpkg-dev (= 1.14.17), debhelper (= 7), libqt4-dev, libqwt-dev
 Standards-Version: 3.9.1
 Homepage: http://sf.net/projects/nlkt
 
only in patch2:
unchanged:
--- nlkt-0.3.2.1.orig/src/StatsWidget.cpp
+++ nlkt-0.3.2.1/src/StatsWidget.cpp
@@ -408,7 +408,7 @@
 		y_max = y[i]; \
 	} \
 } \
-this- STAT_STRING##Curve-setData(x, y, plotSize); \
+this- STAT_STRING##Curve-setSamples(x, y, plotSize); \
 this- STAT_STRING##Plot-axisScaleEngine(QwtPlot::yLeft)-setAttribute( \
 		QwtScaleEngine::IncludeReference, \
 		this-setMinimumYValueOnPlotsToZeroCheckBox-isChecked()); \
only in patch2:
unchanged:
--- nlkt-0.3.2.1.orig/src/nlkt.pro
+++ nlkt-0.3.2.1/src/nlkt.pro
@@ -6,8 +6,8 @@
 TARGET = 
 DEPENDPATH += .
 DEFINES += NDEBUG
-LIBS += -lqwt-qt4
-INCLUDEPATH += /usr/include/qwt-qt4
+LIBS += -lqwt
+INCLUDEPATH += /usr/include/qwt
 
 CONFIG += debug_and_release
 


Bug#642208: ITP: opengtl -- Set of library for using transformation algorithms

2011-09-20 Thread Scott Kitterman
There is an existing Ubuntu package for opengtl you might use as a starting 
point. You can dget the most recent version from:

https://launchpad.net/ubuntu/+archive/primary/+files/opengtl_0.9.15-0ubuntu3.dsc



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#642908: Please don't

2011-09-25 Thread Scott Kitterman
There's no basis in policy for trying to push DEP-5 format on people.  If 
people want to spend their time on converting perfectly adequate copyright 
files into a new complex format that has more rules and is less readable, they 
are welcome to, but it's not appropriate to use Lintian as a vehicle to push 
it on the rest of us (if you want to use a Debian package to push Debian 
developers to do things your way regardless, dpkg is the package you want to 
help maintain).


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


Bug#622279: From #debian-release discussion on the bug

2011-08-02 Thread Scott Kitterman
[04:46:56] luk ScottK: especially gobject-introspection, libimobiledevice, 
libvirt and openbabel should get fixed as they would take too many reverse deps 
with them when considering temporary removal from testing


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


Bug#633461: Unable to replicate

2011-08-04 Thread Scott Kitterman
I can't replicate this.  Is this still a problem?

Scott K


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


Bug#633461: Still needs fixing

2011-08-05 Thread Scott Kitterman
I misunderstood the bug when I was trying to replicate it.  This should still 
be fixed, but if needed, we can work around it with a quick binNMU after 2.7 is 
default in Sid.


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


Bug#637105: performous: Needs changes for libav 0.7 API (Experimental)

2011-08-08 Thread Scott Kitterman
Package: performous
Version: 0.6.1-2
Severity: wishlist
Tags: patch

libav 0.7 is currently in Experimental.  It has some API changes that affect
performous.  The attached patch will enable performous to build against libav
0.7.
diff -Nru performous-0.6.1/debian/changelog performous-0.6.1/debian/changelog
--- performous-0.6.1/debian/changelog	2011-06-09 12:17:46.0 -0400
+++ performous-0.6.1/debian/changelog	2011-08-08 09:49:35.0 -0400
@@ -1,3 +1,10 @@
+performous (0.6.1-3) UNRELEASED; urgency=low
+
+  * Add debian/patches/libav_api_change.patch to support building with libav
+0.7
+
+ -- Scott Kitterman sc...@kitterman.com  Mon, 08 Aug 2011 09:48:50 -0400
+
 performous (0.6.1-2) unstable; urgency=low
 
   * Team upload.
diff -Nru performous-0.6.1/debian/control performous-0.6.1/debian/control
--- performous-0.6.1/debian/control	2011-06-09 11:49:24.0 -0400
+++ performous-0.6.1/debian/control	2011-08-08 09:46:46.0 -0400
@@ -9,7 +9,7 @@
  libboost-thread-dev (= 1.36), libboost-serialization-dev (= 1.36),
  libboost-program-options-dev (= 1.36), libboost-regex-dev (= 1.36),
  libboost-filesystem-dev (= 1.36),
- libavcodec-dev, libavformat-dev, libswscale-dev,
+ libavcodec-dev (= 0.7), libavformat-dev, libswscale-dev,
  libmagick++-dev, libsamplerate0-dev, libxml++2.6-dev,
  libasound2-dev, libjack-dev, libpulse-dev, portaudio19-dev,
  libgstreamer0.10-dev, libglew1.5-dev
diff -Nru performous-0.6.1/debian/patches/libav_api_change.patch performous-0.6.1/debian/patches/libav_api_change.patch
--- performous-0.6.1/debian/patches/libav_api_change.patch	1969-12-31 19:00:00.0 -0500
+++ performous-0.6.1/debian/patches/libav_api_change.patch	2011-08-08 09:47:38.0 -0400
@@ -0,0 +1,16 @@
+libav 0.7 API change
+Index: performous-0.6.1/game/ffmpeg.cc
+===
+--- performous-0.6.1.orig/game/ffmpeg.cc	2011-08-08 09:36:02.596685105 -0400
 performous-0.6.1/game/ffmpeg.cc	2011-08-08 09:37:24.380685064 -0400
+@@ -60,8 +60,8 @@
+ 	for (unsigned int i=0; ipFormatCtx-nb_streams; i++) {
+ 		AVCodecContext* cc = pFormatCtx-streams[i]-codec;
+ 		cc-workaround_bugs = FF_BUG_AUTODETECT;
+-		if (videoStream == -1  cc-codec_type==CODEC_TYPE_VIDEO) videoStream = i;
+-		if (audioStream == -1  cc-codec_type==CODEC_TYPE_AUDIO) audioStream = i;
++		if (videoStream == -1  cc-codec_type==AVMEDIA_TYPE_VIDEO) videoStream = i;
++		if (audioStream == -1  cc-codec_type==AVMEDIA_TYPE_AUDIO) audioStream = i;
+ 	}
+ 	if (videoStream == -1  decodeVideo) throw std::runtime_error(No video stream found);
+ 	if (audioStream == -1  decodeAudio) throw std::runtime_error(No audio stream found);
diff -Nru performous-0.6.1/debian/patches/series performous-0.6.1/debian/patches/series
--- performous-0.6.1/debian/patches/series	2011-06-09 11:41:15.0 -0400
+++ performous-0.6.1/debian/patches/series	2011-08-08 09:35:48.0 -0400
@@ -1,2 +1,3 @@
 desktop.patch
 boost_filesystem_v2.patch
+libav_api_change.patch


Bug#628318: Patch from Ubuntu

2011-05-30 Thread Scott Kitterman
Patch attached.

Scott K
Fixes FTBFS with KDE 4.5 and later, patch from Ubuntu.
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/natty/kcheckgmail/natty/revision/18
diff -Nur -x '*.orig' -x '*~' kcheckgmail-0.6.0//doc/en/index.docbook kcheckgmail-0.6.0.new//doc/en/index.docbook
--- kcheckgmail-0.6.0//doc/en/index.docbook	2010-01-13 17:57:55.0 -0500
+++ kcheckgmail-0.6.0.new//doc/en/index.docbook	2011-05-29 22:44:07.238012372 -0400
@@ -1,5 +1,5 @@
 ?xml version=1.0 ?
-!DOCTYPE book PUBLIC -//KDE//DTD DocBook XML V4.1.2-Based Variant V1.1//EN dtd/kdex.dtd [
+!DOCTYPE book PUBLIC -//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN dtd/kdex.dtd [
   !ENTITY kcheckgmail KCheckGMail
   !ENTITY % addindex IGNORE
   !ENTITY % English INCLUDE  !-- change language only here --   


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


Bug#633408: archivemail FTBFS with python2.7 as default

2011-07-09 Thread Scott Kitterman
Package: archivemail
Version: 0.8.2-1
Severity: serious
Justification: fails to build from source (but built successfully in the past)

Using python and python-minimal from Experimental, the package FTBFS.

The last bit of the build log:

../test_archivemail
.EE.E...E...
==
ERROR: testMixed (__main__.TestMaildir)
--
Traceback (most recent call last):
  File ./test_archivemail, line 1432, in testMixed
self.verify()
  File ./test_archivemail, line 1275, in verify
self._verify_archive()
  File ./test_archivemail, line 1337, in _verify_archive
for msg in mb:
  File /usr/lib/python2.7/mailbox.py, line 2007, in next
self._search_start()
  File /usr/lib/python2.7/mailbox.py, line 2028, in _search_start
self.fp.seek(pos)
  File ./test_archivemail, line 95, in seek
gzip.GzipFile.seek(self, offset)
  File /usr/lib/python2.7/gzip.py, line 423, in seek
count = offset - self.offset
TypeError: unsupported operand type(s) for -: 'NoneType' and 'int'

==
ERROR: testMixedExisting (__main__.TestMaildir)
--
Traceback (most recent call last):
  File ./test_archivemail, line 1437, in testMixedExisting
self.verify()
  File ./test_archivemail, line 1275, in verify
self._verify_archive()
  File ./test_archivemail, line 1337, in _verify_archive
for msg in mb:
  File /usr/lib/python2.7/mailbox.py, line 2007, in next
self._search_start()
  File /usr/lib/python2.7/mailbox.py, line 2028, in _search_start
self.fp.seek(pos)
  File ./test_archivemail, line 95, in seek
gzip.GzipFile.seek(self, offset)
  File /usr/lib/python2.7/gzip.py, line 423, in seek
count = offset - self.offset
TypeError: unsupported operand type(s) for -: 'NoneType' and 'int'

==
ERROR: testOld (__main__.TestMaildir)
--
Traceback (most recent call last):
  File ./test_archivemail, line 1422, in testOld
self.verify()
  File ./test_archivemail, line 1275, in verify
self._verify_archive()
  File ./test_archivemail, line 1337, in _verify_archive
for msg in mb:
  File /usr/lib/python2.7/mailbox.py, line 2007, in next
self._search_start()
  File /usr/lib/python2.7/mailbox.py, line 2028, in _search_start
self.fp.seek(pos)
  File ./test_archivemail, line 95, in seek
gzip.GzipFile.seek(self, offset)
  File /usr/lib/python2.7/gzip.py, line 423, in seek
count = offset - self.offset
TypeError: unsupported operand type(s) for -: 'NoneType' and 'int'

==
ERROR: testOld (__main__.TestMaildirCopy)
archiving an old maildir mailbox with the 'copy' option
--
Traceback (most recent call last):
  File ./test_archivemail, line 1549, in testOld
self.verify()
  File ./test_archivemail, line 1275, in verify
self._verify_archive()
  File ./test_archivemail, line 1337, in _verify_archive
for msg in mb:
  File /usr/lib/python2.7/mailbox.py, line 2007, in next
self._search_start()
  File /usr/lib/python2.7/mailbox.py, line 2028, in _search_start
self.fp.seek(pos)
  File ./test_archivemail, line 95, in seek
gzip.GzipFile.seek(self, offset)
  File /usr/lib/python2.7/gzip.py, line 423, in seek
count = offset - self.offset
TypeError: unsupported operand type(s) for -: 'NoneType' and 'int'

--
Ran 95 tests in 2.428s

FAILED (errors=4)

Full build log attached.

-- System Information:
Debian Release: squeeze/sid
dpkg-buildpackage -us -uc
dpkg-buildpackage: export CFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export CPPFLAGS from dpkg-buildflags (origin: vendor): 
dpkg-buildpackage: export CXXFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export FFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export LDFLAGS from dpkg-buildflags (origin: vendor): 
tail: cannot open `debian/changelog' for reading: No such file or directory
dpkg-buildpackage: error: tail of debian/changelog gave error exit status 1
root@Scott-Latitude-E6320:/home# cd archivemail-0.8.2/
root@Scott-Latitude-E6320:/home/archivemail-0.8.2# vim debian/changelog 
root@Scott-Latitude-E6320:/home/archivemail-0.8.2# cd archivemail-0.8.2/
-bash: cd: archivemail-0.8.2/: No such file or directory
root@Scott-Latitude-E6320:/home/archivemail-0.8.2# dpkg-buildpackage -us -uc
dpkg-buildpackage: export CFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export CPPFLAGS 

Bug#634967: Should not diverge from upstream

2011-07-21 Thread Scott Kitterman
Agreed.  There were other, similar opinions in that thread:

http://lists.debian.org/debian-python/2011/07/msg00035.html

Once the PEP is approved and upstream Python finds a way to implement it (it 
would be a new feature and features aren't added to point releases and there 
will be no pyhton2.8 - the implementation path is murky at best) then Debian 
should (even though I don't like the idea) follow upstream on this.  In the 
meantime, this should be dropped.


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


Bug#678828: ITP: libticables -- Texas Instruments link cables library

2012-06-24 Thread Scott Kitterman
On Sunday, June 24, 2012 10:50:58 AM Albert Huang wrote:
 Package: wnpp
 Severity: wishlist
 Owner: Albert Huang alberth.deb...@gmail.com
 
 * Package name: libticables
   Version : 1.3.3
   Upstream Author : Lionel Debroux lionel_debr...@yahoo.fr
 * URL : http://lpg.ticalc.org/prj_tilp/
 * License : GPL
   Programming Lang: C
   Description : Texas Instruments link cables library
 
 The libticables is a library providing support for operations on Texas
 Instruments calculators link cables. All link cables are supported
 read/write.

Already in the archive:

http://packages.qa.debian.org/libt/libticables.html

Scott K



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679003: override: python-clamav:oldlibs/extra

2012-06-25 Thread Scott Kitterman
Package: ftp.debian.org
Severity: normal

Package is now a transitional package and should be moved to oldlibs.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#673030: Bug 673030 still a problem?

2012-06-27 Thread Scott Kitterman
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=673030

You reported this bug at a time when Qt had been updated in Unstable to 4.8, 
but Sip and PyQt hadn't been updated to match.  They have been now, so I 
expect this problem has resolved itself.  Is this still and issue for you?



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679548: Please test current version

2012-06-29 Thread Scott Kitterman
I've built test packages of the current version for Squeeze 
http://kitterman.com/dkim/opendkim/.  Please test and see if they resolve your 
issue.

Scott K

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


Bug#678247: Thanks for the troubleshooting

2012-06-30 Thread Scott Kitterman
I've looked into this a bit and the bogus proxy host is a function of whatever 
debconf feeds to the postinst.  I can't tell if it's inadvertent data entry or 
some other issue, but it's not a clamav bug.  The part of this that is a 
clamav bug is that if the proxy port is not specified, the hostname is 
incorrectly and blindly copied into the configuration file as the port number.

This is obviously a bug and inconsistent with the debconf template that 
promises the port entry is optional.  I'll fix the postinst to behave the way 
the template says it will.

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


Bug#678247: Fix debdiff

2012-06-30 Thread Scott Kitterman
Attached.diff -u clamav-0.97.5+dfsg/debian/changelog clamav-0.97.5+dfsg/debian/changelog
--- clamav-0.97.5+dfsg/debian/changelog
+++ clamav-0.97.5+dfsg/debian/changelog
@@ -1,3 +1,11 @@
+clamav (0.97.5+dfsg-3) unstable; urgency=low
+
+  * Fix proxy port configuration handling in clamav-freshclam.postinst so that
+failure to specify port does not result in an invalid configuration
+(Closes: #678247), (LP: #784797)
+
+ -- Scott Kitterman sc...@kitterman.com  Sat, 30 Jun 2012 21:35:33 -0400
+
 clamav (0.97.5+dfsg-2) unstable; urgency=medium
 
   * Medium urgency due to security fixes
diff -u clamav-0.97.5+dfsg/debian/clamav-freshclam.postinst.in clamav-0.97.5+dfsg/debian/clamav-freshclam.postinst.in
--- clamav-0.97.5+dfsg/debian/clamav-freshclam.postinst.in
+++ clamav-0.97.5+dfsg/debian/clamav-freshclam.postinst.in
@@ -81,6 +81,9 @@
 url=`echo $RET | sed -e 's,^http://,,g' | sed -e 's,/$,,g'`
 phost=`echo $url | cut -d':' -f 1`
 pport=`echo $url | cut -d':' -f 2`
+if [ $pport = $phost ]; then
+pport=
+fi
 fullurl=$RET
 db_metaget clamav-freshclam/proxy_user value || true
 if [ $RET !=  ]; then
@@ -239,10 +242,12 @@
 grep -q $m $DEBCONFILE || echo DatabaseMirror $m  $DEBCONFILE
   done
 
-  if [ -n $phost ]  [ -n $pport ]; then
+  if [ -n $phost ]; then
 echo # Proxy: $fullurl  $DEBCONFILE
 echo HTTPProxyServer $phost  $DEBCONFILE
-echo HTTPProxyPort $pport  $DEBCONFILE
+if [ -n $pport ]; then
+  echo HTTPProxyPort $pport  $DEBCONFILE
+fi
   fi
   if [ -n $puser ]  [ -n $ppass ]; then
 echo # Proxy authentication: $fulluser  $DEBCONFILE


Bug#678247: [Pkg-clamav-devel] Bug#678247: Fix debdiff

2012-07-01 Thread Scott Kitterman
I did test it. It defaults to 8080 if you don't specify.

Stephen Gran sg...@debian.org wrote:

This one time, at band camp, Scott Kitterman said:
 Attached.

Hi,

Have you tested that that is a valid config file? I have some vague
memory of freshclam not being happy with a proxyhost but not a
proxyport.

Cheers,
-- 
_

| ,''`. Stephen Gran |
| : :' : sg...@debian.org |
| `. `' Debian user, admin, and developer |
| `- http://www.debian.org |
_



Bug#679819: [Python-modules-team] Bug#679819: Dropping Provides field broke depending software (python-avogadro)

2012-07-01 Thread Scott Kitterman
The Avogadro dependency is incorrect and should be fixed. Depends: python2.7, 
python-qt4 will do what you want. Since, if Avogadro needs 2.7, you need to 
depend on it directly, also depending on python2.7-qt4 is redundant.

Scott K
P.S. Due to a multi-day power outage all I've got to work from is my phone. 
Apologies in advance if my reply seems curt.

Bug#679819: Dropping Provides field broke depending software (python-avogadro)

2012-07-01 Thread Scott Kitterman
That's a bug in the policy I failed to notice.  It should be restricted to 
packages that build modules only for the non-default version of Python which 
Avogadro doesn't.  One or the other package needs to be changed.  I agree with 
that.

python-avogadro is the only package in the archive that depends on python2.7-
qt4.  I think it makes more sense to fix it there than in python-qt4 and depend 
on a bug in poilcy, but since that's what it says, I'll fix it in python-qt4 if 
you prefer.

Note that XS-Python-Version: current is long deprecated and has never been 
supported by dh_python2, so that part of your package isn't doing anything.

Here's all that's needed:

diff -Nru avogadro-1.0.3/debian/changelog avogadro-1.0.3/debian/changelog
--- avogadro-1.0.3/debian/changelog 2012-06-06 16:55:16.0 -0400
+++ avogadro-1.0.3/debian/changelog 2012-07-01 20:10:16.0 -0400
@@ -1,3 +1,11 @@
+avogadro (1.0.3-6) unstable; urgency=low
+
+  * Drop semi-obsolete use of version specify python packages to restore
+installability (python-qt4 stopped providing one of the required packages
+(Closes: #679819)
+
+ -- ...  Sun, 01 Jul 2012 20:08:53 -0400
+
 avogadro (1.0.3-5) unstable; urgency=low
 
   * debian/control (Uploaders): Removed Jordan Mantha. Thanks for your work.
diff -Nru avogadro-1.0.3/debian/control avogadro-1.0.3/debian/control
--- avogadro-1.0.3/debian/control   2012-06-06 16:50:23.0 -0400
+++ avogadro-1.0.3/debian/control   2012-07-01 20:08:49.0 -0400
@@ -99,6 +99,9 @@
 Priority: extra
 XB-Python-Version: ${python:Versions}
 Depends: ${misc:Depends},
+ python-numpy,
+ python-qt4,
+ python-sip,
  ${pyavo:Depends},
  ${python:Depends},
  ${shlibs:Depends},
diff -Nru avogadro-1.0.3/debian/rules avogadro-1.0.3/debian/rules
--- avogadro-1.0.3/debian/rules 2012-05-04 10:42:44.0 -0400
+++ avogadro-1.0.3/debian/rules 2012-07-01 20:07:32.0 -0400
@@ -31,6 +31,3 @@
dh_numpy -ppython-avogadro
dh_sip
 
-override_dh_gencontrol:
-   dh_gencontrol -- -V'pyavo:Depends=python$(PYTHON_VERSION)-numpy, 
python$(PYTHON_VERSION)-qt4, python$(PYTHON_VERSION)-sip'
-

You'll find that it makes absolutely no difference about what packages are 
pulled in when it's installed.  If you'd be willing to fix it this way, I'll 
take on talking to the release team about it.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679852: opendkim: please use restorecon to apply a SE Linux label after creating a /run dir

2012-07-02 Thread Scott Kitterman
...
 + [ -x /sbin/restorecon ]  /sbin/restorecon $RUNDIR
...
Lintian whines about use of the full path here.  Should this be ignored 
because we always want to use the system provide binary and not allow 
administrators to install their own?

Also, if you want this in for Wheezy, I don't mind uploading it if you get the 
approval from the release team.

Scott K



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679852: opendkim: please use restorecon to apply a SE Linux label after creating a /run dir

2012-07-02 Thread Scott Kitterman
I have an RC bug in Squeeze that I'm investigating.  I believe it's fixed in 
Wheezy already, be it would probably be best to wait on asking the release 
team until after I figure out if I need to fix something due to this other bug.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679548: Partly real/Partly documentation

2012-07-02 Thread Scott Kitterman
I worked through this with upstream and here's the findings:

 PeerList  199.192.231.53,2605:eb00:100:1::2085:29b0

is a real bug.  The DB parsing code is treating everything before :: as a DB 
type.  This is filed upstream on Sourceforge as bug #3539493.  They will 
release an update to fix this.

 Socket   inet:8891@::1

This is not a bug so much as a documentation issue (which upstream has said 
they will address).  If you use this instead, it works:

Socket   inet6:8891@[::1]


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


Bug#679852: opendkim: please use restorecon to apply a SE Linux label after creating a /run dir

2012-07-02 Thread Scott Kitterman
Bug #679548 is going to need an upload, so I'll see if the release team will 
agree to this too.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679548: Work around

2012-07-02 Thread Scott Kitterman
Comma separated list is a known DB type since opendkm 1.2, so you can work 
around this issue by forcing it.  Try:

PeerListcsl:199.192.231.53,2605:eb00:100:1::2085:29b0





-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679979: unblock: opendkim/2.6.2-1

2012-07-02 Thread Scott Kitterman
-2.6.1/debian/changelog opendkim-2.6.2/debian/changelog
--- opendkim-2.6.1/debian/changelog	2012-07-02 15:25:43.0 -0400
+++ opendkim-2.6.2/debian/changelog	2012-07-02 15:25:43.0 -0400
@@ -1,3 +1,14 @@
+opendkim (2.6.2-1) unstable; urgency=low
+
+  * New upstream release (addresses three bugs that affect the Debian package)
+- Fix bug #SF3539449: Clarify legal Socket values.  Requested by Scott
+  Kitterman.
+- Fix bug #SF3539493: Handle certain cases of data set names that appear
+  to be comma-separated lists which include IPv6 addresses.  Reported by
+  Scott Kitterman. (Closes: #679548)
+
+ -- Scott Kitterman sc...@kitterman.com  Mon, 02 Jul 2012 14:44:38 -0400
+
 opendkim (2.6.1-1) unstable; urgency=low
 
   * New upstream release
diff -Nru opendkim-2.6.1/libopendkim/dkim.h opendkim-2.6.2/libopendkim/dkim.h
--- opendkim-2.6.1/libopendkim/dkim.h	2012-06-24 23:37:15.0 -0400
+++ opendkim-2.6.2/libopendkim/dkim.h	2012-07-02 14:12:01.0 -0400
@@ -34,7 +34,7 @@
 **  	pp == patch number
 */
 
-#define	OPENDKIM_LIB_VERSION	0x02060100
+#define	OPENDKIM_LIB_VERSION	0x02060200
 
 #ifdef __STDC__
 # ifndef __P
diff -Nru opendkim-2.6.1/opendkim/opendkim.8.in opendkim-2.6.2/opendkim/opendkim.8.in
--- opendkim-2.6.1/opendkim/opendkim.8.in	2012-06-24 23:33:43.0 -0400
+++ opendkim-2.6.2/opendkim/opendkim.8.in	2012-07-02 13:58:53.0 -0400
@@ -4,7 +4,6 @@
 \- DKIM signing and verifying filter for MTAs
 .SH SYNOPSIS
 .B opendkim
-\-p socketspec
 [\-A]
 [\-b modes]
 [\-c canon]
@@ -18,6 +17,7 @@
 [\-L min]
 [\-n]
 [\-o hdrlist]
+[\-p socketspec]
 [\-P pidfile]
 [\-q]
 [\-Q]
@@ -337,15 +337,19 @@
 .I path,
 or
 .I inet:port[@host]
+or
+.I inet6:port[@host]
 which creates a TCP socket on the specified
-.I port.
-If the
+.I port
+using the requested protocol family.  If the
 .I host
 is not given as either a hostname or an IP address, the socket will be
-listening on all interfaces.  If neither socket type is specified,
+listening on all interfaces.  A literal IP address must be enclosed in
+square brackets.  If neither socket type is specified,
 .I local
 is assumed, meaning the parameter is interpreted as a path at which
-the socket should be created.  This parameter is mandatory.
+the socket should be created.  This parameter is mandatory either here or
+in the configuration file.
 .TP
 .I \-P pidfile
 Specifies a file into which the filter should write its process ID at startup.
@@ -496,7 +500,7 @@
 StrictTestMode,
 TestPublicKeys,
 UMask,
-UserID (-u).  The filter does not automatically check the configuration
+UserID (\-u).  The filter does not automatically check the configuration
 file for changes and reload.
 .SH MTA MACROS
 .B opendkim
diff -Nru opendkim-2.6.1/opendkim/opendkim.c opendkim-2.6.2/opendkim/opendkim.c
--- opendkim-2.6.1/opendkim/opendkim.c	2012-06-24 23:33:43.0 -0400
+++ opendkim-2.6.2/opendkim/opendkim.c	2012-07-02 13:58:53.0 -0400
@@ -5768,12 +5768,12 @@
 		dkimf_db_close(conf-conf_resigndb);
 #endif /* _FFR_RESIGN */
 
-#ifdef _FFR_RESIGN
+#ifdef _FFR_RATE_LIMIT
 	if (conf-conf_ratelimitdb != NULL)
 		dkimf_db_close(conf-conf_ratelimitdb);
 	if (conf-conf_flowdatadb != NULL)
 		dkimf_db_close(conf-conf_flowdatadb);
-#endif /* _FFR_RESIGN */
+#endif /* _FFR_RATE_LIMIT */
 
 #ifdef _FFR_REPUTATION
 	if (conf-conf_repratiosdb != NULL)
diff -Nru opendkim-2.6.1/opendkim/opendkim.conf.5.in opendkim-2.6.2/opendkim/opendkim.conf.5.in
--- opendkim-2.6.1/opendkim/opendkim.conf.5.in	2012-06-24 23:33:43.0 -0400
+++ opendkim-2.6.2/opendkim/opendkim.conf.5.in	2012-07-02 13:58:53.0 -0400
@@ -1117,14 +1117,17 @@
 which creates a UNIX domain socket at the specified
 .I path,
 or
-.I inet:port[@host],
+.I inet:port[@host]
+or
+.I inet6:port[@host]
 which creates a TCP socket on the specified
-.I port.
-If the
+.I port
+and in the specified protocol family.  If the
 .I host
 is not given as either a hostname or an IP address, the socket will be
-listening on all interfaces.  This option is mandatory either in the
-configuration file or on the command line.
+listening on all interfaces.  A literal IP address must be enclosed in
+square brackets.  This option is mandatory either in the configuration file or
+on the command line.
 
 .TP
 .I Statistics (filename)
diff -Nru opendkim-2.6.1/opendkim/opendkim-db.c opendkim-2.6.2/opendkim/opendkim-db.c
--- opendkim-2.6.1/opendkim/opendkim-db.c	2012-06-18 10:20:09.0 -0400
+++ opendkim-2.6.2/opendkim/opendkim-db.c	2012-07-02 13:58:53.0 -0400
@@ -1767,6 +1767,7 @@
   char **err)
 {
 	DKIMF_DB new;
+	char *comma;
 	char *p;
 
 	assert(db != NULL);
@@ -1786,6 +1787,12 @@
 	new-db_type = DKIMF_DB_TYPE_UNKNOWN;
 
 	p = strchr(name, ':');
+	comma = strchr(name, ',');
+
+	/* catch a CSL that contains colons not in the first entry */
+	if (comma != NULL  p != NULL  comma  p)
+		p = NULL;
+
 	if (p == NULL)
 	{
 # ifdef USE_DB
diff -Nru opendkim-2.6.1/RELEASE_NOTES

Bug#679979: Report wasn't quite complete

2012-07-02 Thread Scott Kitterman
I also wanted to get an SE Linux fix in if I could (#679852), but I was using 
the wrong diff in the initial report.   Please see the attached diff instead.diff -Nru opendkim-2.6.1/configure opendkim-2.6.2/configure
--- opendkim-2.6.1/configure	2012-06-24 23:34:56.0 -0400
+++ opendkim-2.6.2/configure	2012-07-02 13:59:41.0 -0400
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for OpenDKIM 2.6.1.
+# Generated by GNU Autoconf 2.68 for OpenDKIM 2.6.2.
 #
 # Report bugs to b...@opendkim.org.
 #
@@ -570,8 +570,8 @@
 # Identity of this package.
 PACKAGE_NAME='OpenDKIM'
 PACKAGE_TARNAME='opendkim'
-PACKAGE_VERSION='2.6.1'
-PACKAGE_STRING='OpenDKIM 2.6.1'
+PACKAGE_VERSION='2.6.2'
+PACKAGE_STRING='OpenDKIM 2.6.2'
 PACKAGE_BUGREPORT='b...@opendkim.org'
 PACKAGE_URL=''
 
@@ -1545,7 +1545,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures OpenDKIM 2.6.1 to adapt to many kinds of systems.
+\`configure' configures OpenDKIM 2.6.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1615,7 +1615,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of OpenDKIM 2.6.1:;;
+ short | recursive ) echo Configuration of OpenDKIM 2.6.2:;;
esac
   cat \_ACEOF
 
@@ -1824,7 +1824,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-OpenDKIM configure 2.6.1
+OpenDKIM configure 2.6.2
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2403,7 +2403,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by OpenDKIM $as_me 2.6.1, which was
+It was created by OpenDKIM $as_me 2.6.2, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3222,7 +3222,7 @@
 
 # Define the identity of the package.
  PACKAGE='opendkim'
- VERSION='2.6.1'
+ VERSION='2.6.2'
 
 
 cat confdefs.h _ACEOF
@@ -3271,7 +3271,7 @@
 #
 # Hexadecimal version, for use in generating dkim.h
 #
-HEX_VERSION=$(printf %08x $(( ((2  8 | 6)  8 | 1)  8| 0 )))
+HEX_VERSION=$(printf %08x $(( ((2  8 | 6)  8 | 2)  8| 0 )))
 
 
 #
@@ -20528,7 +20528,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by OpenDKIM $as_me 2.6.1, which was
+This file was extended by OpenDKIM $as_me 2.6.2, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -20594,7 +20594,7 @@
 cat $CONFIG_STATUS _ACEOF || ac_write_fail=1
 ac_cs_config=`$as_echo $ac_configure_args | sed 's/^ //; s/[\\\`\$]//g'`
 ac_cs_version=\\
-OpenDKIM config.status 2.6.1
+OpenDKIM config.status 2.6.2
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\\$ac_cs_config\\
 
diff -Nru opendkim-2.6.1/configure.ac opendkim-2.6.2/configure.ac
--- opendkim-2.6.1/configure.ac	2012-06-24 23:33:43.0 -0400
+++ opendkim-2.6.2/configure.ac	2012-07-02 13:58:53.0 -0400
@@ -15,7 +15,7 @@
 #
 m4_define([VERSION_RELEASE], 2)
 m4_define([VERSION_MAJOR_REV], 6)
-m4_define([VERSION_MINOR_REV], 1)
+m4_define([VERSION_MINOR_REV], 2)
 m4_define([VERSION_PATCH], 0)
 
 #
diff -Nru opendkim-2.6.1/contrib/spec/opendkim.spec opendkim-2.6.2/contrib/spec/opendkim.spec
--- opendkim-2.6.1/contrib/spec/opendkim.spec	2012-06-24 23:35:13.0 -0400
+++ opendkim-2.6.2/contrib/spec/opendkim.spec	2012-07-02 14:00:30.0 -0400
@@ -4,7 +4,7 @@
 
 Summary: An open source library and milter for providing DKIM service
 Name: opendkim
-Version: 2.6.1
+Version: 2.6.2
 Release: 1
 License: BSD
 Group: System Environment/Daemons
diff -Nru opendkim-2.6.1/debian/changelog opendkim-2.6.2/debian/changelog
--- opendkim-2.6.1/debian/changelog	2012-07-02 15:38:45.0 -0400
+++ opendkim-2.6.2/debian/changelog	2012-07-02 15:38:45.0 -0400
@@ -1,3 +1,16 @@
+opendkim (2.6.2-1) unstable; urgency=low
+
+  * New upstream release (addresses three bugs that affect the Debian package)
+- Fix bug #SF3539449: Clarify legal Socket values.  Requested by Scott
+  Kitterman.
+- Fix bug #SF3539493: Handle certain cases of data set names that appear
+  to be comma-separated lists which include IPv6 addresses.  Reported by
+  Scott Kitterman. (Closes: #679548)
+  * Use restorecon to apply a SE Linux label after creating a run dir
+(Closes: #679852)
+
+ -- Scott Kitterman sc...@kitterman.com  Mon, 02 Jul 2012 14:44:38 -0400
+
 opendkim (2.6.1-1) unstable; urgency=low
 
   * New upstream release
diff -Nru opendkim-2.6.1/debian/opendkim.init opendkim-2.6.2/debian/opendkim.init
--- opendkim-2.6.1/debian/opendkim.init	2012-07-02 15:38:45.0 -0400
+++ opendkim-2.6.2

Bug#680005: RM: src:dkim-milter/2.8.2.dfsg-1.1

2012-07-02 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: rm

dkim-milter is RC buggy and has been superceded by a fork, opendkim.  It's
unmaintained upstream (the former dkim-milter upstream is now the opendkim
upstream) and the former author recommends opendkim instead in all cases.

We should not release Wheezy with this package.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676078: Worse than that

2012-07-04 Thread Scott Kitterman
This bug is just the tip of the iceberg.  The packaging needs to be almost 
totally reworked to build in the current Debian Ruby environment.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679819: Dropping Provides field broke depending software (python-avogadro)

2012-07-04 Thread Scott Kitterman
On Wednesday, July 04, 2012 10:19:34 PM Daniel Leidert wrote:
...
 If the policy is not correct, it should be fixed after Wheezy release.
 I'd appreciate a pointer from your site, when you start the discussion.
...
After the Wheezy release having the provides will be entirely superfluous since 
there will very quickly only be python2.7 supported.  The post-Wheezy policy 
fix will be very easy.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680309: cdbs: Copyright Check Incorrectly Checks Debian Directory

2012-07-04 Thread Scott Kitterman
Package: cdbs
Version: 0.4.115
Severity: serious
Justification: Causes FTBFS

Dear Maintainer,

   * What led up to the situation?

pop-before-smtp FTBFS during a rebuild test.  See #674400.

   * What exactly did you do (or not do) that was effective (or
 ineffective)?

Based on the build logs, it looks like CDBS copyright check is checking
the Debian directory even though it says it doesn't in the same log.  I
updated the copyright hints to match newhings and the package built, but
that only works around the issue.

   * What was the outcome of this action?

With the workaround I could build the package locally, but that seems not
to be the correct solution

   * What outcome did you expect instead?

Since the build log says, Scanning upstream source for new/changed copyright
notices (except debian subdir!)..., my expectation is that it won't scan
the Debian subdir.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680314: unblock: screenlets/0.1.2-8

2012-07-04 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package screenlets

Fixes RC bug #618876.

unblock screenlets/0.1.2-8



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#661261: Fixed in upstream svn

2012-07-04 Thread Scott Kitterman
Upstream has implemented, but not released adding a new option to ignore 
timestamps that would resolve this bug.  I've extracted the change from their 
svn, turned it into a patch.  Looking at it, it seams reasonable and it 
builds, but I don't use mailfilter, so I can't test it.

If someone can verify this works, I'll upload it as an NMU if one of the 
maintainers can't.  Please test.

diff -Nru mailfilter-0.8.2/debian/changelog mailfilter-0.8.2/debian/changelog
--- mailfilter-0.8.2/debian/changelog	2012-04-22 20:32:40.0 -0400
+++ mailfilter-0.8.2/debian/changelog	2012-07-05 00:23:59.0 -0400
@@ -1,3 +1,11 @@
+mailfilter (0.8.2-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Cherry pick from upstream svn rev 20 to add option to ignore timestamps
+(Closes: #661261)
+
+ -- Scott Kitterman sc...@kitterman.com  Thu, 05 Jul 2012 00:22:58 -0400
+
 mailfilter (0.8.2-3) unstable; urgency=low
 
   * Switch to dpkg-source 3.0 (quilt) format (and remove dpatch)
diff -Nru mailfilter-0.8.2/debian/patches/series mailfilter-0.8.2/debian/patches/series
--- mailfilter-0.8.2/debian/patches/series	2012-04-22 20:32:40.0 -0400
+++ mailfilter-0.8.2/debian/patches/series	2012-07-05 00:24:45.0 -0400
@@ -1,3 +1,4 @@
 01_remove_workaround_fixed_FTBFS.patch
 02_fix_build_newer_g++.patch
 03_fix_invalid_conversion.patch
+timestamp_ignore.diff
diff -Nru mailfilter-0.8.2/debian/patches/timestamp_ignore.diff mailfilter-0.8.2/debian/patches/timestamp_ignore.diff
--- mailfilter-0.8.2/debian/patches/timestamp_ignore.diff	1969-12-31 19:00:00.0 -0500
+++ mailfilter-0.8.2/debian/patches/timestamp_ignore.diff	2012-07-05 00:27:19.0 -0400
@@ -0,0 +1,246 @@
+Description: Add -i option to ignore timestamps
+ mailfilter (0.8.2-3.1) unstable; urgency=low
+ .
+   * Non-maintainer upload.
+   * Cherry pick from upstream svn rev 20 to add option to ignore timestamps
+ (Closes: #661261)
+Author: Scott Kitterman sc...@kitterman.com
+Origin: upstream
+Bug: http://sourceforge.net/tracker/?func=detailaid=2865702group_id=14762atid=114762
+Bug-Debian: http://bugs.debian.org/661261
+Forwarded: not-needed
+Last-Update: 2012-07-04
+
+--- mailfilter-0.8.2.orig/ChangeLog
 mailfilter-0.8.2/ChangeLog
+@@ -1,6 +1,33 @@
+ Mailfilter ChangeLog
+ -=-=-=-=-=-=-=-=-=-=
+ 
++Sat Mar  3 17:40:14 EST 2012 baueran
++
++ Index: src/socket.cc
++ Index: src/header.cc
++
++  Ignore time stamps.
++
++ Index: src/preferences.cc
++ Index: src/preferences.hh
++
++  Add preferences to ignore time stamps.
++
++ Index: src/mailfilter.cc
++ Index: src/mailfilter.hh
++
++  Add Options.
++
++ Index: configure.ac
++
++  Change version number.
++
++ Index: man/mailfilterrc.5
++ Index: man/mailfilter.1
++ Index: man/mailfilterex.5
++
++  Update man pages.
++
+ Sun Jun  7 11:51:11 EST 2009 baueran
+ 
+ - src/header.hh: new custom exception, add_entry throws it
+--- mailfilter-0.8.2.orig/NEWS
 mailfilter-0.8.2/NEWS
+@@ -20,6 +20,9 @@ mailfilter 0.8.1 (Sat Sep 15 17:14:49 ES
+ checked; 0 is only returned if the *entire* mailfilter session
+ was successful (Thanks to Mike Clarke for pointing this out)
+ 
++  - Due to popular demand: Added option -i to ignore invalid
++Message-ID time stamps.  (Using this option is a potential
++security risk, so do not use unless you know better!)
+ 
+ mailfilter 0.8 (Mon Jan  1 16:09:52 CET 2007) [stable version]
+ 
+--- mailfilter-0.8.2.orig/configure.ac
 mailfilter-0.8.2/configure.ac
+@@ -26,13 +26,13 @@
+ # Process this file with autoconf to produce a configure script.
+ 
+ AC_PREREQ(2.54)
+-AC_INIT(mailfilter, 0.8.2, [mailfilter-...@lists.sourceforge.net])
++AC_INIT(mailfilter, 0.8.2, [baue...@gmail.com])
+ AC_REVISION($Revision: 1.1.2.4.2.12 $)
+ AC_SUBST(PACKAGE_COPYRIGHT)
+ AC_DEFINE(PACKAGE_COPYRIGHT,
+-	   Copyright (c) 2000 - 2009  Andreas Bauer baue...@gmail.com, 
++	   Copyright (c) 2000 - 2012  Andreas Bauer baue...@gmail.com, 
+ 	   [Copyright information.])
+-AC_COPYRIGHT(Copyright (c) 2000 - 2009  Andreas Bauer baue...@gmail.com)
++AC_COPYRIGHT(Copyright (c) 2000 - 2012  Andreas Bauer baue...@gmail.com)
+ 
+ AC_CONFIG_SRCDIR([src/mailfilter.cc])
+ AC_CONFIG_HEADERS(config.h)
+--- mailfilter-0.8.2.orig/man/mailfilterrc.5
 mailfilter-0.8.2/man/mailfilterrc.5
+@@ -324,7 +324,7 @@ configuration files.
+ .BR mailfilterex (5),
+ .BR regex (7)
+ .SH COPYRIGHT
+-Copyright \(co 2000-2009 Andreas Bauer baue...@gmail.com
++Copyright \(co 2000-2012 Andreas Bauer baue...@gmail.com
+ .PP
+ This is free software; see the source for copying conditions.  There is NO
+ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+--- mailfilter-0.8.2.orig/man/mailfilter.1
 mailfilter-0.8.2/man/mailfilter.1
+@@ -58,6 +58,9 @@ Enable additional return values
+ \fB\-t\fR, \fB\-\-test\fR
+ Simulate deletes
+ .TP
++\fB\-i\fR, \fB\-\-ignore-time-stamps\fR
++Ignore invalid Message-ID time stamps (Do not use unless you know better!)
++.TP
+ \fB\-v

Bug#679819: Dropping Provides field broke depending software (python-avogadro)

2012-07-05 Thread Scott Kitterman
I can.  Thanks for the second opinion.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679819: [Python-modules-team] Bug#679819: Dropping Provides field broke depending software (python-avogadro)

2012-07-05 Thread Scott Kitterman
sip4 will cause you the same problem.  I'll take care of that too.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679819: [Python-modules-team] Bug#679819: Dropping Provides field broke depending software (python-avogadro)

2012-07-05 Thread Scott Kitterman
On Thursday, July 05, 2012 07:59:19 AM Scott Kitterman wrote:
 sip4 will cause you the same problem.  I'll take care of that too.

Actually that's wrong.  Sip4 is fine.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680398: unblock: python-qt4/4.9.3-2

2012-07-05 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package python-qt4

Fixes RC bug #679819 to allow 4.9.3 (which was uploaded before the freeze, but
stuck in New for some time and has a lot of bug fixes) to migrate.

unblock python-qt4/4.9.3-2



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#674400: NMU

2012-07-05 Thread Scott Kitterman
Since this is untouched by the maintainer for over a month, i'm going to NMU.  
I'll upload to delayed/2 so the maintainers can solve it differently if they 
prefer.  Let me know if you'd rather I delay it further.

NMU diff attached.diff -u pop-before-smtp-1.41/debian/rules pop-before-smtp-1.41/debian/rules
--- pop-before-smtp-1.41/debian/rules
+++ pop-before-smtp-1.41/debian/rules
@@ -5,7 +5,6 @@
 include debian/cdbs/1/rules/auto-update.mk
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/rules/patchsys-quilt.mk
-include debian/cdbs/1/rules/copyright-check.mk
 include debian//cdbs/1/rules/buildinfo.mk
 
 DEB_INSTALL_DIRS_pop-before-smtp = var/lib/pop-before-smtp
reverted:
--- pop-before-smtp-1.41/debian/cdbs/1/rules/copyright-check.mk
+++ pop-before-smtp-1.41.orig/debian/cdbs/1/rules/copyright-check.mk
@@ -1,59 +0,0 @@
-# -*- mode: makefile; coding: utf-8 -*-
-# Copyright © 2005-2006 Jonas Smedegaard d...@jones.dk
-# Description: Check for changes to copyright notices in source
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2, or (at
-# your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-# 02111-1307 USA.
-
-# TODO: Depend on kdesdk-scripts and use /usr/bin/licensecheck
-
-ifndef _cdbs_bootstrap
-_cdbs_scripts_path ?= /usr/lib/cdbs
-_cdbs_rules_path ?= /usr/share/cdbs/1/rules
-_cdbs_class_path ?= /usr/share/cdbs/1/class
-endif
-
-ifndef _cdbs_rules_copyright-check
-_cdbs_rules_copyright-check := 1
-
-include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
-
-cdbs_copyright-check_find_opts := -not -regex '\./debian/.*' -not -regex '.*/config\.\(guess\|sub\|rpath\)'
-cdbs_copyright-check_egrep_opts := --text -rih '(copyright|\(c\) ).*[0-9]{4}'
-
-clean::
-	@echo 'Scanning upstream source for new/changed copyright notices (except debian subdir!)...'
-	@find . -type f $(cdbs_copyright-check_find_opts) -exec cat '{}' ';' \
-		| tr '\r' '\n' \
-		| LC_ALL=C sed -e 's/[^[:print:]]//g' \
-		| egrep $(cdbs_copyright-check_egrep_opts) \
-		| sed -e 's/^[[:space:]*#]*//' -e 's/[[:space:]]*$$//' \
-		| LC_ALL=C sort -u \
-		 debian/copyright_newhints
-	@if [ ! -f debian/copyright_hints ]; then touch debian/copyright_hints; fi
-	@echo diff --normal debian/copyright_hints debian/copyright_newhints | egrep '^'
-	@diff --normal debian/copyright_hints debian/copyright_newhints | egrep '^'; \
-		if [ $$? -eq 0 ]; then \
-			echo New or changed copyright notices discovered! Do this:; \
-			echo   1) Search source for each of the above lines ('grep -r' is your friend); \
-			echo   2) Update debian/copyright as needed; \
-			echo   3) Replace debian/copyright_hints with debian/copyright_newhints; \
-			exit 1; \
-		fi
-	
-	@echo 'No new copyright notices found - assuming no news is good news...'
-	rm -f debian/copyright_newhints
-
-endif
diff -u pop-before-smtp-1.41/debian/changelog pop-before-smtp-1.41/debian/changelog
--- pop-before-smtp-1.41/debian/changelog
+++ pop-before-smtp-1.41/debian/changelog
@@ -1,3 +1,12 @@
+pop-before-smtp (1.41-1.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove local CDBS rule, debian/cdbs/1/rules/copyright-check.mk, that was
+incorrectly checking for copyright checks in the Debian directory (and
+associated call in debian/rules) to fix FTBFS (Closes: #674400)
+
+ -- Scott Kitterman sc...@kitterman.com  Thu, 05 Jul 2012 23:25:44 -0400
+
 pop-before-smtp (1.41-1.1) unstable; urgency=low
 
   * Non-maintainer upload to solve release goal.


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


Bug#668722: NMU

2012-07-05 Thread Scott Kitterman
Since it's an RC bug untouched by the maintainer for over a month, I'm 
uplading an NMU to delay 2.  Please let me know of you want it delayed 
further.  NMU diff attached.diff -u scanlogd-2.2.5/debian/changelog scanlogd-2.2.5/debian/changelog
--- scanlogd-2.2.5/debian/changelog
+++ scanlogd-2.2.5/debian/changelog
@@ -1,3 +1,11 @@
+scanlogd (2.2.5-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Set adduser in postinst not to create /home/scanlogd and remove it if it
+exists. Ssolves unowned files left on system after purge (Closes: #668722)
+
+ -- Scott Kitterman sc...@kitterman.com  Thu, 05 Jul 2012 23:54:56 -0400
+
 scanlogd (2.2.5-3) unstable; urgency=low
 
   * fix init.d script when /var/run is a tmpfs
diff -u scanlogd-2.2.5/debian/postinst scanlogd-2.2.5/debian/postinst
--- scanlogd-2.2.5/debian/postinst
+++ scanlogd-2.2.5/debian/postinst
@@ -1,8 +1,15 @@
 #!/bin/sh
 
 update-rc.d scanlogd defaults /dev/null
+
+if [ -d /home/scanlogd ] ; then # Clean up after #668722
+rmdir /home/scanlogd # If for some reason the directory isn't empty
+ # then the directory shouldn't be unconditionally
+ # removed
+fi
+
 # scanlogd needs a user
-adduser --system scanlogd || true
+adduser --system --no-create-home --quiet scanlogd || true
 
 if which invoke-rc.d /dev/null 21; then
 invoke-rc.d scanlogd start


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


Bug#680005: RM: src:dkim-milter/2.8.2.dfsg-1.1

2012-07-06 Thread Scott Kitterman
Yes. It should be removed entirely. I guess I was a bit over focused. 

Mehdi Dogguy me...@dogguy.org wrote:

On 02/07/12 23:52, Scott Kitterman wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: rm

 dkim-milter is RC buggy and has been superceded by a fork, opendkim. It's
 unmaintained upstream (the former dkim-milter upstream is now the opendkim
 upstream) and the former author recommends opendkim instead in all cases.

 We should not release Wheezy with this package.


Shouln't this package to be removed from the archive then? IOW, Why 
should we keep it in Unstable?

Regards,

-- 
Mehdi Dogguy مهدي الدڤي
http://dogguy.org/



Bug#665894: NMUing for RC bug

2012-07-06 Thread Scott Kitterman
No maintainer response for 3 months, so I'll upload this NMU shortly.Binary files /tmp/QwHFJsfGn1/python-dateutil-1.5/dateutil/zoneinfo/zoneinfo-2010g.tar.gz and /tmp/zvV9EAtm8d/python-dateutil-1.5+dfsg/dateutil/zoneinfo/zoneinfo-2010g.tar.gz differ
diff -Nru python-dateutil-1.5/debian/changelog python-dateutil-1.5+dfsg/debian/changelog
--- python-dateutil-1.5/debian/changelog	2011-08-30 16:20:51.0 -0400
+++ python-dateutil-1.5+dfsg/debian/changelog	2012-07-06 10:00:10.0 -0400
@@ -1,3 +1,15 @@
+python-dateutil (1.5+dfsg-0.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Repack upstream tarball to remove non-free time zone information
+(sourceless binary data) (Closes: #665894)
+  * Remove reference to dateutil/zoneinfo/zoneinfo-2010g.tar.gz from both
+upstream build system and debian/rules
+- The file was not shipped in the binary, so there's no impact on the
+  functionality of the package
+
+ -- Scott Kitterman sc...@kitterman.com  Fri, 06 Jul 2012 09:00:45 -0400
+
 python-dateutil (1.5-1) unstable; urgency=low
 
   [ Guido Günther ]
diff -Nru python-dateutil-1.5/debian/patches/Remove_Zoneinfo_Tarball_665894 python-dateutil-1.5+dfsg/debian/patches/Remove_Zoneinfo_Tarball_665894
--- python-dateutil-1.5/debian/patches/Remove_Zoneinfo_Tarball_665894	1969-12-31 19:00:00.0 -0500
+++ python-dateutil-1.5+dfsg/debian/patches/Remove_Zoneinfo_Tarball_665894	2012-07-06 10:00:10.0 -0400
@@ -0,0 +1,78 @@
+Description: Remove dateutil/zoneinfo/zoneinfo-2010g.tar.gz from build system
+ python-dateutil (1.5+dfsg-0.1) unstable; urgency=low
+ .
+   * Non-maintainer upload.
+   * Repack upstream tarball to remove non-free time zone information
+ (sourceless binary data) (Closes: #665894)
+   * Remove reference to dateutil/zoneinfo/zoneinfo-2010g.tar.gz from both
+ upstream build system and debian/rules
+ - The file was not shipped in the binary, so there's no impact on the
+   functionality of the package
+Author: Scott Kitterman sc...@kitterman.com
+Bug-Debian: http://bugs.debian.org/665894
+Origin: vendor
+Forwarded: no
+Last-Update: 2012-07-06
+
+Index: python-dateutil-1.5+dfsg/MANIFEST.in
+===
+--- python-dateutil-1.5+dfsg.orig/MANIFEST.in	2012-07-06 09:37:24.398650586 -0400
 python-dateutil-1.5+dfsg/MANIFEST.in	2012-07-06 09:37:50.042649829 -0400
+@@ -1,4 +1,4 @@
+-recursive-include dateutil *.py *.tar.*
++recursive-include dateutil *.py
+ recursive-include sandbox *.py
+ include setup.py setup.cfg MANIFEST.in README LICENSE NEWS Makefile
+ include test.py example.py
+Index: python-dateutil-1.5+dfsg/setup.py
+===
+--- python-dateutil-1.5+dfsg.orig/setup.py	2012-07-06 09:37:24.414650583 -0400
 python-dateutil-1.5+dfsg/setup.py	2012-07-06 09:37:50.042649829 -0400
+@@ -29,7 +29,5 @@
+ datetime module, available in Python 2.3+.
+ ,
+   packages = [dateutil, dateutil.zoneinfo],
+-  package_data={: [*.tar.gz]},
+-  include_package_data=True,
+   zip_safe=False,
+   )
+Index: python-dateutil-1.5+dfsg/python_dateutil.egg-info/SOURCES.txt
+===
+--- python-dateutil-1.5+dfsg.orig/python_dateutil.egg-info/SOURCES.txt	2012-07-06 09:37:24.426650583 -0400
 python-dateutil-1.5+dfsg/python_dateutil.egg-info/SOURCES.txt	2012-07-06 09:37:50.042649829 -0400
+@@ -16,11 +16,10 @@
+ dateutil/tz.py
+ dateutil/tzwin.py
+ dateutil/zoneinfo/__init__.py
+-dateutil/zoneinfo/zoneinfo-2010g.tar.gz
+ python_dateutil.egg-info/PKG-INFO
+ python_dateutil.egg-info/SOURCES.txt
+ python_dateutil.egg-info/dependency_links.txt
+ python_dateutil.egg-info/not-zip-safe
+ python_dateutil.egg-info/top_level.txt
+ sandbox/rrulewrapper.py
+-sandbox/scheduler.py
+\ No newline at end of file
++sandbox/scheduler.py
+Index: python-dateutil-1.5+dfsg/test.py
+===
+--- python-dateutil-1.5+dfsg.orig/test.py	2012-07-06 09:37:46.118649944 -0400
 python-dateutil-1.5+dfsg/test.py	2012-07-06 09:38:12.294649170 -0400
+@@ -3883,7 +3883,7 @@
+ self.assertEqual(datetime(2003,10,26,0,59,tzinfo=tz).tzname(), EDT)
+ self.assertEqual(datetime(2003,10,26,1,00,tzinfo=tz).tzname(), EST)
+ 
+-def testZoneInfoFileStart1(self):
++def testZoneInfoFileStart1(self):
+ tz = zoneinfo.gettz(EST5EDT)
+ self.assertEqual(datetime(2003,4,6,1,59,tzinfo=tz).tzname(), EST)
+ self.assertEqual(datetime(2003,4,6,2,00,tzinfo=tz).tzname(), EDT)
+@@ -3900,7 +3900,7 @@
+ t1 = t0.astimezone(utc)
+ t2 = t1.astimezone(nyc)
+ self.assertEquals(t0, t2)
+-self.assertEquals(nyc.dst(t0), timedelta(hours=1))
++self.assertEquals(nyc.dst(t0), timedelta(hours=1))
+ 
+ def testICalStart1(self):
+ tz = tzical(StringIO(self.TZICAL_EST5EDT)).get()
diff -Nru python

Bug#680523: unblock: snappea/3.0d3-22

2012-07-06 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package snappea

Fixes RC bug #663989

unblock snappea/3.0d3-22



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680527: unblock: python-dateutil/1.5-1

2012-07-06 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package python-dateutil

Fixes RC bug #665894

unblock python-dateutil/1.5-1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#666196: closed by Scott Kitterman deb...@kitterman.com (Not sure why this got reopened)

2012-07-06 Thread Scott Kitterman
On Friday, July 06, 2012 06:50:37 PM Gergely Nagy wrote:
 Granted, python-kzorp is kind-of useless without zorp, but accidentally
 satisfying dependencies is, well, accidental, and as such, not quite
 appropriate.

Fair point.  I think it's a bug, but not RC.  I'll reopen and lower the 
severity.  Zorp/Zone.py, which is in zorp uses radix, so adding it to zorp was 
necessary, it use my not have been sufficient.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680867: unblock: scanlogd/2.2.5-3.1

2012-07-08 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package scanlogd

Fixes RC bug #668722

unblock scanlogd/2.2.5-3.1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#626254: Who has access to the DB?

2012-07-09 Thread Scott Kitterman
From looking at various DEHS errors, I agree that the DB is missing/corrupt.  
I would be willing to work on trying to figure this out if I could have access.

Scott K

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


Bug#626254: Migrate PTS to UDD?

2012-07-09 Thread Scott Kitterman
On Monday, July 09, 2012 04:22:06 PM Lucas Nussbaum wrote:
 On 09/07/12 at 10:02 -0400, Scott Kitterman wrote:
  From looking at various DEHS errors, I agree that the DB is
  missing/corrupt. 
  I would be willing to work on trying to figure this out if I could have
  access.
 Hi,
 
 Last week I tried to understand what was broken, but failed. So I wrote
 my own upstream status gatherer for UDD (which is the one used for
 http://udd.debian.org/dmd.cgi). If you need the data in some specific
 format, I can probably provide an export of it.

Since DEHS has been broken for two months, maybe it's best to migrate using 
UDD as the database source.  I'm personally primarily interested in seeing it 
correct on the PTS.  I don't know if it makes more sense to make DEHS take 
data from UDD and PTS picks it up from DEHS as it does now or to change PTS to 
use UDD directly?

P.S.  If you couldn't figure it out, I'm pretty sure I won't be able to either.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#626254: PTS Code is pretty simple

2012-07-09 Thread Scott Kitterman
Here's the PTS code for collecting the version information from DEHS:

# read info gathered from watch file scanner
data = yaml.load(file(os.path.join(dir, dehs.yaml)), yaml.CLoader)
dehs = {}
for entry in data:
pkgname = entry[package]
if status in entry and Newer version in entry[status]:
if pkgname not in dehs:
dehs[pkgname] = {}
dehs[pkgname][newer] = str(entry[upstream-version])
dehs[pkgname][url] = entry[upstream-url]
if warnings in entry:
if pkgname not in dehs:
dehs[pkgname] = {}
dehs[pkgname][error] = entry[warnings]

It's retrieving the yaml file from get http://qa.debian.org/cgi-bin/udd-dehs.  
This looks like a YAML file with the following format:

-
  debian-mangled-uversion: 1.4.2
  debian-uversion: 1.4.2~dfsg0
  package: qlandkartegt
  status: up to date
  upstream-url: 
http://qa.debian.org/watch/sf.php/qlandkartegt/qlandkartegt-1.4.2.tar.gz
  upstream-version: 1.4.2

Possible status results are:

up to date
Debian version newer than remote site
Newer version available

Packages for which there is no information don't seem to to appear at all.

If UDD could output such a file and we could change the location the PTS was 
pulling from, then we could get this part of it back in business.  Is that a 
reasonable approach?



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#626254: PTS Code is pretty simple

2012-07-09 Thread Scott Kitterman
On Monday, July 09, 2012 07:07:23 PM Lucas Nussbaum wrote:
 What about http://udd.debian.org/cgi-bin/upstream-status.json.cgi ?
 Note: it's JSON, not YAML. I could do YAML if that's a problem.
 
 It also includes paragraphs with status=error. You might want to
 filter then out.

It seems to work fine as JSON (IIRC JSON is a subset of YAML anyway, so YAML 
tools should handle JSON OK).  It seems to just need a minor tweak to match 
your status strings and the location to download the file.

If someone can commit this, I can prepare a patch and test it more thoroughly 
than I have so far.

Scott K

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


Bug#626254: PTS Code is pretty simple

2012-07-09 Thread Scott Kitterman
On Monday, July 09, 2012 07:07:23 PM Lucas Nussbaum wrote:
...
 What about http://udd.debian.org/cgi-bin/upstream-status.json.cgi ?
 Note: it's JSON, not YAML. I could do YAML if that's a problem.
 
 It also includes paragraphs with status=error. You might want to
 filter then out.

DEHS reports the error and the PTS displays it.   warnings: Use of 
uninitialized value $3 in concatenation (.) or string at 
/home/myon/devscripts/scripts/uscan.pl line 720, amp;lt;WATCHamp;gt; line 5.

is displayed on http://packages.qa.debian.org/b/bookview.html in the problems 
section, which seems reasonable to me.  Could you adjust your udd query to 
capture the error?  For that particular entry, your file has:

  {
debian-mangled-uversion: null,
upstream-version: null,
package: bookview,
upstream-url: null,
status: error,
debian-uversion: null
  }

and the obsolete DEHS file has:

-
  debian-mangled-uversion: 3.2.1
  debian-uversion: 3.2.1
  package: bookview
  status: up to date
  upstream-url: 
ftp://ftp.sra.co.jp/pub/net/ndtp/bookview/bookview-3.2.1.tar.gz
  upstream-version: 3.2.1
  warnings: Use of uninitialized value $3 in concatenation (.) or string at 
/home/myon/devscripts/scripts/uscan.pl line 720, amp;lt;WATCHamp;gt; line 5.

It would be good to get whatever information we can, although status: up to 
date as reported by DEHS is clearly wrong since there's no way to know.

I think you've also got an issue in your version mangling:

  {
debian-mangled-uversion: 0.96.4,
upstream-version: 0.97.5,
package: libclamunrar,
upstream-url: 
http://qa.debian.org/watch/sf.php/clamav/clamav-0.97.5.tar.gz;,
status: Newer version available,
debian-uversion: 0.96.4
  },

Ive no idea where 0.96.4 comes from as it's current in Sid and Testing.  
That's a version from October 2010.

Scott K



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676092: NMU Diff

2012-07-09 Thread Scott Kitterman
Uploading directly since there's no maintainer response on an RC bug in over a 
month.

diff -u libwebapp-ruby-0.4/Makefile libwebapp-ruby-0.4/Makefile
--- libwebapp-ruby-0.4/Makefile
+++ libwebapp-ruby-0.4/Makefile
@@ -2,7 +2,7 @@
 RD2HTML=rd2 -r rd/rd2html-lib.rb
 DESTDIR=
 
-RUBYLIBDIR = $(shell ruby -rrbconfig -e 'puts Config::CONFIG[rubylibdir]')
+RUBYLIBDIR = $(shell ruby1.8 -rrbconfig -e 'puts Config::CONFIG[rubylibdir]')
 
 RB = webapp.rb $(RB1)
 RB1 = $(wildcard webapp/*.rb)
diff -u libwebapp-ruby-0.4/debian/changelog libwebapp-ruby-0.4/debian/changelog
--- libwebapp-ruby-0.4/debian/changelog
+++ libwebapp-ruby-0.4/debian/changelog
@@ -1,3 +1,11 @@
+libwebapp-ruby (0.4-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Update Debian changes to upstream Makefile to force building with ruby1.8
+now that ruby1.9.1 is default - fixes FTBFS (Closes: #676092)
+
+ -- Scott Kitterman sc...@kitterman.com  Mon, 09 Jul 2012 23:20:01 -0400
+
 libwebapp-ruby (0.4-2) unstable; urgency=low
 
   * debian/control (Build-Depends): Added ruby (Closes: #462507).


Bug#681029: unblock: libwebapp-ruby/1.8_0.4-2.1

2012-07-09 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package libwebapp-ruby

Fixes RC Bug #676092

unblock libwebapp-ruby/1.8_0.4-2.1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676087: NMU - Still FTBFS

2012-07-09 Thread Scott Kitterman
This one at least still FTBFS.  NMU diff attached.  Uploading directly since 
it's over a month with no response from the maintainer on an RC bug.

diff -u ruby-prof-0.7.3/debian/control ruby-prof-0.7.3/debian/control
--- ruby-prof-0.7.3/debian/control
+++ ruby-prof-0.7.3/debian/control
@@ -3,11 +3,11 @@
 Priority: optional
 Maintainer: Arnaud Cornet acor...@debian.org
 Standards-Version: 3.8.1
-Build-Depends: debhelper (= 7), quilt, ruby, ruby1.8-dev
+Build-Depends: debhelper (= 7), quilt, ruby, ruby1.8, ruby1.8-dev
 
 Package: ruby-prof
 Architecture: any
-Depends: ruby (= 1.8), rake, ${shlibs:Depends}, ${misc:Depends}
+Depends: ruby1.8, rake, ${shlibs:Depends}, ${misc:Depends}
 Description: A fast code profiler for Ruby
  ruby-prof is runs a ruby program and keeps track of the amount of time spent
  in each method. At the end of execution it displays collected information.
diff -u ruby-prof-0.7.3/debian/changelog ruby-prof-0.7.3/debian/changelog
--- ruby-prof-0.7.3/debian/changelog
+++ ruby-prof-0.7.3/debian/changelog
@@ -1,3 +1,14 @@
+ruby-prof (0.7.3-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Specify building with ruby1.8 and not just ruby in debian/rules to
+fix FTBFS now that ruby1.9.1 is default (Closes: #676087)
+  * Manually create debian/ruby-prof/usr/lib/ruby/1.8 in install rule so files
+are copied to the correct destination
+  * Directly build-depend and depend on ruby1.8 since it's no longer default
+
+ -- Scott Kitterman sc...@kitterman.com  Mon, 09 Jul 2012 23:39:26 -0400
+
 ruby-prof (0.7.3-1) unstable; urgency=low
 
   * New Upstream Version.
diff -u ruby-prof-0.7.3/debian/rules ruby-prof-0.7.3/debian/rules
--- ruby-prof-0.7.3/debian/rules
+++ ruby-prof-0.7.3/debian/rules
@@ -6,7 +6,7 @@
 
 build: patch
 	dh build --until dh_auto_configure
-	(cd ext  ruby extconf.rb)
+	(cd ext  ruby1.8 extconf.rb)
 	make -C ext
 	dh build --after dh_auto_build
 
@@ -21,6 +21,7 @@
 	dh install --until dh_auto_install
 	mkdir -p debian/ruby-prof/$(RUBY_ARCHDIR)
 	mkdir -p debian/ruby-prof/usr/bin
+	mkdir -p debian/ruby-prof/usr/lib/ruby/1.8
 	cp -r lib/ruby-prof debian/ruby-prof/usr/lib/ruby/1.8
 	cp lib/*.rb debian/ruby-prof/usr/lib/ruby/1.8
 	chmod a-x debian/ruby-prof/usr/lib/ruby/1.8/ruby-prof/*.rb


Bug#676087: Missed a spot

2012-07-09 Thread Scott Kitterman
Actually the first debdiff misses one needed change.  Revision attached.diff -u ruby-prof-0.7.3/debian/control ruby-prof-0.7.3/debian/control
--- ruby-prof-0.7.3/debian/control
+++ ruby-prof-0.7.3/debian/control
@@ -3,11 +3,11 @@
 Priority: optional
 Maintainer: Arnaud Cornet acor...@debian.org
 Standards-Version: 3.8.1
-Build-Depends: debhelper (= 7), quilt, ruby, ruby1.8-dev
+Build-Depends: debhelper (= 7), quilt, ruby, ruby1.8, ruby1.8-dev
 
 Package: ruby-prof
 Architecture: any
-Depends: ruby (= 1.8), rake, ${shlibs:Depends}, ${misc:Depends}
+Depends: ruby1.8, rake, ${shlibs:Depends}, ${misc:Depends}
 Description: A fast code profiler for Ruby
  ruby-prof is runs a ruby program and keeps track of the amount of time spent
  in each method. At the end of execution it displays collected information.
diff -u ruby-prof-0.7.3/debian/changelog ruby-prof-0.7.3/debian/changelog
--- ruby-prof-0.7.3/debian/changelog
+++ ruby-prof-0.7.3/debian/changelog
@@ -1,3 +1,14 @@
+ruby-prof (0.7.3-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Specify building with ruby1.8 and not just ruby in debian/rules to
+fix FTBFS now that ruby1.9.1 is default (Closes: #676087)
+  * Manually create debian/ruby-prof/usr/lib/ruby/1.8 in install rule so files
+are copied to the correct destination
+  * Directly build-depend and depend on ruby1.8 since it's no longer default
+
+ -- Scott Kitterman sc...@kitterman.com  Mon, 09 Jul 2012 23:39:26 -0400
+
 ruby-prof (0.7.3-1) unstable; urgency=low
 
   * New Upstream Version.
diff -u ruby-prof-0.7.3/debian/rules ruby-prof-0.7.3/debian/rules
--- ruby-prof-0.7.3/debian/rules
+++ ruby-prof-0.7.3/debian/rules
@@ -2,11 +2,11 @@
 
 include /usr/share/quilt/quilt.make
 
-RUBY_ARCHDIR=$(strip $(shell ruby -rrbconfig -e 'puts Config::CONFIG[archdir]'))
+RUBY_ARCHDIR=$(strip $(shell ruby1.8 -rrbconfig -e 'puts Config::CONFIG[archdir]'))
 
 build: patch
 	dh build --until dh_auto_configure
-	(cd ext  ruby extconf.rb)
+	(cd ext  ruby1.8 extconf.rb)
 	make -C ext
 	dh build --after dh_auto_build
 
@@ -21,6 +21,7 @@
 	dh install --until dh_auto_install
 	mkdir -p debian/ruby-prof/$(RUBY_ARCHDIR)
 	mkdir -p debian/ruby-prof/usr/bin
+	mkdir -p debian/ruby-prof/usr/lib/ruby/1.8
 	cp -r lib/ruby-prof debian/ruby-prof/usr/lib/ruby/1.8
 	cp lib/*.rb debian/ruby-prof/usr/lib/ruby/1.8
 	chmod a-x debian/ruby-prof/usr/lib/ruby/1.8/ruby-prof/*.rb


Bug#681031: unblock: ruby-prof/0.7.3-1.1

2012-07-09 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package ruby-prof

Fixes RC Bug #676087

unblock ruby-prof/0.7.3-1.1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#681107: unblock: qscintilla2/2.6.2-1

2012-07-10 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Please unblock package qscintilla2

I'd like to ask for a freeze exception based on the 'beyond a maintainer's
control' part of the loose freeze policy.  Upstream released this before the
freeze (and I would have uploaded it then, the same time I did sip4 and
python-qt4), but upstream didn't mention it on their mailing list (to which I
am subscribed) - as they usually do) and the upstream version checking of PTS
was (unknown to me) broken until this week.  I had two different wawys I would
have expected to know about this release and I think it's reasonalbe of me to
have relied on one of the two working.

I just found out about this yesterday while trying to figure out what's up
with the PTS (turns out it was just fixed and the data is catching up).

Upstream is good about giving support for versions they release together.  If
there are problems later in the freeze (or post-release) I think I'll get more
help from upstream is qscintilla2 is updated to be contemporaneous with sip4
and pythonqt4.

The major change for this release is Qt5 compatibility (something that is
also in the lastest python-qt4), but since we don't build against Qt5, it does
not directly affect Debian.  Beyond that it has some minor API extensions (no
API/ABI breaks) and some bug fixes that would be good to get in.

2.6.2-1 is in experimental (just uploaded) to facilitate review.  The diff is
ugly, in large part due to directory renaming in big chunks of the source and
documentation.

unblock qscintilla2/2.6.2-1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676076: Still fails NMUing

2012-07-10 Thread Scott Kitterman
This one still fails.  Over a month with no maintainer response, so uploading 
the attached NMU.

Scott Kdiff -Nru rubyluabridge-0.7.0/debian/changelog rubyluabridge-0.7.0/debian/changelog
--- rubyluabridge-0.7.0/debian/changelog	2010-06-13 00:23:20.0 -0400
+++ rubyluabridge-0.7.0/debian/changelog	2012-07-10 13:52:39.0 -0400
@@ -1,3 +1,13 @@
+rubyluabridge (0.7.0-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Force build/extconf_ubuntu.sh to use ruby1.8 explicitly to fix FTBFS now
+that ruby1.9.1 is default (Closes: #676076)
+  * Add g++-4.6 to build-depends since build system is hard coded to gcc 4.6
+and needs g++ too
+
+ -- Scott Kitterman sc...@kitterman.com  Tue, 10 Jul 2012 00:15:48 -0400
+
 rubyluabridge (0.7.0-1) unstable; urgency=low
 
   * New upstream release
diff -Nru rubyluabridge-0.7.0/debian/control rubyluabridge-0.7.0/debian/control
--- rubyluabridge-0.7.0/debian/control	2010-06-13 06:51:13.0 -0400
+++ rubyluabridge-0.7.0/debian/control	2012-07-10 13:53:03.0 -0400
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Athena Capital Research acr-deb...@athenacr.com
 Uploaders: Roberto C. Sanchez robe...@connexer.com
-Build-Depends: debhelper (= 5), liblua5.1-0-dev, rake, ruby1.8-dev, rubygems1.8, libboost-dev
+Build-Depends: debhelper (= 5), liblua5.1-0-dev, rake, ruby1.8-dev, rubygems1.8, libboost-dev, g++-4.6
 Standards-Version: 3.8.4
 Homepage: http://rubyluabridge.rubyforge.org
 Vcs-Browser: http://rubyluabridge.rubyforge.org/svn/debian/rubyluabridge/trunk
diff -Nru rubyluabridge-0.7.0/debian/patches/force_ruby1.8 rubyluabridge-0.7.0/debian/patches/force_ruby1.8
--- rubyluabridge-0.7.0/debian/patches/force_ruby1.8	1969-12-31 19:00:00.0 -0500
+++ rubyluabridge-0.7.0/debian/patches/force_ruby1.8	2012-07-10 00:18:21.0 -0400
@@ -0,0 +1,19 @@
+Description: Force ruby1.8
+ rubyluabridge (0.7.0-1.1) unstable; urgency=low
+ .
+   * Non-maintainer upload.
+   * Force build/extconf_ubuntu.sh to use ruby1.8 explicitly to fix FTBFS now
+ that ruby1.9.1 is default (Closes: #676076)
+Author: Scott Kitterman sc...@kitterman.com
+Bug-Debian: http://bugs.debian.org/676076
+
+---
+
+Index: rubyluabridge-0.7.0/build/extconf_ubuntu.sh
+===
+--- rubyluabridge-0.7.0.orig/build/extconf_ubuntu.sh	2012-07-10 00:17:01.0 -0400
 rubyluabridge-0.7.0/build/extconf_ubuntu.sh	2012-07-10 00:18:17.468137202 -0400
+@@ -1,2 +1,2 @@
+ #!/bin/bash
+-ruby extconf.rb --with-lua-include=/usr/include/lua5.1 --with-lualib=lua5.1 $@
++ruby1.8 extconf.rb --with-lua-include=/usr/include/lua5.1 --with-lualib=lua5.1 $@
diff -Nru rubyluabridge-0.7.0/debian/patches/series rubyluabridge-0.7.0/debian/patches/series
--- rubyluabridge-0.7.0/debian/patches/series	1969-12-31 19:00:00.0 -0500
+++ rubyluabridge-0.7.0/debian/patches/series	2012-07-10 00:17:01.0 -0400
@@ -0,0 +1 @@
+force_ruby1.8


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


Bug#681127: unblock: rubyluabridge/0.7.0-1.1

2012-07-10 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package rubyluabridge

Fixes RC bug #676076

unblock rubyluabridge/0.7.0-1.1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676120: Still fails - NMUing

2012-07-10 Thread Scott Kitterman
No response from the maintainer in over a month on an RC bug, so uploading the 
attached NMU.

Scott Kdiff -u treil-1.8/debian/changelog treil-1.8/debian/changelog
--- treil-1.8/debian/changelog
+++ treil-1.8/debian/changelog
@@ -1,3 +1,12 @@
+treil (1.8-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Specify use of ruby1.8 in debian/rules and add --with-ruby=ruby1.8 since
+ruby is now 1.9 (Closes: #676120)
+  * Make treil specifically depend on ruby1.8
+
+ -- Scott Kitterman sc...@kitterman.com  Tue, 10 Jul 2012 16:35:52 -0400
+
 treil (1.8-1) unstable; urgency=low
 
   * New upstream release.
diff -u treil-1.8/debian/control treil-1.8/debian/control
--- treil-1.8/debian/control
+++ treil-1.8/debian/control
@@ -7,7 +7,7 @@
 
 Package: treil
 Architecture: any
-Depends: ruby, libcairo-ruby1.8, ${shlibs:Depends}
+Depends: ruby1.8, libcairo-ruby1.8, ${shlibs:Depends}
 Description: tree structure into tiles
  Treil is a utility which produces an image of tiles from tree structure.
  For example, Linux directory tree can be shown as an image of tiles, 
diff -u treil-1.8/debian/rules treil-1.8/debian/rules
--- treil-1.8/debian/rules
+++ treil-1.8/debian/rules
@@ -15,8 +15,9 @@
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
-RUBYLIBDIR = $(shell ruby -rrbconfig -e 'puts Config::CONFIG[rubylibdir]')
-RUBYARCHDIR = $(shell ruby -rrbconfig -e 'puts Config::CONFIG[archdir]')
+RUBY = ruby1.8
+RUBYLIBDIR = $(shell ruby1.8 -rrbconfig -e 'puts Config::CONFIG[rubylibdir]')
+RUBYARCHDIR = $(shell ruby1.8 -rrbconfig -e 'puts Config::CONFIG[archdir]')
 
 CFLAGS = -Wall -g
 
@@ -32,6 +33,7 @@
 	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
 	--prefix=/usr --mandir=\$${prefix}/share/man \
 	--infodir=\$${prefix}/share/info --libexecdir=\$${prefix}/lib \
+	--with-ruby=$(RUBY) \
 	--with-rubylibdir=$(RUBYLIBDIR) --with-rubyarchdir=$(RUBYARCHDIR) \
 		CFLAGS=$(CFLAGS) LDFLAGS=-Wl,-z,defs
 


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


Bug#681148: unblock: treil/1.8-1.1

2012-07-10 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package treil

Fixes RC Bug #676120

unblock treil/1.8-1.1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676099: Still happens - NMUing

2012-07-10 Thread Scott Kitterman
No response from the maintainer in over a month on an RC bug, so uploading the 
attached debdiff.

Scott Kdiff -u libfam-ruby-0.2.0/debian/changelog libfam-ruby-0.2.0/debian/changelog
--- libfam-ruby-0.2.0/debian/changelog
+++ libfam-ruby-0.2.0/debian/changelog
@@ -1,3 +1,11 @@
+libfam-ruby (0.2.0-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Build-depend on ruby1.8 instead of ruby and use ruby1.8 in debian/rules
+since 1.9 is now the default (Closes: #676099)
+
+ -- Scott Kitterman sc...@kitterman.com  Tue, 10 Jul 2012 19:19:44 -0400
+
 libfam-ruby (0.2.0-2) unstable; urgency=low
 
   * debian/watch: look for upstream releases on pablotron.org
diff -u libfam-ruby-0.2.0/debian/rules libfam-ruby-0.2.0/debian/rules
--- libfam-ruby-0.2.0/debian/rules
+++ libfam-ruby-0.2.0/debian/rules
@@ -3,7 +3,7 @@
 	dh $@
 
 override_dh_auto_configure:
-	ruby extconf.rb
+	ruby1.8 extconf.rb
 	dh_auto_configure
 
 override_dh_auto_install:
diff -u libfam-ruby-0.2.0/debian/control libfam-ruby-0.2.0/debian/control
--- libfam-ruby-0.2.0/debian/control
+++ libfam-ruby-0.2.0/debian/control
@@ -2,7 +2,7 @@
 Section: ruby
 Priority: optional
 Maintainer: Jon Bernard jbern...@debian.org
-Build-Depends: debhelper (= 7.0.50~), ruby, libfam-dev, ruby1.8-dev
+Build-Depends: debhelper (= 7.0.50~), ruby1.8, libfam-dev, ruby1.8-dev
 Standards-Version: 3.8.3
 
 Package: libfam-ruby


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


Bug#681150: unblock: libfam-ruby/0.2.0-2.1

2012-07-10 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package libfam-ruby

Fixes RC bug #  676099.

unblock libfam-ruby/0.2.0-2.1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676079: Still happens - NMUing

2012-07-10 Thread Scott Kitterman
No maintainer reply to an RC bug in over a month, so uploading the attached 
debdiff.

Scott Kdiff -u libimlib2-ruby-0.5.2/debian/changelog libimlib2-ruby-0.5.2/debian/changelog
--- libimlib2-ruby-0.5.2/debian/changelog
+++ libimlib2-ruby-0.5.2/debian/changelog
@@ -1,3 +1,11 @@
+libimlib2-ruby (0.5.2-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Build-depend on ruby1.8 instead of ruby and use ruby1.8 in debian/rules
+because ruby1.9 is now default (Closes: #676079)
+
+ -- Scott Kitterman sc...@kitterman.com  Tue, 10 Jul 2012 19:36:52 -0400
+
 libimlib2-ruby (0.5.2-2) unstable; urgency=low
 
   * debian/watch: look for upstream releases on pablotron.org
diff -u libimlib2-ruby-0.5.2/debian/rules libimlib2-ruby-0.5.2/debian/rules
--- libimlib2-ruby-0.5.2/debian/rules
+++ libimlib2-ruby-0.5.2/debian/rules
@@ -3,7 +3,7 @@
 	dh $@
 
 override_dh_auto_configure:
-	ruby extconf.rb
+	ruby1.8 extconf.rb
 	dh_auto_configure
 
 override_dh_auto_install:
diff -u libimlib2-ruby-0.5.2/debian/control libimlib2-ruby-0.5.2/debian/control
--- libimlib2-ruby-0.5.2/debian/control
+++ libimlib2-ruby-0.5.2/debian/control
@@ -2,7 +2,7 @@
 Section: ruby
 Priority: optional
 Maintainer: Jon Bernard jbern...@debian.org
-Build-Depends: debhelper (= 7.0.50~), ruby, libimlib2-dev, ruby1.8-dev
+Build-Depends: debhelper (= 7.0.50~), ruby1.8, libimlib2-dev, ruby1.8-dev
 Standards-Version: 3.8.3
 
 Package: libimlib2-ruby


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


Bug#681154: unblock: libimlib2-ruby/0.5.2-2.1

2012-07-10 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package libimlib2-ruby

Fixes RC Bug #676079.

unblock libimlib2-ruby/0.5.2-2.1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676086: NMU diff

2012-07-10 Thread Scott Kitterman
RC bug with no response from the maintainer for over a month.  I'm going to 
upload the attached debdiff.

Scott Kdiff -u libnet-irc-ruby-0.14/debian/control libnet-irc-ruby-0.14/debian/control
--- libnet-irc-ruby-0.14/debian/control
+++ libnet-irc-ruby-0.14/debian/control
@@ -3,12 +3,12 @@
 Priority: extra
 Maintainer: Aurélien GÉRÔME a...@roxor.cx
 Build-Depends: debhelper (= 4.0)
-Build-Depends-Indep: ruby
+Build-Depends-Indep: ruby1.8
 Standards-Version: 3.7.2
 
 Package: libnet-irc-ruby
 Architecture: all
-Depends: ruby
+Depends: ruby1.8
 Description: a Ruby library for IRC (Internet Relay Chat)
  This library provides a Ruby library interface for IRC
  (Internet Relay Chat). It consists of a low-level
diff -u libnet-irc-ruby-0.14/debian/changelog libnet-irc-ruby-0.14/debian/changelog
--- libnet-irc-ruby-0.14/debian/changelog
+++ libnet-irc-ruby-0.14/debian/changelog
@@ -1,3 +1,11 @@
+libnet-irc-ruby (0.14-5.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * In debian/rules and control ruby/ruby1.8 since ruby 1.9 is now default
+(Closes: #676086)
+
+ -- Scott Kitterman sc...@kitterman.com  Tue, 10 Jul 2012 20:02:06 -0400
+
 libnet-irc-ruby (0.14-5) unstable; urgency=low
 
   * Adopt the package (Closes: #314192).
diff -u libnet-irc-ruby-0.14/debian/rules libnet-irc-ruby-0.14/debian/rules
--- libnet-irc-ruby-0.14/debian/rules
+++ libnet-irc-ruby-0.14/debian/rules
@@ -6,10 +6,10 @@
 #export DH_VERBOSE=1
 
 destdir  = $(shell pwd)/debian/libnet-irc-ruby/
-bindir   := $(shell ruby -r rbconfig -e 'print Config::CONFIG[bindir]')
-exec_prefix := $(shell ruby -r rbconfig -e 'print Config::CONFIG[exec_prefix]')
-libdir := $(shell ruby -r rbconfig -e 'print Config::CONFIG[rubylibdir]')
-archdir := $(shell ruby -r rbconfig -e 'print Config::CONFIG[archdir]')
+bindir   := $(shell ruby1.8 -r rbconfig -e 'print Config::CONFIG[bindir]')
+exec_prefix := $(shell ruby1.8 -r rbconfig -e 'print Config::CONFIG[exec_prefix]')
+libdir := $(shell ruby1.8 -r rbconfig -e 'print Config::CONFIG[rubylibdir]')
+archdir := $(shell ruby1.8 -r rbconfig -e 'print Config::CONFIG[archdir]')
 pkg_name := $(shell basename `pwd` | sed -e 's/^\(.*\)-[^-]*$$/\1/')
 
 build: build-stamp


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


Bug#681165: unblock: libnet-irc-ruby/0.14-5.1

2012-07-10 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package libnet-irc-ruby

Fixes RC Bug #676086.

unblock libnet-irc-ruby/0.14-5.1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676078: NMU diff

2012-07-10 Thread Scott Kitterman
It turns out not to be very hard to coerce it back to a buildable state with 
ruby1.8.  NMU diff attached.  Uploading since it's an RC bug over a month old 
with no maintainer response.

Scott Kdiff -u merb-1.0.12+dfsg/debian/changelog merb-1.0.12+dfsg/debian/changelog
--- merb-1.0.12+dfsg/debian/changelog
+++ merb-1.0.12+dfsg/debian/changelog
@@ -1,3 +1,12 @@
+merb (1.0.12+dfsg-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Switch all 22 (maybe it's 19, it's hard to count) instances of
+/usr/bin/ruby in debian/rules to /usr/bin/ruby1.8 so that merb ruby1.8
+during the build now that ruby1.8 is no longer default (Closes: #676078)
+
+ -- Scott Kitterman sc...@kitterman.com  Tue, 10 Jul 2012 23:15:04 -0400
+
 merb (1.0.12+dfsg-4) unstable; urgency=low
 
   * Add merb-param-protection package.
diff -u merb-1.0.12+dfsg/debian/rules merb-1.0.12+dfsg/debian/rules
--- merb-1.0.12+dfsg/debian/rules
+++ merb-1.0.12+dfsg/debian/rules
@@ -134,45 +134,45 @@
 
 install/libmerb-core-ruby1.8::
 	$(MERB_CORE_INSTALL_SETUP_CMD)
-	(cd merb-core  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) config $(DEB_RUBY_CONFIG_ARGS))
-	(cd merb-core  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) setup)
-	(cd merb-core  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) install --prefix=../debian/libmerb-core-ruby1.8)
+	(cd merb-core  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) config $(DEB_RUBY_CONFIG_ARGS))
+	(cd merb-core  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) setup)
+	(cd merb-core  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) install --prefix=../debian/libmerb-core-ruby1.8)
 	mv $(CURDIR)/debian/libmerb-core-ruby1.8/usr/bin/merb $(CURDIR)/debian/merb-core/usr/bin/
 	rm $(CURDIR)/debian/libmerb-core-ruby1.8/usr/bin/merb-specs
 	rmdir $(CURDIR)/debian/libmerb-core-ruby1.8/usr/bin/
 
 install/libmerb-haml-ruby1.8::
 	$(MERB_HAML_INSTALL_SETUP_CMD)
-	(cd merb-haml  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) config $(DEB_RUBY_CONFIG_ARGS))
-	(cd merb-haml  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) setup)
-	(cd merb-haml  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) install --prefix=../debian/libmerb-haml-ruby1.8)
+	(cd merb-haml  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) config $(DEB_RUBY_CONFIG_ARGS))
+	(cd merb-haml  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) setup)
+	(cd merb-haml  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) install --prefix=../debian/libmerb-haml-ruby1.8)
 
 install/libmerb-slices-ruby1.8::
 	$(MERB_SLICES_INSTALL_SETUP_CMD)
-	(cd merb-slices  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) config $(DEB_RUBY_CONFIG_ARGS))
-	(cd merb-slices  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) setup)
-	(cd merb-slices  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) install --prefix=../debian/libmerb-slices-ruby1.8)
+	(cd merb-slices  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) config $(DEB_RUBY_CONFIG_ARGS))
+	(cd merb-slices  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) setup)
+	(cd merb-slices  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) install --prefix=../debian/libmerb-slices-ruby1.8)
 	rm $(CURDIR)/debian/libmerb-slices-ruby1.8/usr/lib/ruby/1.8/generators/templates/common/LICENSE
 	mv $(CURDIR)/debian/libmerb-slices-ruby1.8/usr/bin/slice $(CURDIR)/debian/merb-slices/usr/bin/merb-slice
 	rmdir $(CURDIR)/debian/libmerb-slices-ruby1.8/usr/bin/
 
 install/libmerb-assets-ruby1.8::
 	$(MERB_ASSETS_INSTALL_SETUP_CMD)
-	(cd merb-assets  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) config $(DEB_RUBY_CONFIG_ARGS))
-	(cd merb-assets  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) setup)
-	(cd merb-assets  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) install --prefix=../debian/libmerb-assets-ruby1.8)
+	(cd merb-assets  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) config $(DEB_RUBY_CONFIG_ARGS))
+	(cd merb-assets  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) setup)
+	(cd merb-assets  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) install --prefix=../debian/libmerb-assets-ruby1.8)
 
 install/libmerb-helpers-ruby1.8::
 	$(MERB_HELPERS_INSTALL_SETUP_CMD)
-	(cd merb-helpers  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) config $(DEB_RUBY_CONFIG_ARGS))
-	(cd merb-helpers  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) setup)
-	(cd merb-helpers  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) install --prefix=../debian/libmerb-helpers-ruby1.8)
+	(cd merb-helpers  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) config $(DEB_RUBY_CONFIG_ARGS))
+	(cd merb-helpers  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) setup)
+	(cd merb-helpers  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) install --prefix=../debian/libmerb-helpers-ruby1.8)
 
 install/libmerb-param-protection-ruby1.8::
 	$(MERB_PARAM_PROTECTION_INSTALL_SETUP_CMD)
-	(cd merb-param-protection  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) config $(DEB_RUBY_CONFIG_ARGS))
-	(cd merb-param-protection  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) setup)
-	(cd merb-param-protection  /usr/bin/ruby $(DEB_RUBY_SETUP_CMD) install --prefix=../debian/libmerb-param-protection-ruby1.8)
+	(cd merb-param-protection  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) config $(DEB_RUBY_CONFIG_ARGS))
+	(cd merb-param-protection  /usr/bin/ruby1.8 $(DEB_RUBY_SETUP_CMD) setup)
+	(cd merb-param-protection  /usr/bin/ruby1.8

Bug#681168: unblock: merb/1.0.12+dfsg-4.1

2012-07-10 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package merb

Fixes RC bug #676078

unblock merb/1.0.12+dfsg-4.1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676078: It seems certainly an improvement

2012-07-10 Thread Scott Kitterman
The proposed change effectively puts things back like they were before the 
default ruby version was changed, so it should work.  In any case it does get 
the package building again, so I'll upload this as an NMU.  Given it's an over 
a month old bug with no maintainer response, I'm uploading the attached diff 
shortly.

Scott Kdiff -Nru geos-3.3.3/debian/changelog geos-3.3.3/debian/changelog
--- geos-3.3.3/debian/changelog	2012-05-23 09:39:19.0 -0400
+++ geos-3.3.3/debian/changelog	2012-07-10 23:42:11.0 -0400
@@ -1,3 +1,12 @@
+geos (3.3.3-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Build-depend on ruby/ruby-dev1.8 and build-conflict on ruby/ruby-dev1.9 to
+ensure the package continues to be built using ruby1.8 (Closes: #676094)
+- Thanks to Peter Green and Raspbian for the patch
+
+ -- Scott Kitterman sc...@kitterman.com  Tue, 10 Jul 2012 23:39:07 -0400
+
 geos (3.3.3-1) unstable; urgency=low
 
   * New upstream bugfixing version. This is useful because correctly
diff -Nru geos-3.3.3/debian/control geos-3.3.3/debian/control
--- geos-3.3.3/debian/control	2012-05-23 09:39:19.0 -0400
+++ geos-3.3.3/debian/control	2012-07-10 23:38:26.0 -0400
@@ -3,7 +3,8 @@
 Priority: optional
 Maintainer: Debian GIS Project pkg-grass-de...@lists.alioth.debian.org
 Uploaders: Francesco Paolo Lovergine fran...@debian.org
-Build-Depends: debhelper (= 9), doxygen, swig, ruby, ruby-dev
+Build-Depends: debhelper (= 9), doxygen, swig, ruby1.8, ruby1.8-dev
+Build-Conflicts: ruby1.9.1, ruby1.9.1-dev
 Standards-Version: 3.9.3
 Homepage: http://trac.osgeo.org/geos/
 Vcs-Browser: http://git.debian.org/?p=pkg-grass/geos.git
diff -Nru geos-3.3.3/debian/control.in geos-3.3.3/debian/control.in
--- geos-3.3.3/debian/control.in	2012-05-23 09:39:19.0 -0400
+++ geos-3.3.3/debian/control.in	2012-07-10 23:39:02.0 -0400
@@ -3,7 +3,8 @@
 Priority: optional
 Maintainer: Debian GIS Project pkg-grass-de...@lists.alioth.debian.org
 Uploaders: Francesco Paolo Lovergine fran...@debian.org
-Build-Depends: debhelper (= 9), doxygen, swig, ruby, ruby-dev
+Build-Depends: debhelper (= 9), doxygen, swig, ruby1.8, ruby1.8-dev
+Build-Conflicts: ruby1.9.1, ruby1.9.1-dev
 Standards-Version: 3.9.3
 Homepage: http://trac.osgeo.org/geos/
 Vcs-Browser: http://git.debian.org/?p=pkg-grass/geos.git


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


Bug#681171: unblock: geos/3.3.3-1.1

2012-07-10 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package geos

Fixes RC bug #676094

unblock geos/3.3.3-1.1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#675033: ITP: kgraphviewer -- KGraphViewer is a GraphViz dot graph viewer for KDE 4.

2012-05-29 Thread Scott Kitterman
On Tuesday, May 29, 2012 02:54:40 PM w.goesgens wrote:
...
 Already packaged for ubuntu by Scott Kitterman; compiles on debian wheezy.
 https://launchpad.net/ubuntu/+source/kgraphviewer/4:2.1.1-0ubuntu1

For the record, it is already packaged in Ubuntu, but not by me.  I touched it 
there to do some fix ups, but it's most certainly not my package.

Scott K

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


Bug#668273: Update

2012-06-15 Thread Scott Kitterman
Upstream evaluated CVE-2012-1443 as invalid.  The balance are addressed in 
0.97.5 which I am working on a package for now.

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


Bug#677686: [Pkg-clamav-devel] Bug#677686: clamav-daemon: please relabel the /run directory for SE Linux

2012-06-15 Thread Scott Kitterman
When you say like the following, do you mean exactly the following is 
correct, known to work, and in my opinion as one of Debian's SE Linux experts 
something you should apply or something sort of like this, but I didn't 
think about it enough to know if this is really right?



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#677686: [Pkg-clamav-devel] Bug#677686: clamav-daemon: please relabel the /run directory for SE Linux

2012-06-15 Thread Scott Kitterman
Thanks for the clarification.

This, unfortunately, came after I uploaded 0.97.5 today.  Since it's got 
security bug fixes in it, I particularly don't want to do anything I don't have 
to that delays it getting into Testing.  I'll try and take another pass at 
bugs after that.

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


Bug#678019: Working on it

2012-06-18 Thread Scott Kitterman
Confirmed.  WIll upload a new package shortly.

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


Bug#677686: Proposed change in common function make_dir

2012-06-18 Thread Scott Kitterman
Your proposed change will do the same change for clamav-freshclam and clamav-
milter.  Is that desirable or should we move your addition outside the common 
function?

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


Bug#678247: [Pkg-clamav-devel] Bug#678247: [clamav-freshclam] Clamav cannot generate a proper /etc/clamav/freshclam.conf

2012-06-20 Thread Scott Kitterman
Could you provide the information requested in 
https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/784797/comments/8 - I 
agree it looks similar. 

Bug#678247: [Pkg-clamav-devel] Bug#678247: Requested info

2012-06-20 Thread Scott Kitterman
Thanks.  I've reviewed the freshclam postinst and don't see how it can cause a 
problem like this.  Can you sudo dpkg-reconfigure clamav-freshclam and when you 
get to the related questions, carefully check and see if there's any 
whitespace in the debconf window.  If so, please remove it and see if that 
solves the problem.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#672312: [Python-modules-team] Bug#672312: Bug#672312: pyqt4-dev-tools: segfault when using pyuic4

2012-05-17 Thread Scott Kitterman
PyKDE is reported to be working now, so please retry and see if the problem 
still appears.

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


Bug#672613: Recent binNMU should have fixed this

2012-05-18 Thread Scott Kitterman
Please check again and see if this bug still exists.  It should be resolved.

Thanks,

Scott K

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


Bug#672553: Tested and it works

2012-05-18 Thread Scott Kitterman
I've tested, in conjunction with the fix for #672552, this with KDE 4.7.4 in 
Unstable and it produces working python and python3 bindings.

$ python3
Python 3.2.3rc2 (default, Mar 21 2012, 06:59:51) 
[GCC 4.6.3] on linux2
Type help, copyright, credits or license for more information.
 import PyKDE4
 

The only think I would change is the name of the binary package.  Similar to 
how we did python-qt4, I think we should use the Python policy compliant name 
for pykde4.  That would be python3-pykde4 (instead of python3-kde4_.

Scott K

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


Bug#673734: lintian: python-script-but-no-python-dep check should not check python3 directories

2012-05-20 Thread Scott Kitterman
Package: lintian
Version: 2.5.7
Severity: normal

E: python3-pykde4: python-script-but-no-python-dep 
usr/lib/python3/dist-packages/PyQt4/uic/pykdeuic4.py

python-script-but-no-python-dep should not check for scripts in
usr/lib/python3.  Instead, a Python 3 version of the test should check for
Python 3 dependency in that directory.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#673925: Needs python-opengl ported to python3

2012-05-21 Thread Scott Kitterman
For Python, we have python-qt4-gl.  It depends on python-opengl.  Python-
opengl is not ported to Python 3 yet, so there's no way to support 
PyQt4/QtOpenGL yet.

We'll support it when the dependencies are available (python3-opengl) and it's 
part of what upstream ships.  I imagine it'll be supported, but I've no idea 
the timing since it's dependent on developments outside Debian.

BTW, the package name will be python3-pyqt4.qtopengl when it's available.

Scott K

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


Bug#673925: Needs python-opengl ported to python3

2012-05-22 Thread Scott Kitterman
The dependency relationship predates my work on the package, so I've assumed 
it's correct.  Perhaps it was a some point and it's not now.  Next time I 
update the package, I can see if I can build this module for Python 3.

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


Bug#681235: python3-defaults: Shebang rewriting rewrites /usr/bin/python3 to /usr/bin/python

2012-07-11 Thread Scott Kitterman
Package: python3-defaults
Version: 3.2.3-1
Severity: grave
Justification: renders package unusable

There's a mistake in SHEBANG_RE in debpython/tools.py that causes it to lose
the 3 in python3 in shebangs.  I'll upload the fix as soon as I have a bug
number.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#642403: Looks like a combination of multiarch and GCC 4.7

2012-07-11 Thread Scott Kitterman
Considering upstream is dead (web site vanished in 2007) and it's even been 
removed from FreeBSD ports, I think it might be time to consider this one 
dead.

Adding the DEB_HOST_MULTIARCH would seem to help, but then it doesn't appear 
the entire build system pays attention to SYS_INCLUDES.  Then there are some 
includes that seem to be missing even after you fix the path.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#672084: NMU diff

2012-07-11 Thread Scott Kitterman
RC bug and over a month since the last maintainer comment, so uploading the 
attached diff.

Scott Kdiff -Nru imageshack-uploader-2.2+hg20100408.d802dea89428/debian/changelog imageshack-uploader-2.2+hg20100408.d802dea89428/debian/changelog
--- imageshack-uploader-2.2+hg20100408.d802dea89428/debian/changelog	2012-06-03 01:41:49.0 -0400
+++ imageshack-uploader-2.2+hg20100408.d802dea89428/debian/changelog	2012-07-12 01:05:55.0 -0400
@@ -1,9 +1,24 @@
+imageshack-uploader (2.2+hg20100408.d802dea89428-5.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Restore previous NMU for GCC 4.7 compatiblity that was inadvertently
+reverted in the last maintainer upload (Closes: #672084) (again)
+
+ -- Scott Kitterman sc...@kitterman.com  Thu, 12 Jul 2012 01:04:20 -0400
+
 imageshack-uploader (2.2+hg20100408.d802dea89428-5) unstable; urgency=low
 
   * Re-enable uploading with new Qt versions. (LP: #995300)
 
  -- Luke Faraone lfara...@debian.org  Sat, 02 Jun 2012 22:41:33 -0700
 
+imageshack-uploader (2.2+hg20100408.d802dea89428-4.1) unstable; urgency=low
+
+  * Non maintainer upload.
+  * Fix build ailure with GCC 4.7. Closes: #672084.
+
+ -- Matthias Klose d...@debian.org  Tue, 22 May 2012 23:11:28 +
+
 imageshack-uploader (2.2+hg20100408.d802dea89428-4) unstable; urgency=low
 
   * Correct error in debian/rules which prevented the installation of
diff -Nru imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/g++-4.7.patch imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/g++-4.7.patch
--- imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/g++-4.7.patch	1969-12-31 19:00:00.0 -0500
+++ imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/g++-4.7.patch	2012-07-12 01:02:31.0 -0400
@@ -0,0 +1,12 @@
+Index: imageshack-uploader-2.2+hg20100408.d802dea89428/qtsingleapplication/qtlocalpeer.cpp
+===
+--- imageshack-uploader-2.2+hg20100408.d802dea89428.orig/qtsingleapplication/qtlocalpeer.cpp	2010-04-20 20:51:25.0 +
 imageshack-uploader-2.2+hg20100408.d802dea89428/qtsingleapplication/qtlocalpeer.cpp	2012-05-22 23:11:17.965909142 +
+@@ -58,6 +58,7 @@
+ #if defined(Q_OS_UNIX)
+ #include time.h
+ #endif
++#include unistd.h
+ 
+ namespace QtLP_Private {
+ #include qtlockedfile.cpp
diff -Nru imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/series imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/series
--- imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/series	2012-06-03 01:41:49.0 -0400
+++ imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/series	2012-07-12 01:03:18.0 -0400
@@ -2,3 +2,4 @@
 1001-fix-ffmpeg-6.0.diff
 1002-fix-FTBFS-libav-0.7.diff
 1003-fix-login-failure.diff
+g++-4.7.patch


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


Bug#681287: unblock: imageshack-uploader/2.2+hg20100408.d802dea89428-5.1

2012-07-11 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package imageshack-uploader

Fixes RC bug #672084,

unblock imageshack-uploader/2.2+hg20100408.d802dea89428-5.1
diff -Nru imageshack-uploader-2.2+hg20100408.d802dea89428/debian/changelog imageshack-uploader-2.2+hg20100408.d802dea89428/debian/changelog
--- imageshack-uploader-2.2+hg20100408.d802dea89428/debian/changelog	2012-06-03 01:41:49.0 -0400
+++ imageshack-uploader-2.2+hg20100408.d802dea89428/debian/changelog	2012-07-12 01:05:55.0 -0400
@@ -1,9 +1,24 @@
+imageshack-uploader (2.2+hg20100408.d802dea89428-5.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Restore previous NMU for GCC 4.7 compatiblity that was inadvertently
+reverted in the last maintainer upload (Closes: #672084) (again)
+
+ -- Scott Kitterman sc...@kitterman.com  Thu, 12 Jul 2012 01:04:20 -0400
+
 imageshack-uploader (2.2+hg20100408.d802dea89428-5) unstable; urgency=low
 
   * Re-enable uploading with new Qt versions. (LP: #995300)
 
  -- Luke Faraone lfara...@debian.org  Sat, 02 Jun 2012 22:41:33 -0700
 
+imageshack-uploader (2.2+hg20100408.d802dea89428-4.1) unstable; urgency=low
+
+  * Non maintainer upload.
+  * Fix build ailure with GCC 4.7. Closes: #672084.
+
+ -- Matthias Klose d...@debian.org  Tue, 22 May 2012 23:11:28 +
+
 imageshack-uploader (2.2+hg20100408.d802dea89428-4) unstable; urgency=low
 
   * Correct error in debian/rules which prevented the installation of
diff -Nru imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/g++-4.7.patch imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/g++-4.7.patch
--- imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/g++-4.7.patch	1969-12-31 19:00:00.0 -0500
+++ imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/g++-4.7.patch	2012-07-12 01:02:31.0 -0400
@@ -0,0 +1,12 @@
+Index: imageshack-uploader-2.2+hg20100408.d802dea89428/qtsingleapplication/qtlocalpeer.cpp
+===
+--- imageshack-uploader-2.2+hg20100408.d802dea89428.orig/qtsingleapplication/qtlocalpeer.cpp	2010-04-20 20:51:25.0 +
 imageshack-uploader-2.2+hg20100408.d802dea89428/qtsingleapplication/qtlocalpeer.cpp	2012-05-22 23:11:17.965909142 +
+@@ -58,6 +58,7 @@
+ #if defined(Q_OS_UNIX)
+ #include time.h
+ #endif
++#include unistd.h
+ 
+ namespace QtLP_Private {
+ #include qtlockedfile.cpp
diff -Nru imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/series imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/series
--- imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/series	2012-06-03 01:41:49.0 -0400
+++ imageshack-uploader-2.2+hg20100408.d802dea89428/debian/patches/series	2012-07-12 01:03:18.0 -0400
@@ -2,3 +2,4 @@
 1001-fix-ffmpeg-6.0.diff
 1002-fix-FTBFS-libav-0.7.diff
 1003-fix-login-failure.diff
+g++-4.7.patch


Bug#681434: unblock: python3-defaults/3.2.3-4

2012-07-13 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package python3-defaults

Gets RC bug #681235 properly fixed, as the fix I uploaded in 3.2.3-2 missed a
few corner cases.  Additionally fixes RC bug #681389.  

Debdiff attached.

unblock python3-defaults/3.2.3-4
diff -Nru python3-defaults-3.2.3/debian/changelog python3-defaults-3.2.3/debian/changelog
--- python3-defaults-3.2.3/debian/changelog	2012-06-30 11:10:00.0 -0400
+++ python3-defaults-3.2.3/debian/changelog	2012-07-13 01:51:55.0 -0400
@@ -1,3 +1,30 @@
+python3-defaults (3.2.3-4) unstable; urgency=high
+
+  * py3clean: really close #681389
+
+ -- Piotr Ożarowski pi...@debian.org  Thu, 12 Jul 2012 22:45:47 -0600
+
+python3-defaults (3.2.3-3) unstable; urgency=high
+
+  * Yet another update in SHEBANG_RE to handle even more cases
+  * test4 fixed to catch missing /usr/bin/python → /usr/bin/python3 rewrites
+  * py3clean: accept --package *and* directory name at the same time
+(change missed in -1 upload, closes: #681389)
+  * Bump minimum required python3 version to 3.2.3-3~ in packages with .py files
+(due to --package option that is added to py3compile/py3clean in rtupdate
+scripts)
+
+ -- Piotr Ożarowski pi...@debian.org  Thu, 12 Jul 2012 12:40:42 -0600
+
+python3-defaults (3.2.3-2) unstable; urgency=high
+
+  * Urgency high for grave bug because this will cause other packages to
+misbuild
+  * Correct SHEBANG_RE in debpython/tools.py to not capture the 3 from python3
+(Closes: #681235)
+
+ -- Scott Kitterman sc...@kitterman.com  Wed, 11 Jul 2012 11:51:46 -0400
+
 python3-defaults (3.2.3-1) unstable; urgency=low
 
   * Bump upstream version to match current unstable/wheezy python3.2 version
diff -Nru python3-defaults-3.2.3/debian/python3.prerm python3-defaults-3.2.3/debian/python3.prerm
--- python3-defaults-3.2.3/debian/python3.prerm	2012-01-09 16:44:09.0 -0500
+++ python3-defaults-3.2.3/debian/python3.prerm	2012-07-12 19:40:37.0 -0400
@@ -1,4 +1,5 @@
-#! /bin/sh -e
+#! /bin/sh
+set -e
 
 if which py3clean /dev/null 21; then
 	py3clean -p python3
diff -Nru python3-defaults-3.2.3/debpython/depends.py python3-defaults-3.2.3/debpython/depends.py
--- python3-defaults-3.2.3/debpython/depends.py	2012-06-30 15:10:02.0 -0400
+++ python3-defaults-3.2.3/debpython/depends.py	2012-07-12 18:41:16.0 -0400
@@ -23,7 +23,7 @@
 from debpython.version import DEFAULT, SUPPORTED, getver, vrepr, vrange_str
 
 # minimum version required for py3compile/py3clean:
-MINPYCDEP = 'python3 (= 3.1.3-13~)'
+MINPYCDEP = 'python3 (= 3.2.3-3~)'
 
 log = logging.getLogger(__name__)
 
diff -Nru python3-defaults-3.2.3/debpython/files.py python3-defaults-3.2.3/debpython/files.py
--- python3-defaults-3.2.3/debpython/files.py	1969-12-31 19:00:00.0 -0500
+++ python3-defaults-3.2.3/debpython/files.py	2012-07-12 18:49:51.0 -0400
@@ -0,0 +1,84 @@
+# Copyright © 2012 Piotr Ożarowski pi...@debian.org
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the Software), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+import logging
+from os import walk
+from os.path import abspath, isfile, join
+from subprocess import Popen, PIPE
+from debpython.pydist import PUBLIC_DIR_RE
+
+log = logging.getLogger(__name__)
+
+
+def from_directory(dname, extensions=('.py',)):
+Generate *.py file names available in given directory.
+extensions = tuple(extensions)  # .endswith doesn't like list
+if isinstance(dname, (list, tuple)):
+for item in dname:
+for fn in from_directory(item):
+yield fn
+elif isfile(dname) and dname.endswith(extensions):
+yield dname
+else:
+for root, dirs, file_names in walk(abspath(dname)):
+for fn in file_names:
+if fn.endswith(extensions):
+yield join(root, fn)
+
+
+def from_package(package_name, extensions=('.py',)):
+Generate *.py file names available in given package

Bug#680398: unblock: python-qt4/4.9.3-2

2012-07-14 Thread Scott Kitterman
On Saturday, July 14, 2012 11:54:30 AM Cyril Brulebois wrote:
 Scott Kitterman deb...@kitterman.com (05/07/2012):
  Please unblock package python-qt4
  
  Fixes RC bug #679819 to allow 4.9.3 (which was uploaded before the
  freeze, but stuck in New for some time and has a lot of bug fixes) to
  migrate.
  
  unblock python-qt4/4.9.3-2
 
 For the record, there's now -3 due to the RC bug fix for #680837.
 
 I know there are some doc updates, along with updated MetaSIP-generated
 comments, but that's still a lot…
   1554 files changed, 10441 insertions(+), 3247 deletions(-)
 
 I guess it would be nice for someone to dive into this to determine how
 much really changed (and the amount of code one would need to review if
 more regressions are found)…

Every file has between two and six lines of change due to both the MetaSIP-
generated comments and the changed copyright year.  After removing those and 
the changes in docs/examples the attached diffstat is what's left.  Instead of 
1554 files, it's 127 and only 10 of those have more than a 100 LOC change 
(total lines changed in the reduced set is 4427).  

A significant fraction of the remaining diff is the addition of IFDEFs 
assocaited with support for Qt5 and code for that (which won't affect us since 
we aren't building against it).

Is that the sort of thing you were looking for?

Scott K python-qt4-4.9.3/configure.py  
  |  108 +
 python-qt4-4.9.3/dbus/dbus.cpp 
  |   14 
 python-qt4-4.9.3/dbus/helper.h 
  |9 
 python-qt4-4.9.3/designer/pluginloader.cpp 
  |   14 
 python-qt4-4.9.3/pyuic/uic/Compiler/proxy_metaclass.py 
  |  100 +
 python-qt4-4.9.3/pyuic/uic/Compiler/proxy_type.py  
  |   77 -
 python-qt4-4.9.3/pyuic/uic/Loader/qobjectcreator.py
  |   49 
 python-qt4-4.9.3/pyuic/uic/__init__.py 
  |   10 
 python-qt4-4.9.3/pyuic/uic/icon_cache.py   
  |   14 
 python-qt4-4.9.3/pyuic/uic/objcreator.py   
  |   17 
 python-qt4-4.9.3/pyuic/uic/port_v2/proxy_base.py   
  |   10 
 python-qt4-4.9.3/pyuic/uic/port_v3/proxy_base.py   
  |   10 
 python-qt4-4.9.3/qpy/QtCore/qpycore_post_init.cpp  
  |8 
 python-qt4-4.9.3/qpy/QtCore/qpycore_pyqtboundsignal.cpp
  |   31 
 python-qt4-4.9.3/qpy/QtCore/qpycore_pyqtproxy.cpp  
  |   41 
 python-qt4-4.9.3/qpy/QtCore/qpycore_qobject_helpers.cpp
  |   22 
 python-qt4-4.9.3/qpy/QtCore/qpycore_qstring.cpp
  |   55 -
 python-qt4-4.9.3/qpy/QtCore/qpycore_sip_helpers.cpp
  |8 
 python-qt4-4.9.3/qpy/QtDeclarative/qpydeclarative_chimera_helpers.cpp  
  |7 
 python-qt4-4.9.3/sip/QtAssistant/QtAssistantmod.sip
  |6 
 python-qt4-4.9.3/sip/QtCore/QtCoremod.sip  
  |   10 
 python-qt4-4.9.3/sip/QtCore/qabstracteventdispatcher.sip   
  |   40 
 python-qt4-4.9.3/sip/QtCore/qabstractfileengine.sip
  |   15 
 python-qt4-4.9.3/sip/QtCore/qabstractitemmodel.sip 
  |   76 +
 python-qt4-4.9.3/sip/QtCore/qbasictimer.sip
  |7 
 python-qt4-4.9.3/sip/QtCore/qbytearray.sip 
  |   13 
 python-qt4-4.9.3/sip/QtCore/qchar.sip  
  |   28 
 python-qt4-4.9.3/sip/QtCore/qcoreapplication.sip   
  |   81 +
 python-qt4-4.9.3/sip/QtCore/qcoreevent.sip 
  |   28 
 python-qt4-4.9.3/sip/QtCore/qcryptographichash.sip 
  |   24 
 python-qt4-4.9.3/sip/QtCore/qdatastream.sip
  |   10 
 python-qt4-4.9.3/sip/QtCore/qdatetime.sip  
  |   82 +
 python-qt4-4.9.3/sip/QtCore/qdir.sip   
  |   11 
 python-qt4-4.9.3/sip/QtCore/qeasingcurve.sip   
  |   22 
 python-qt4-4.9.3/sip/QtCore/qeventloop.sip 
  |   11 
 python-qt4-4.9.3/sip/QtCore/qfile.sip  
  |   43 
 python-qt4-4.9.3/sip/QtCore/qfileinfo.sip  
  |8 
 python-qt4-4.9.3/sip/QtCore/qfilesystemwatcher.sip 
  |   24 
 python-qt4-4.9.3/sip/QtCore/qfsfileengine.sip  
  |8 
 python-qt4-4.9.3/sip/QtCore/qglobal.sip

Bug#681804: unblock: python-pyxattr/0.5.1-1.1

2012-07-16 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package python-pyxattr

Fixes RC Bug #680859.  Currently in delay/2.

unblock python-pyxattr/0.5.1-1.1
diff -Nru python-pyxattr-0.5.1/debian/changelog python-pyxattr-0.5.1/debian/changelog
--- python-pyxattr-0.5.1/debian/changelog	2012-05-16 15:00:20.0 -0400
+++ python-pyxattr-0.5.1/debian/changelog	2012-07-16 13:32:03.0 -0400
@@ -1,3 +1,13 @@
+python-pyxattr (0.5.1-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Drop python3-sphinx as an alternate build-depend to python-sphinx to fix
+FTBFS (Closes: #680859)
+- The package only builds and installs html documentation for the python
+  version anyway, so python3-sphinx as a build-dep is clearly wrong
+
+ -- Scott Kitterman sc...@kitterman.com  Mon, 16 Jul 2012 13:29:41 -0400
+
 python-pyxattr (0.5.1-1) unstable; urgency=low
 
   * New upstream bug-fix release, fixing reference leaks and potential
diff -Nru python-pyxattr-0.5.1/debian/control python-pyxattr-0.5.1/debian/control
--- python-pyxattr-0.5.1/debian/control	2012-05-16 15:00:20.0 -0400
+++ python-pyxattr-0.5.1/debian/control	2012-07-16 13:29:34.0 -0400
@@ -6,7 +6,7 @@
  python (= 2.6.6-3~), python-all-dev (= 2.6.6-3~), python-all-dbg,
  python3-all, python3-all-dev, python3-all-dbg,
  libattr1-dev, python-setuptools, python3-setuptools,
- python-sphinx (= 1.0.7+dfsg) | python3-sphinx
+ python-sphinx (= 1.0.7+dfsg)
 Standards-Version: 3.9.3
 Homepage: http://pyxattr.k1024.org/
 Vcs-Browser: http://git.k1024.org/debian-pyxattr.git


Bug#680859: NMUing

2012-07-16 Thread Scott Kitterman
Uploading the attached to delay/2 due to no maintainer response after a week.  
If you want to fix it differently or have me delay it further, please let me 
know.

Scott Kdiff -Nru python-pyxattr-0.5.1/debian/changelog python-pyxattr-0.5.1/debian/changelog
--- python-pyxattr-0.5.1/debian/changelog	2012-05-16 15:00:20.0 -0400
+++ python-pyxattr-0.5.1/debian/changelog	2012-07-16 13:32:03.0 -0400
@@ -1,3 +1,13 @@
+python-pyxattr (0.5.1-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Drop python3-sphinx as an alternate build-depend to python-sphinx to fix
+FTBFS (Closes: #680859)
+- The package only builds and installs html documentation for the python
+  version anyway, so python3-sphinx as a build-dep is clearly wrong
+
+ -- Scott Kitterman sc...@kitterman.com  Mon, 16 Jul 2012 13:29:41 -0400
+
 python-pyxattr (0.5.1-1) unstable; urgency=low
 
   * New upstream bug-fix release, fixing reference leaks and potential
diff -Nru python-pyxattr-0.5.1/debian/control python-pyxattr-0.5.1/debian/control
--- python-pyxattr-0.5.1/debian/control	2012-05-16 15:00:20.0 -0400
+++ python-pyxattr-0.5.1/debian/control	2012-07-16 13:29:34.0 -0400
@@ -6,7 +6,7 @@
  python (= 2.6.6-3~), python-all-dev (= 2.6.6-3~), python-all-dbg,
  python3-all, python3-all-dev, python3-all-dbg,
  libattr1-dev, python-setuptools, python3-setuptools,
- python-sphinx (= 1.0.7+dfsg) | python3-sphinx
+ python-sphinx (= 1.0.7+dfsg)
 Standards-Version: 3.9.3
 Homepage: http://pyxattr.k1024.org/
 Vcs-Browser: http://git.k1024.org/debian-pyxattr.git


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


Bug#681810: unblock: python-pylibacl/0.5.1-1.1

2012-07-16 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package python-pylibacl

Fixes RC bug #680858.  Package is currently in delay/2.

unblock python-pylibacl/0.5.1-1.1
diff -Nru python-pylibacl-0.5.1/debian/changelog python-pylibacl-0.5.1/debian/changelog
--- python-pylibacl-0.5.1/debian/changelog	2012-05-13 16:47:19.0 -0400
+++ python-pylibacl-0.5.1/debian/changelog	2012-07-16 14:34:17.0 -0400
@@ -1,3 +1,13 @@
+python-pylibacl (0.5.1-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Drop python3-sphinx as an alternate build-depend to python-sphinx to fix
+FTBFS (Closes: #680858)
+- The package only builds and installs html documentation for the python
+  version anyway, so python3-sphinx as a build-dep is clearly wrong
+
+ -- Scott Kitterman sc...@kitterman.com  Mon, 16 Jul 2012 14:34:07 -0400
+
 python-pylibacl (0.5.1-1) unstable; urgency=low
 
   * New upstream version: bugfixes for refcount leaks and possible
diff -Nru python-pylibacl-0.5.1/debian/control python-pylibacl-0.5.1/debian/control
--- python-pylibacl-0.5.1/debian/control	2012-05-13 16:47:19.0 -0400
+++ python-pylibacl-0.5.1/debian/control	2012-07-16 14:34:35.0 -0400
@@ -6,7 +6,7 @@
  python (= 2.6.6-3~), python-all-dev (= 2.6.6-3~), python-all-dbg,
  python3-all, python3-all-dev, python3-all-dbg,
  libacl1-dev, python-setuptools, python3-setuptools,
- python-sphinx (= 1.0.7+dfsg) | python3-sphinx
+ python-sphinx (= 1.0.7+dfsg)
 Standards-Version: 3.9.3
 Homepage: http://pylibacl.k1024.org/
 Vcs-Browser: http://git.k1024.org/debian-pylibacl.git


Bug#680858: NMUing

2012-07-16 Thread Scott Kitterman
Over a week with no maintainer response on an RC bug, so uploading the 
attached to delay/2.  Let me know if you'd like me to delay it further.

Scott Kdiff -Nru python-pylibacl-0.5.1/debian/changelog python-pylibacl-0.5.1/debian/changelog
--- python-pylibacl-0.5.1/debian/changelog	2012-05-13 16:47:19.0 -0400
+++ python-pylibacl-0.5.1/debian/changelog	2012-07-16 14:34:17.0 -0400
@@ -1,3 +1,13 @@
+python-pylibacl (0.5.1-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Drop python3-sphinx as an alternate build-depend to python-sphinx to fix
+FTBFS (Closes: #680858)
+- The package only builds and installs html documentation for the python
+  version anyway, so python3-sphinx as a build-dep is clearly wrong
+
+ -- Scott Kitterman sc...@kitterman.com  Mon, 16 Jul 2012 14:34:07 -0400
+
 python-pylibacl (0.5.1-1) unstable; urgency=low
 
   * New upstream version: bugfixes for refcount leaks and possible
diff -Nru python-pylibacl-0.5.1/debian/control python-pylibacl-0.5.1/debian/control
--- python-pylibacl-0.5.1/debian/control	2012-05-13 16:47:19.0 -0400
+++ python-pylibacl-0.5.1/debian/control	2012-07-16 14:34:35.0 -0400
@@ -6,7 +6,7 @@
  python (= 2.6.6-3~), python-all-dev (= 2.6.6-3~), python-all-dbg,
  python3-all, python3-all-dev, python3-all-dbg,
  libacl1-dev, python-setuptools, python3-setuptools,
- python-sphinx (= 1.0.7+dfsg) | python3-sphinx
+ python-sphinx (= 1.0.7+dfsg)
 Standards-Version: 3.9.3
 Homepage: http://pylibacl.k1024.org/
 Vcs-Browser: http://git.k1024.org/debian-pylibacl.git


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


<    1   2   3   4   5   6   7   8   9   10   >