* Adeodato Simó [Mon, 24 Jul 2006 13:24:05 +0200]:
> I'd be happy to prepare an upload, and become a co-maintainer if you'd
> like. I'm very glad to have found bzr, so I guess I can give something
> back by helping take care of it in Debian. :)
Something like the attached diff would be ok?
Cheers,
--
Adeodato Simó dato at net.com.org.es
Debian Developer adeodato at debian.org
— As the ship lay in Boston Harbor, a party the colonists dressed as red
Indians boarded the vessel, behaved very rudely, and threw all the tea
overboard, making the tea unsuitable for drinking. Even for Americans.
-- George W. Banks in “Mary Poppins”
diff -u -r bzr-0.8.2.orig/debian/changelog bzr-0.8.2/debian/changelog
--- bzr-0.8.2.orig/debian/changelog 2006-07-24 14:16:16.000000000 +0200
+++ bzr-0.8.2/debian/changelog 2006-07-24 14:44:20.000000000 +0200
@@ -1,3 +1,20 @@
+bzr (0.8.2-4) unstable; urgency=low
+
+ * Update debian/control to refer to python-* instead of python2.4-* for
+ docutils, paramiko, and celementtree. (Closes: #376559, #363561)
+
+ * Promote paramiko from Suggests to Recommends. (Closes: #376837)
+
+ * Update to new Python policy using pycentral.
+
+ * Pass --no-plugins to `bzr selftest` in debian/rules.
+
+ * Update Standards-Version to 3.7.2 (no changes needed).
+
+ * Add myself as an uploader.
+
+ -- Adeodato Simó <[EMAIL PROTECTED]> Mon, 24 Jul 2006 13:49:24 +0200
+
bzr (0.8.2-3) unstable; urgency=low
* Keep unit tests around for now, since bzr's sftp transport depend upon it
diff -u -r bzr-0.8.2.orig/debian/control bzr-0.8.2/debian/control
--- bzr-0.8.2.orig/debian/control 2006-07-24 14:16:16.000000000 +0200
+++ bzr-0.8.2/debian/control 2006-07-24 14:47:40.000000000 +0200
@@ -2,16 +2,19 @@
Section: devel
Priority: optional
Maintainer: Rob Weir <[EMAIL PROTECTED]>
-Uploaders: Jeff Bailey <[EMAIL PROTECTED]>, Andres Salomon <[EMAIL
PROTECTED]>, Lars Wirzenius <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4.1.67), cdbs
-Build-Depends-Indep: python2.4-docutils, python2.4, python2.4-dev,
python2.4-celementtree
-Standards-Version: 3.6.2
+Uploaders: Jeff Bailey <[EMAIL PROTECTED]>, Andres Salomon <[EMAIL
PROTECTED]>, Lars Wirzenius <[EMAIL PROTECTED]>, Adeodato Simó <[EMAIL
PROTECTED]>
+Build-Depends: debhelper (>= 5.0.37.2), cdbs (>= 0.4.43)
+Build-Depends-Indep: python-all-dev (>= 2.3.5-11), python-central (>= 0.4.17),
python-docutils (>= 0.4-2), python-celementtree (>= 1.0.5-7)
+Standards-Version: 3.7.2
+XS-Python-Version: >= 2.4
Package: bzr
Architecture: all
-Depends: python2.4-celementtree, python2.4
-Suggests: libxml2-utils, python2.4-paramiko
+Depends: ${python:Depends}, python-celementtree (>= 1.0.5-7)
+Recommends: python-paramiko
+Suggests: libxml2-utils
Conflicts: bzr-doc
+XB-Python-Version: ${python:Versions}
Description: bazaar-ng, the next-generation distributed version control system
Open source distributed version control system that is powerful, friendly,
and scalable.
Only in bzr-0.8.2/debian: pycompat
diff -u -r bzr-0.8.2.orig/debian/rules bzr-0.8.2/debian/rules
--- bzr-0.8.2.orig/debian/rules 2006-07-24 14:16:16.000000000 +0200
+++ bzr-0.8.2/debian/rules 2006-07-24 14:42:00.000000000 +0200
@@ -1,9 +1,10 @@
#!/usr/bin/make -f
+DEB_PYTHON_SYSTEM = pycentral
+
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk
-DEB_PYTHON_COMPILE_VERSION := 2.4
DEB_PYTHON_INSTALL_ARGS_ALL += --install-data=/usr/share
clean::
@@ -12,7 +13,7 @@
rm -f bzr.1
common-post-build-indep::
- ./bzr selftest
+ ./bzr selftest --no-plugins
build/bzr::
for f in doc/*.txt; do h=$$(echo $$f | sed 's/txt$$/html/'); rst2html
$$f > $$h; done