--- inotifyx-0.2.0.orig/debian/docs +++ inotifyx-0.2.0/debian/docs @@ -0,0 +1 @@ +README --- inotifyx-0.2.0.orig/debian/compat +++ inotifyx-0.2.0/debian/compat @@ -0,0 +1 @@ +7 --- inotifyx-0.2.0.orig/debian/control +++ inotifyx-0.2.0/debian/control @@ -0,0 +1,31 @@ +Source: inotifyx +Section: python +Priority: optional +Maintainer: Ritesh Raj Sarraf +Uploaders: Debian Python Modules Team +Build-Depends: debhelper (>= 7), python-all-dev (>= 2.6.6-3~) +Standards-Version: 3.9.2 +Vcs-Svn: svn://svn.debian.org/svn/python-modules/packages/inotifyx/trunk +Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/inotifyx/trunk/?op=log +Homepage: http://www.alittletooquiet.net/software/inotifyx/ + +Package: python-inotifyx +Architecture: any +Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends} +Provides: ${python:Provides} +Description: simple Python binding to the Linux inotify + inotifyx is a Python extension providing access to the Linux + inotify file system event notification API. It is primarily + written in C but has some Python window dressing + . + inotifyx exists as an alternative to the much known pyinotify bindings + . + Reasons you might choose inotifyx over pyinotify + * inotifyx is a C extension and does not use ctypes, making it + faster and less prone to subtle breakage due to changes in the inotify API + * inotifyx is a much thinner wrapper around inotify. pyinotify is more + complicated. It does provide features that inotifyx does not, but many of + them are not needed by most applications + * The API provided by pyinotify seems to change in incompatible ways on a + fairly regular basis and with little justification. inotifyx has a simple + API that will change rarely, if ever. --- inotifyx-0.2.0.orig/debian/copyright +++ inotifyx-0.2.0/debian/copyright @@ -0,0 +1,40 @@ +This package was debianized by Ritesh Raj Sarraf on +Wed, 27 May 2009 00:13:26 +0530. + +It was downloaded from http://www.alittletooquiet.net/software/inotifyx/ + +Upstream Authors: + Forest Bond + Manuel Amador + +Copyright: + Copyright (C) 2009 Forest Bond + Copyright (C) 2005 Manuel Amador + Copyright (C) 2004 Novell, Inc. + +License: + + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + +The Debian packaging is: + + Copyright (C) 2009 Ritesh Raj Sarraf + +and is licensed under the MIT License. --- inotifyx-0.2.0.orig/debian/rules +++ inotifyx-0.2.0/debian/rules @@ -0,0 +1,67 @@ +#!/usr/bin/make -f + +PKG_NAME=inotifyx +PKG_VER=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^-]+).*,\1,p') + +PYVERS=$(shell pyversions -vr) + +-include /usr/share/python/python.mk + +get-orig-source: + uscan --force-download --rename --download-version=$(PKG_VER) --destdir=. + +build: build-arch build-indep + +build-arch: $(PYVERS:%=build-python%) + touch $@ + +build-indep: $(PYVERS:%=build-python%) + touch $@ + +build-python%: + dh_testdir + python$* setup.py build + touch $@ + +clean: $(PYVERS:%=clean-python%) + touch $@ + +clean-python%: + dh_testdir + dh_testroot + + python$* setup.py clean --all + [ ! -e html ] || rm -rf html + [ ! -f setuplib.pyc ] || rm -rf setuplib.pyc + + dh_clean + +install: $(PYVERS:%=install-python%) + touch $@ + +install-python%: build + dh_testdir + dh_testroot + dh_installdirs + + python$* setup.py install --root $(CURDIR)/debian/python-inotifyx ${py_setup_install_args} + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs NEWS + dh_python2 + dh_compress + dh_fixperms + dh_strip + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install get-orig-source --- inotifyx-0.2.0.orig/debian/README.source +++ inotifyx-0.2.0/debian/README.source @@ -0,0 +1,2 @@ +debian/rules has a get-orig-source target. +This makefile target will be able to fetch the upstream tarball. --- inotifyx-0.2.0.orig/debian/changelog +++ inotifyx-0.2.0/debian/changelog @@ -0,0 +1,82 @@ +inotifyx (0.2.0-1) unstable; urgency=low + + * New Upstream Release + * [63bfabd] add comress for changelogs + * [b48aae1] update debian/watch for launchpad hosting + * [de64451] Switch to dh_python2. + Thanks to Barry Warsaw (Closes: 633911) + * [41164bf] drop html docs + * [caee400] drop epydoc doc generation + * [c106e5e] drop python-epydoc from build-dep + * [e3ba5ee] add build-arch and build-indep targets + * [4d1b0fc] Update Standards Version to 3.9.2. No changes required + * [12befdb] drop duplicate changelog + * [c1a91fd] remove html install files and doc-base + + -- Ritesh Raj Sarraf Mon, 15 Aug 2011 19:37:12 +0530 + +inotifyx (0.1.2-1) unstable; urgency=low + + * New Upstream Release (Closes: #620329) + * Change address to my official Debian address + * Add debian/source/format to explictly specify the source format + * debian/rules: + - Drop the example as it is not shipped any more + - Update clean target + * debian/control: + - Add misc:Depends + - Update Standards Version to 3.9.1 + + -- Ritesh Raj Sarraf Mon, 11 Apr 2011 18:31:00 +0530 + +inotifyx (0.1.1-1) unstable; urgency=low + + * New Upstream Release + * Have a versioned build dependency on python-(all)-dev since we are using + python helper scripts during build. (Closes: #551684) + * Build Depend on python-all-dev to support different python versions + + -- Ritesh Raj Sarraf Wed, 28 Oct 2009 14:29:10 +0530 + +inotifyx (0.1.0-4) unstable; urgency=low + + * Don't manipulate site-packages/ directly, this fails going forward with + Python 2.6. Thanks to Luca Falavigna for the patch + (Closes: #547879) + * Add doc-base as Recommends since we are now registering the docs with + doc-base + + -- Ritesh Raj Sarraf Tue, 29 Sep 2009 14:56:14 +0530 + +inotifyx (0.1.0-3) unstable; urgency=low + + * Update Standards-Version to 3.8.3 (No changes required) + * debian/rules + - Update get-orig-source target to use uscan + - This is an architecture dependent package. Thus binary-arch is the + correct target to be used. + (Closes: #539151) + - Clean the html doc generated from the sources in clean target + - Really ship the generated doc + + -- Ritesh Raj Sarraf Thu, 03 Sep 2009 10:43:10 +0530 + +inotifyx (0.1.0-2) unstable; urgency=low + + * debian/rules + - Separate the build and install target. Earlier we were directly + building and installing in the install target which led to build + failure on the s390 arch which called the build target. + (Closes: #539151) + * debian/control + - Switch Version Control from git to subversion to better align with + the Python packaging team + * Update Standards-Version to 3.8.2 (No changes required) + + -- Ritesh Raj Sarraf Thu, 30 Jul 2009 14:08:02 +0530 + +inotifyx (0.1.0-1) unstable; urgency=low + + * Initial release (Closes: #527205) + + -- Ritesh Raj Sarraf Wed, 27 May 2009 00:14:00 +0530 --- inotifyx-0.2.0.orig/debian/watch +++ inotifyx-0.2.0/debian/watch @@ -0,0 +1,2 @@ +version=3 +https://launchpad.net/inotifyx/+download http://launchpad.net/inotifyx/.*/inotifyx-(.+.).tar.gz --- inotifyx-0.2.0.orig/debian/source/format +++ inotifyx-0.2.0/debian/source/format @@ -0,0 +1 @@ +1.0