diff --git a/debian/changelog b/debian/changelog index 5a78a0cb1..1c99e280a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,5 @@ -deluge-torrent (0.9.02-1) unstable; urgency=low +deluge-torrent (0.9.04-1) unstable; urgency=low - * RC2 release + * R42 release - -- Andrew Resch (andar) Tue, 17 Jul 2008 16:31:14 -0800 + -- Andrew Resch (andar) Mon, 28 Jul 2008 16:31:14 -0800 diff --git a/debian/control.ubuntu-gutsy b/debian/control.ubuntu-gutsy deleted file mode 100644 index cc679ffb7..000000000 --- a/debian/control.ubuntu-gutsy +++ /dev/null @@ -1,19 +0,0 @@ -Source: deluge-torrent -Section: universe/net -Priority: optional -Maintainer: Andrew Resch (andar) -Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), python-all, python-support (>= 0.5.3), libboost-dev (>= 1.33.1), libboost-thread-dev (>= 1.33.1), libboost-date-time-dev (>= 1.33.1), libboost-filesystem-dev (>= 1.33.1), libboost-serialization-dev (>= 1.33.1), libboost-program-options-dev (>= 1.33.1), libboost-regex-dev (>= 1.33.1), libboost-python-dev (>= 1.33.1), zlib1g-dev, libssl-dev, dpatch, python-setuptools -Standards-Version: 3.7.2 - -Package: deluge-torrent -Architecture: any -Depends: ${shlibs:Depends}, ${python:Depends}, python-gtk2, python-glade2, python-xdg, python-notify, notification-daemon, python-dbus, librsvg2-common, python-pyopenssl, python-setuptools -Description: A Bittorrent client written in Python/PyGTK - Deluge is a Bittorrent client, created using Python and GTK+. - . - Deluge is intended to bring a native, full-featured client to Linux GTK - desktop environments such as Gnome and XFCE. - . - It uses Rasterbar's version of libtorrent. - . - Homepage: http://www.deluge-torrent.org/ diff --git a/debian/control.ubuntu-hardy b/debian/control.ubuntu-hardy deleted file mode 100644 index cc679ffb7..000000000 --- a/debian/control.ubuntu-hardy +++ /dev/null @@ -1,19 +0,0 @@ -Source: deluge-torrent -Section: universe/net -Priority: optional -Maintainer: Andrew Resch (andar) -Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), python-all, python-support (>= 0.5.3), libboost-dev (>= 1.33.1), libboost-thread-dev (>= 1.33.1), libboost-date-time-dev (>= 1.33.1), libboost-filesystem-dev (>= 1.33.1), libboost-serialization-dev (>= 1.33.1), libboost-program-options-dev (>= 1.33.1), libboost-regex-dev (>= 1.33.1), libboost-python-dev (>= 1.33.1), zlib1g-dev, libssl-dev, dpatch, python-setuptools -Standards-Version: 3.7.2 - -Package: deluge-torrent -Architecture: any -Depends: ${shlibs:Depends}, ${python:Depends}, python-gtk2, python-glade2, python-xdg, python-notify, notification-daemon, python-dbus, librsvg2-common, python-pyopenssl, python-setuptools -Description: A Bittorrent client written in Python/PyGTK - Deluge is a Bittorrent client, created using Python and GTK+. - . - Deluge is intended to bring a native, full-featured client to Linux GTK - desktop environments such as Gnome and XFCE. - . - It uses Rasterbar's version of libtorrent. - . - Homepage: http://www.deluge-torrent.org/ diff --git a/debian/pyversions.debian-lenny b/debian/pyversions.debian-lenny deleted file mode 100644 index 95e3ba819..000000000 --- a/debian/pyversions.debian-lenny +++ /dev/null @@ -1 +0,0 @@ -2.5 diff --git a/debian/pyversions.debian-sid b/debian/pyversions.debian-sid deleted file mode 100644 index 95e3ba819..000000000 --- a/debian/pyversions.debian-sid +++ /dev/null @@ -1 +0,0 @@ -2.5 diff --git a/debian/rules.debian-lenny b/debian/rules.debian-lenny deleted file mode 100755 index 7c4baf16a..000000000 --- a/debian/rules.debian-lenny +++ /dev/null @@ -1,75 +0,0 @@ -#!/usr/bin/make -f - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -# Dpatch targets -include /usr/share/dpatch/dpatch.make - -# Available python (using debian/pyversions) and destdir -PYVERS = 2.4 -DESTDIR = $(CURDIR)/debian/deluge-torrent - -# We need to known the target arch to enable/disable amd64 hack -ARCH = $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) -ARCH64 = ia64 amd64 alpha kfreebsd-amd64 ppc64 - -CFLAGS = -Wall -g -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif -# python-libtorrent need to define AMD64 to work fine on a 64 bits system -ifneq (,$(findstring $(ARCH),$(ARCH64))) - CFLAGS += -DAMD64 -endif - -build: patch-stamp $(PYVERS:%=build-stamp%) -build-stamp%: patch-stamp - dh_testdir - CFLAGS="$(CFLAGS)" python$* setup.py build - touch $@ - -clean: unpatch - dh_testdir - dh_testroot - rm -rf build/ - find . -name \*.pyc | xargs rm -f - rm -rf build-stamp* - dh_clean - -install: build install-prereq $(PYVERS:%=install-%) install-finish -install-prereq: - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs -install-%: - python$* setup.py install --root=$(DESTDIR) --prefix=/usr --no-compile -install-finish: - # Desktop menu - rm -rf $(DESTDIR)/usr/share/applications - install -D -m644 $(CURDIR)/deluge/data/share/applications/deluge.desktop $(DESTDIR)/usr/share/applications/deluge.desktop - - -binary-indep: build install -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installmenu - dh_strip - dh_compress - dh_fixperms - dh_pysupport - dh_desktop - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/debian/rules.debian-sid b/debian/rules.debian-sid deleted file mode 100755 index 7c4baf16a..000000000 --- a/debian/rules.debian-sid +++ /dev/null @@ -1,75 +0,0 @@ -#!/usr/bin/make -f - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -# Dpatch targets -include /usr/share/dpatch/dpatch.make - -# Available python (using debian/pyversions) and destdir -PYVERS = 2.4 -DESTDIR = $(CURDIR)/debian/deluge-torrent - -# We need to known the target arch to enable/disable amd64 hack -ARCH = $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) -ARCH64 = ia64 amd64 alpha kfreebsd-amd64 ppc64 - -CFLAGS = -Wall -g -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif -# python-libtorrent need to define AMD64 to work fine on a 64 bits system -ifneq (,$(findstring $(ARCH),$(ARCH64))) - CFLAGS += -DAMD64 -endif - -build: patch-stamp $(PYVERS:%=build-stamp%) -build-stamp%: patch-stamp - dh_testdir - CFLAGS="$(CFLAGS)" python$* setup.py build - touch $@ - -clean: unpatch - dh_testdir - dh_testroot - rm -rf build/ - find . -name \*.pyc | xargs rm -f - rm -rf build-stamp* - dh_clean - -install: build install-prereq $(PYVERS:%=install-%) install-finish -install-prereq: - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs -install-%: - python$* setup.py install --root=$(DESTDIR) --prefix=/usr --no-compile -install-finish: - # Desktop menu - rm -rf $(DESTDIR)/usr/share/applications - install -D -m644 $(CURDIR)/deluge/data/share/applications/deluge.desktop $(DESTDIR)/usr/share/applications/deluge.desktop - - -binary-indep: build install -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installmenu - dh_strip - dh_compress - dh_fixperms - dh_pysupport - dh_desktop - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/debian/rules.ubuntu-gutsy b/debian/rules.ubuntu-gutsy deleted file mode 100755 index 4ec9733c7..000000000 --- a/debian/rules.ubuntu-gutsy +++ /dev/null @@ -1,75 +0,0 @@ -#!/usr/bin/make -f - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -# Dpatch targets -include /usr/share/dpatch/dpatch.make - -# Available python (using debian/pyversions) and destdir -PYVERS = 2.5 -DESTDIR = $(CURDIR)/debian/deluge-torrent - -# We need to known the target arch to enable/disable amd64 hack -ARCH = $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) -ARCH64 = ia64 amd64 alpha kfreebsd-amd64 ppc64 - -CFLAGS = -Wall -g -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif -# python-libtorrent need to define AMD64 to work fine on a 64 bits system -ifneq (,$(findstring $(ARCH),$(ARCH64))) - CFLAGS += -DAMD64 -endif - -build: patch-stamp $(PYVERS:%=build-stamp%) -build-stamp%: patch-stamp - dh_testdir - CFLAGS="$(CFLAGS)" python$* setup.py build - touch $@ - -clean: unpatch - dh_testdir - dh_testroot - rm -rf build/ - find . -name \*.pyc | xargs rm -f - rm -rf build-stamp* - dh_clean - -install: build install-prereq $(PYVERS:%=install-%) install-finish -install-prereq: - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs -install-%: - python$* setup.py install --root=$(DESTDIR) --prefix=/usr --no-compile -install-finish: - # Desktop menu - rm -rf $(DESTDIR)/usr/share/applications - install -D -m644 $(CURDIR)/deluge/data/share/applications/deluge.desktop $(DESTDIR)/usr/share/applications/deluge.desktop - - -binary-indep: build install -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installmenu - dh_strip - dh_compress - dh_fixperms - dh_pysupport - dh_desktop - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/debian/rules.ubuntu-hardy b/debian/rules.ubuntu-hardy deleted file mode 100755 index 4ec9733c7..000000000 --- a/debian/rules.ubuntu-hardy +++ /dev/null @@ -1,75 +0,0 @@ -#!/usr/bin/make -f - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -# Dpatch targets -include /usr/share/dpatch/dpatch.make - -# Available python (using debian/pyversions) and destdir -PYVERS = 2.5 -DESTDIR = $(CURDIR)/debian/deluge-torrent - -# We need to known the target arch to enable/disable amd64 hack -ARCH = $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) -ARCH64 = ia64 amd64 alpha kfreebsd-amd64 ppc64 - -CFLAGS = -Wall -g -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif -# python-libtorrent need to define AMD64 to work fine on a 64 bits system -ifneq (,$(findstring $(ARCH),$(ARCH64))) - CFLAGS += -DAMD64 -endif - -build: patch-stamp $(PYVERS:%=build-stamp%) -build-stamp%: patch-stamp - dh_testdir - CFLAGS="$(CFLAGS)" python$* setup.py build - touch $@ - -clean: unpatch - dh_testdir - dh_testroot - rm -rf build/ - find . -name \*.pyc | xargs rm -f - rm -rf build-stamp* - dh_clean - -install: build install-prereq $(PYVERS:%=install-%) install-finish -install-prereq: - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs -install-%: - python$* setup.py install --root=$(DESTDIR) --prefix=/usr --no-compile -install-finish: - # Desktop menu - rm -rf $(DESTDIR)/usr/share/applications - install -D -m644 $(CURDIR)/deluge/data/share/applications/deluge.desktop $(DESTDIR)/usr/share/applications/deluge.desktop - - -binary-indep: build install -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installmenu - dh_strip - dh_compress - dh_fixperms - dh_pysupport - dh_desktop - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install