Hi,
The attached file is the diff for my arch-buildpackage 0.1-5 QA upload. The
associated changelog entry is:
arch-buildpackage (0.1-5) unstable; urgency=medium
* QA upload.
* Remove dependency on bazaar (Closes: #486732)
* Bump Standards-Version to 3.8.0.
* Migrate to debhelper 5.0.
* Tidy debian/rules.
The diff does not contain pre-existing and ugly changes to the '{arch}'
directories.
Regards,
--
Chris Lamb, UK
chris@...
GPG: 0x634F9A20
diff -Nru arch-buildpackage-0.1/debian/changelog arch-buildpackage-0.1/debian/changelog
--- arch-buildpackage-0.1/debian/changelog 2008-07-03 02:14:52.000000000 +0100
+++ arch-buildpackage-0.1/debian/changelog 2008-07-03 02:14:53.000000000 +0100
@@ -1,3 +1,13 @@
+arch-buildpackage (0.1-5) unstable; urgency=medium
+
+ * QA upload.
+ * Remove dependency on bazaar (Closes: #486732)
+ * Bump Standards-Version to 3.8.0.
+ * Migrate to debhelper 5.0.
+ * Tidy debian/rules.
+
+ -- Chris Lamb <
chris@...> Thu, 03 Jul 2008 02:05:30 +0100
+
arch-buildpackage (0.1-4) unstable; urgency=low
* QA upload.
diff -Nru arch-buildpackage-0.1/debian/compat arch-buildpackage-0.1/debian/compat
--- arch-buildpackage-0.1/debian/compat 2008-07-03 02:14:52.000000000 +0100
+++ arch-buildpackage-0.1/debian/compat 2008-07-03 02:14:53.000000000 +0100
@@ -1 +1 @@
-4
+5
diff -Nru arch-buildpackage-0.1/debian/control arch-buildpackage-0.1/debian/control
--- arch-buildpackage-0.1/debian/control 2008-07-03 02:14:52.000000000 +0100
+++ arch-buildpackage-0.1/debian/control 2008-07-03 02:14:53.000000000 +0100
@@ -1,13 +1,13 @@
Source: arch-buildpackage
Section: devel
Priority: optional
-Build-Depends: debhelper (>= 4.0.4)
+Build-Depends: debhelper (>= 5)
Maintainer: Debian QA Group <
packages@...>
-Standards-Version: 3.6.1
+Standards-Version: 3.8.0
Package: arch-buildpackage
Architecture: all
-Depends: tla | bazaar, perl (>= 5.8.0), libconfig-general-perl
+Depends: tla, perl (>= 5.8.0), libconfig-general-perl
Description: tools for maintaining Debian packages using arch
arch-buildpackage is a set of tools to simplify maintaining Debian
packages with arch. It is oriented around configurations, in order to
diff -Nru arch-buildpackage-0.1/debian/rules arch-buildpackage-0.1/debian/rules
--- arch-buildpackage-0.1/debian/rules 2008-07-03 02:14:52.000000000 +0100
+++ arch-buildpackage-0.1/debian/rules 2008-07-03 02:14:53.000000000 +0100
@@ -1,36 +1,25 @@
#!/usr/bin/make -f
-build: debian/build-stamp
-debian/build-stamp:
- dh_testdir
-
- touch debian/build-stamp
+build:
clean:
dh_testdir
dh_testroot
- rm -f debian/build-stamp
-
dh_clean
-install: build
+install:
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
-
cp arch-buildpackage arch-recordpackage arch-builddaily debian/arch-buildpackage/usr/bin
-binary-indep: build install
-
-binary-arch: build install
+binary-indep: install
dh_testdir
dh_testroot
-
dh_installdocs README
dh_installchangelogs ChangeLog
dh_link
- dh_strip
dh_compress
dh_fixperms
dh_installdeb
@@ -38,5 +27,7 @@
dh_md5sums
dh_builddeb
-binary: binary-indep binary-arch
+binary-arch:
+
+binary: binary-indep
.PHONY: build clean binary-indep binary-arch binary install