From: Sebastian Harl Date: Sat, 21 Nov 2009 18:14:29 +0000 (+0100) Subject: Merged branch 'experimental'. X-Git-Tag: debian/1.4.2-1~12 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2d7eb66e602a5c53dc2fafd70aa6ec4d7b447be9;hp=816d3c844963edd0b166b7db98b0c810417af848;p=pkg-rrdtool.git Merged branch 'experimental'. Conflicts: debian/changelog --- diff --git a/debian/README.Debian b/debian/README.Debian index 967dbfd..e35012c 100644 --- a/debian/README.Debian +++ b/debian/README.Debian @@ -10,3 +10,6 @@ text and POD documentation which is usually installed by the upstream source package has been left out of the Debian packages as it does not provide any further benefits over the other documentation. +More examples and useful applications can be found at the upstream site at +. + diff --git a/debian/changelog b/debian/changelog index 0b199cc..b89635c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +rrdtool (1.3.8-2) UNRELEASED; urgency=low + + [ Bernd Zeimetz ] + * debian/rules: + - Prepare to build with Python 2.6. + + [ Sebastian Harl ] + * debian/README.Debian: + - Added a note about as + requested in #323969 and lost in 1.2.26-1. + + -- Sebastian Harl Thu, 24 Sep 2009 11:50:44 +0200 + rrdtool (1.4~rc2+20091004-1) experimental; urgency=low [ Sebastian Harl ] diff --git a/debian/rules b/debian/rules index 6430e06..e070125 100755 --- a/debian/rules +++ b/debian/rules @@ -7,6 +7,17 @@ #we use quilt include /usr/share/quilt/quilt.make +#needed to build with Python 2.6 +-include /usr/share/python/python.mk +ifeq (,$(py_sitename)) + py_sitename = site-packages + py_libdir = /usr/lib/python$(subst python,,$(1))/site-packages + py_sitename_sh = $(py_sitename) + py_libdir_sh = $(py_libdir) + py_setup_install_args = +endif + + #Ruby versions to build for RUBY_VERS := 1.8 1.9 @@ -170,8 +181,11 @@ install-python%: install-common-stamp dh_testroot set -e ;\ cd bindings/python ;\ - python$* setup.py install --root=$(CURDIR)/debian/python-rrdtool ;\ - python$*-dbg setup.py install --root=$(CURDIR)/debian/rrdtool-dbg + python$* setup.py install --root=$(CURDIR)/debian/python-rrdtool \ + $(py_setup_install_args) ;\ + python$*-dbg setup.py install --root=$(CURDIR)/debian/rrdtool-dbg \ + $(py_setup_install_args) + find $(CURDIR)/debian/rrdtool-dbg -type f -name '*.egg-info' -print0 |\ xargs -0r rm -f