libxml2dom

Changeset

110:9ef184c9c6a0
2005-08-15 paulb raw files shortlog changelog graph [project @ 2005-08-15 18:29:59 by paulb] Added Debian package files.
packages/debian/python2.4-libxml2dom/debian/changelog (file) packages/debian/python2.4-libxml2dom/debian/control (file) packages/debian/python2.4-libxml2dom/debian/copyright (file) packages/debian/python2.4-libxml2dom/debian/rules (file)
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/packages/debian/python2.4-libxml2dom/debian/changelog	Mon Aug 15 18:29:59 2005 +0000
     1.3 @@ -0,0 +1,5 @@
     1.4 +libxml2dom (0.2.1-1) unstable; urgency=low
     1.5 +
     1.6 +  * New upstream release.
     1.7 +
     1.8 + -- Paul Boddie <paul@boddie.org.uk>  Mon, 15 Aug 2005 19:25:28 +0200
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/packages/debian/python2.4-libxml2dom/debian/control	Mon Aug 15 18:29:59 2005 +0000
     2.3 @@ -0,0 +1,18 @@
     2.4 +Source: libxml2dom
     2.5 +Priority: optional
     2.6 +Maintainer: Paul Boddie <paul@boddie.org.uk>
     2.7 +Build-Depends: debhelper (>> 3.0.0)
     2.8 +Standards-Version: 3.5.8
     2.9 +Section: python
    2.10 +
    2.11 +Package: python2.4-libxml2dom
    2.12 +Section: python
    2.13 +Architecture: all
    2.14 +Depends: python2.4-libxml2 (>= 2.6.17), python2.4
    2.15 +Description: PyXML-style API for the libxml2 Python bindings
    2.16 + The libxml2dom package provides a traditional DOM wrapper around the Python
    2.17 + bindings for libxml2. In contrast to the libxml2 bindings, libxml2dom provides
    2.18 + an API reminiscent of minidom, pxdom and other Python-based and Python-related
    2.19 + XML toolkits.
    2.20 + .
    2.21 + This package is built for Python 2.4.x.
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/packages/debian/python2.4-libxml2dom/debian/copyright	Mon Aug 15 18:29:59 2005 +0000
     3.3 @@ -0,0 +1,37 @@
     3.4 +Package creator:
     3.5 +
     3.6 +  Paul Boddie <paul@boddie.org.uk>
     3.7 +
     3.8 +The origin of the package is:
     3.9 +
    3.10 +  http://www.boddie.org.uk/python/libxml2dom.html
    3.11 +
    3.12 +Package author:
    3.13 +
    3.14 +  Paul Boddie <paul@boddie.org.uk>
    3.15 +
    3.16 +Copyright:
    3.17 +
    3.18 + Copyright (C) 2003, 2004, 2005 Paul Boddie <paul@boddie.org.uk>.
    3.19 + All Rights Reserved.
    3.20 +
    3.21 +Permission is hereby granted, free of charge, to any person obtaining a copy
    3.22 +of this software and associated documentation files (the "Software"), to deal
    3.23 +in the Software without restriction, including without limitation the rights
    3.24 +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    3.25 +copies of the Software, and to permit persons to whom the Software is
    3.26 +furnished to do so, subject to the following conditions:
    3.27 +
    3.28 +The above copyright notice and this permission notice shall be included in
    3.29 +all copies or substantial portions of the Software.
    3.30 +
    3.31 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    3.32 +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    3.33 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL PAUL
    3.34 +BODDIE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
    3.35 +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
    3.36 +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    3.37 +
    3.38 +Except as contained in this notice, the name of Paul Boddie shall not be used
    3.39 +in advertising or otherwise to promote the sale, use or other dealings in
    3.40 +this Software without prior written authorization from him.
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/packages/debian/python2.4-libxml2dom/debian/rules	Mon Aug 15 18:29:59 2005 +0000
     4.3 @@ -0,0 +1,49 @@
     4.4 +#!/usr/bin/make -f
     4.5 +# Sample debian/rules that uses debhelper.
     4.6 +# GNU copyright 1997 to 1999 by Joey Hess.
     4.7 +
     4.8 +# Uncomment this to turn on verbose mode.
     4.9 +#export DH_VERBOSE=1
    4.10 +
    4.11 +# This is the debhelper compatibility version to use.
    4.12 +export DH_COMPAT=4
    4.13 +
    4.14 +
    4.15 +
    4.16 +build: build-stamp
    4.17 +	/usr/bin/python2.4 setup.py build
    4.18 +build-stamp: 
    4.19 +	touch build-stamp
    4.20 +
    4.21 +configure:
    4.22 +	# Do nothing
    4.23 +
    4.24 +clean:
    4.25 +	dh_testdir
    4.26 +	dh_testroot
    4.27 +	rm -f build-stamp
    4.28 +
    4.29 +	-rm -rf build
    4.30 +
    4.31 +	dh_clean
    4.32 +
    4.33 +install: build
    4.34 +	dh_testdir
    4.35 +	dh_testroot
    4.36 +	dh_clean -k
    4.37 +	/usr/bin/python2.4 setup.py install --no-compile --prefix=$(CURDIR)/debian/python2.4-libxml2dom/usr
    4.38 +
    4.39 +# Build architecture-independent files here.
    4.40 +binary-indep: install
    4.41 +	dh_testdir
    4.42 +	dh_testroot
    4.43 +
    4.44 +	dh_installdocs
    4.45 +	dh_installdeb
    4.46 +	dh_gencontrol
    4.47 +	dh_md5sums
    4.48 +	dh_builddeb
    4.49 +# We have nothing to do by default.
    4.50 +
    4.51 +binary: binary-indep 
    4.52 +.PHONY: build clean binary-indep binary install