[xml/sgml-commit] r1566 - in /packages/docbook-xml/trunk/debian: changelog control rules

dleidert-guest at users.alioth.debian.org dleidert-guest at users.alioth.debian.org
Tue Sep 8 12:53:11 UTC 2009


Author: dleidert-guest
Date: Tue Sep  8 12:53:10 2009
New Revision: 1566

URL: http://svn.debian.org/wsvn/debian-xml-sgml/?sc=1&rev=1566
Log:
* debian/control (Standards-Version): Bumped to 3.8.3.
  (Homepage): Changed to docbook.org (closes: #545145).
  (Description): Fixed typo.
* debian/rules (get-orig-source): Fixed mktemp invocation (closes: #545147).

Modified:
    packages/docbook-xml/trunk/debian/changelog
    packages/docbook-xml/trunk/debian/control
    packages/docbook-xml/trunk/debian/rules

Modified: packages/docbook-xml/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/docbook-xml/trunk/debian/changelog?rev=1566&op=diff
==============================================================================
--- packages/docbook-xml/trunk/debian/changelog (original)
+++ packages/docbook-xml/trunk/debian/changelog Tue Sep  8 12:53:10 2009
@@ -1,6 +1,10 @@
 docbook-xml (4.5-7) UNRELEASED; urgency=low
 
   * NOT RELEASED YET
+  * debian/control (Standards-Version): Bumped to 3.8.3.
+    (Homepage): Changed to docbook.org (closes: #545145).
+    (Description): Fixed typo.
+  * debian/rules (get-orig-source): Fixed mktemp invocation (closes: #545147).
 
  -- Daniel Leidert (dale) <daniel.leidert at wgdd.de>  Thu, 20 Nov 2008 13:36:00 +0100
 

Modified: packages/docbook-xml/trunk/debian/control
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/docbook-xml/trunk/debian/control?rev=1566&op=diff
==============================================================================
--- packages/docbook-xml/trunk/debian/control (original)
+++ packages/docbook-xml/trunk/debian/control Tue Sep  8 12:53:10 2009
@@ -2,11 +2,12 @@
 Section: text
 Priority: optional
 Maintainer: Debian XML/SGML Group <debian-xml-sgml-pkgs at lists.alioth.debian.org>
-Uploaders: Adam Di Carlo <aph at debian.org>, Daniel Leidert (dale) <daniel.leidert at wgdd.de>
+Uploaders: Adam Di Carlo <aph at debian.org>,
+ Daniel Leidert (dale) <daniel.leidert at wgdd.de>
 Build-Depends: debhelper (>= 5), dpatch
 Build-Depends-Indep: xml-core (>= 0.6)
-Standards-Version: 3.7.3
-Homepage: http://www.oasis-open.org/docbook/xml/
+Standards-Version: 3.8.3
+Homepage: http://docbook.org/schemas/4x.html
 Vcs-Browser: http://svn.debian.org/wsvn/debian-xml-sgml/packages/docbook-xml/trunk/
 Vcs-Svn: svn://svn.debian.org/svn/debian-xml-sgml/packages/docbook-xml/trunk/
 DM-Upload-Allowed: yes
@@ -17,7 +18,7 @@
 Depends: sgml-data (>= 2.0.2), ${misc:Depends}
 Suggests: docbook, docbook-dsssl, docbook-xsl, docbook-defguide
 Provides: docbk-xml
-Description: standard XML documentation system, for software and systems
+Description: standard XML documentation system for software and systems
  DocBook is an XML document type definition (DTD).  That is, it
  contains the "DocBook" document structure.  This is used by authors
  or editors writing documents in the DocBook XML format.  DocBook was
@@ -34,5 +35,5 @@
  docbook-dsssl) DocBook documents.
  .
  This package ships with the latest DocBook 4.5 XML DTD, as well as a
- select set of legacy DTDs for use with older documents, including 4.0,
- 4.1.2, 4.2, 4.3 and 4.4.
+ selected set of legacy DTDs for use with older documents, including
+ 4.0, 4.1.2, 4.2, 4.3 and 4.4.

Modified: packages/docbook-xml/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/docbook-xml/trunk/debian/rules?rev=1566&op=diff
==============================================================================
--- packages/docbook-xml/trunk/debian/rules (original)
+++ packages/docbook-xml/trunk/debian/rules Tue Sep  8 12:53:10 2009
@@ -103,6 +103,7 @@
 	dh_clean -k
 	dh_installdirs
 
+binary-arch: build
 binary-indep: build
 	dh_testdir
 	dh_testroot
@@ -121,33 +122,12 @@
 	dh_md5sums
 	dh_builddeb
 
-binary-arch: build
-
 binary: binary-indep binary-arch
 
-.PHONY: build clean binary binary-arch binary-indep
-
-#	 note that throughout we have to be careful to try to retain
-#	 the expected system entity names (dir and file names) as 
-#	 shipped, in the hope to accomodate XML tools that don't
-#	 understand SGML Open Catalogs
-
-	:> debian/sgmlcatalogs
-	:> debian/links
-	chmod a+x ./debian/install-dtds
-	./debian/install-dtds $(prefix) $(dtddir)
-
-.PHONY: binary binary-arch binary-indep clean test
-
-# This following code is used to create the .orig.tar.gz tarball.
-# Use it to prepare it for a new release.
-
 version=$(shell dpkg-parsechangelog | sed -n -e 's/^Version: \(.*\)-[^-]*/\1/p')
-
-.PHONY: get-orig-source
 get-orig-source:
 	set -ex ; \
-	TMPDIR=`mktemp -d docbook-xml-$(version).orig` ; \
+	TMPDIR=`mktemp -d docbook-xml-$(version).orig.XXXXXX` ; \
 	touch "$$TMPDIR"/ChangeLog.upstream ; \
 	for db in 4.5 4.4 4.3 4.2 ; do \
 		dbxver=`echo $${db} | sed -e 's/\.//g'` ; \
@@ -175,9 +155,11 @@
 		fi ; \
 	done ; \
 	find "$$TMPDIR" -type f ! -perm 644 -exec chmod 644 "{}" ";" ; \
-	GZIP=-9 tar -czf $(CURDIR)/docbook-xml_${version}.orig.tar.gz "$$TMPDIR" ; \
-	rm -rf "$$TMPDIR"
+	mv "$$TMPDIR" docbook-xml-$(version).orig ; \
+	GZIP=-9 tar --remove-files -czf $(CURDIR)/docbook-xml_${version}.orig.tar.gz \
+	    docbook-xml-$(version).orig
 
+.PHONY: binary binary-arch binary-indep build clean get-orig-source
 #Local variables:
 #mode: makefile
 #End:




More information about the debian-xml-sgml-commit mailing list