[Python-modules-commits] r16263 - in packages/pyinotify/trunk/debian (6 files)
dottedmag at users.alioth.debian.org
dottedmag at users.alioth.debian.org
Tue Mar 29 07:36:28 UTC 2011
Date: Tuesday, March 29, 2011 @ 07:36:12
Author: dottedmag
Revision: 16263
Update package to 0.9.1-1
Modified:
packages/pyinotify/trunk/debian/changelog
packages/pyinotify/trunk/debian/control
packages/pyinotify/trunk/debian/python-pyinotify-doc.docs
packages/pyinotify/trunk/debian/rules
packages/pyinotify/trunk/debian/source/format
packages/pyinotify/trunk/debian/watch
Modified: packages/pyinotify/trunk/debian/changelog
===================================================================
--- packages/pyinotify/trunk/debian/changelog 2011-03-28 19:27:04 UTC (rev 16262)
+++ packages/pyinotify/trunk/debian/changelog 2011-03-29 07:36:12 UTC (rev 16263)
@@ -1,3 +1,19 @@
+pyinotify (0.9.1-1) unstable; urgency=low
+
+ * New upstream release.
+ - debian/control: Update list of documentation installed.
+ * debian/control: Update my e-mail address.
+ * Upstream moved to another site:
+ - debian/control: Update homepage.
+ - debian/watch: Update download location.
+ * debian/source/format: Update source format to 3.0 (quilt).
+ * debian/control, debian/rules: Use dh(1).
+ * debian/control: Update Standards-Version to 3.9.1, no changes required.
+ * debian/control: Drop conflict with python2.[34]-pyinotify which are no
+ longer in oldstable.
+
+ -- Mikhail Gusarov <dottedmag at debian.org> Tue, 29 Mar 2011 08:57:40 +0200
+
pyinotify (0.8.9-1) unstable; urgency=low
* New upstream release
Modified: packages/pyinotify/trunk/debian/control
===================================================================
--- packages/pyinotify/trunk/debian/control 2011-03-28 19:27:04 UTC (rev 16262)
+++ packages/pyinotify/trunk/debian/control 2011-03-29 07:36:12 UTC (rev 16263)
@@ -1,22 +1,19 @@
Source: pyinotify
Section: python
Priority: optional
-Maintainer: Mikhail Gusarov <dottedmag at dottedmag.net>
+Maintainer: Mikhail Gusarov <dottedmag at debian.org>
Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 7), python
-Build-Depends-Indep: python-epydoc, python-support (>= 0.3)
-Standards-Version: 3.8.3
-XS-Python-Version: >=2.4
-Homepage: http://trac.dbzteam.org/pyinotify
+Build-Depends: debhelper (>= 7.0.50~), python
+Build-Depends-Indep: python-epydoc, python-support (>= 0.90)
+Standards-Version: 3.9.1
+Homepage: https://github.com/seb-m/pyinotify
Vcs-Svn: svn://svn.debian.org/python-modules/packages/pyinotify/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/pyinotify/trunk/
Package: python-pyinotify
Architecture: all
-Depends: ${python:Depends}
+Depends: ${python:Depends}, ${misc:Depends}
Provides: ${python:Provides}
-Replaces: python2.3-pyinotify (<< 0.5.2-1.1), python2.4-pyinotify (<< 0.5.2-1.1)
-Conflicts: python2.3-pyinotify (<< 0.5.2-1.1), python2.4-pyinotify (<< 0.5.2-1.1)
Suggests: python-pyinotify-doc
Breaks: deejayd (<< 0.8), listen (<< 0.6), pytagsfs (<< 0.9.0-2), debomatic (<< 0.6)
Description: simple Linux inotify Python bindings
@@ -28,6 +25,7 @@
Package: python-pyinotify-doc
Architecture: all
Section: doc
+Depends: ${misc:Depends}
Recommends: python-pyinotify
Description: simple Linux inotify Python bindings -- documentation
pyinotify is a simple wrapper for the Linux inotify mechanism.
Modified: packages/pyinotify/trunk/debian/python-pyinotify-doc.docs
===================================================================
--- packages/pyinotify/trunk/debian/python-pyinotify-doc.docs 2011-03-28 19:27:04 UTC (rev 16262)
+++ packages/pyinotify/trunk/debian/python-pyinotify-doc.docs 2011-03-29 07:36:12 UTC (rev 16263)
@@ -1,5 +1,4 @@
ACKS
html
NEWS_old
-README
-TODO
+README.md
Modified: packages/pyinotify/trunk/debian/rules
===================================================================
--- packages/pyinotify/trunk/debian/rules 2011-03-28 19:27:04 UTC (rev 16262)
+++ packages/pyinotify/trunk/debian/rules 2011-03-29 07:36:12 UTC (rev 16263)
@@ -1,47 +1,16 @@
#!/usr/bin/make -f
-# Based on sample debian/rules that uses debhelper.
-# GNU copyright 1997 to 1999 by Joey Hess.
+%:
+ dh $@
-clean:
- dh_testdir
- dh_testroot
+override_dh_auto_clean:
+ dh_auto_clean -- --all
- python setup.py clean --all
-
rm -rf html
[ ! -e docstrings.orig ] || mv docstrings.orig docstrings
- dh_clean
+override_dh_auto_install:
+ dh_auto_install --destdir=$(CURDIR)/debian/python-pyinotify -- --install-layout=deb
-build:
-
-install: build
- dh_testdir
- dh_testroot
- dh_prep
- dh_installdirs
-
[ ! -e docstrings ] || mv docstrings docstrings.orig
epydoc python2/pyinotify.py
-
- python setup.py install --root $(CURDIR)/debian/python-pyinotify
-
-binary-indep: build install
- dh_testdir -i
- dh_testroot -i
- dh_installdocs -i
- dh_installexamples -i
- dh_installchangelogs -i
- dh_pysupport -i
- dh_compress -i -Xexamples
- dh_fixperms -i
- dh_installdeb -i
- dh_gencontrol -i
- dh_md5sums -i
- dh_builddeb -i
-
-binary-arch:
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
Modified: packages/pyinotify/trunk/debian/source/format
===================================================================
--- packages/pyinotify/trunk/debian/source/format 2011-03-28 19:27:04 UTC (rev 16262)
+++ packages/pyinotify/trunk/debian/source/format 2011-03-29 07:36:12 UTC (rev 16263)
@@ -1 +1,2 @@
-1.0
+3.0 (quilt)
+
Modified: packages/pyinotify/trunk/debian/watch
===================================================================
--- packages/pyinotify/trunk/debian/watch 2011-03-28 19:27:04 UTC (rev 16262)
+++ packages/pyinotify/trunk/debian/watch 2011-03-29 07:36:12 UTC (rev 16263)
@@ -1,2 +1,2 @@
version=3
-http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-(.*)\.tar\.gz
+http://githubredir.debian.net/github/seb-m/pyinotify/ (.*).tar.gz
More information about the Python-modules-commits
mailing list