[Python-modules-commits] r2252 - in /packages/pyinotify/trunk/debian: changelog control patches/ patches/m68k-syscalls.patch patches/series rules

dottedmag-guest at users.alioth.debian.org dottedmag-guest at users.alioth.debian.org
Fri May 4 17:21:36 UTC 2007


Author: dottedmag-guest
Date: Fri May  4 17:21:36 2007
New Revision: 2252

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=2252
Log:
- quilt for managing patches.
- m68k patch added.

Added:
    packages/pyinotify/trunk/debian/patches/
    packages/pyinotify/trunk/debian/patches/m68k-syscalls.patch
    packages/pyinotify/trunk/debian/patches/series
Modified:
    packages/pyinotify/trunk/debian/changelog
    packages/pyinotify/trunk/debian/control
    packages/pyinotify/trunk/debian/rules

Modified: packages/pyinotify/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/pyinotify/trunk/debian/changelog?rev=2252&op=diff
==============================================================================
--- packages/pyinotify/trunk/debian/changelog (original)
+++ packages/pyinotify/trunk/debian/changelog Fri May  4 17:21:36 2007
@@ -1,10 +1,11 @@
 pyinotify (0.7.0-1) unstable; urgency=low
 
-  * New maintainer. Thanks, Hans, for your work!
-  
+  * New maintainer. Thanks for your work, Hans!
   * Acknowledging NMU. Thanks, Pierre! (Closes: #373497)
   
   * New upstream release. (Closes: #370565, #414740)
+  * Added syscall numbers for m68k. (Closes: #394587)
+
   * debhelper compatibility level 5 (no changes required).
   * -doc package moved to 'doc' section.
 

Modified: packages/pyinotify/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/pyinotify/trunk/debian/control?rev=2252&op=diff
==============================================================================
--- packages/pyinotify/trunk/debian/control (original)
+++ packages/pyinotify/trunk/debian/control Fri May  4 17:21:36 2007
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Mikhail Gusarov <dottedmag at dottedmag.net>
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), python-support (>= 0.3)
+Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), python-support (>= 0.3), quilt (>= 0.40)
 Standards-Version: 3.7.2
 
 # Notes on the Architecture: field for the binary packages:
@@ -26,7 +26,7 @@
 #       of "linux-".
 
 Package: python-pyinotify
-Architecture: alpha amd64 arm i386 ia64 powerpc ppc64 s390 sh sparc sparc64
+Architecture: alpha amd64 arm i386 ia64 m68k powerpc ppc64 s390 sh sparc sparc64
 Depends: ${python:Depends}, ${shlibs:Depends}
 Provides: ${python:Provides}
 Replaces: python2.3-pyinotify (<< 0.5.2-1.1), python2.4-pyinotify (<< 0.5.2-1.1)

Added: packages/pyinotify/trunk/debian/patches/m68k-syscalls.patch
URL: http://svn.debian.org/wsvn/python-modules/packages/pyinotify/trunk/debian/patches/m68k-syscalls.patch?rev=2252&op=file
==============================================================================
--- packages/pyinotify/trunk/debian/patches/m68k-syscalls.patch (added)
+++ packages/pyinotify/trunk/debian/patches/m68k-syscalls.patch Fri May  4 17:21:36 2007
@@ -1,0 +1,15 @@
+Index: pyinotify/src/pyinotify/inotify_syscalls.h
+===================================================================
+--- pyinotify.orig/src/pyinotify/inotify_syscalls.h	2007-05-04 23:51:03.000000000 +0700
++++ pyinotify/src/pyinotify/inotify_syscalls.h	2007-05-04 23:51:06.000000000 +0700
+@@ -72,6 +72,10 @@
+ # define __NR_inotify_init		(__NR_Linux + 269)
+ # define __NR_inotify_add_watch		(__NR_Linux + 270)
+ # define __NR_inotify_rm_watch		(__NR_Linux + 271)
++#elif defined (__mc68000__)
++# define __NR_inotify_init 284
++# define __NR_inotify_add_watch 285
++# define __NR_inotify_rm_watch 286
+ #else
+ # error "Unsupported architecture!"
+ #endif

Added: packages/pyinotify/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/python-modules/packages/pyinotify/trunk/debian/patches/series?rev=2252&op=file
==============================================================================
--- packages/pyinotify/trunk/debian/patches/series (added)
+++ packages/pyinotify/trunk/debian/patches/series Fri May  4 17:21:36 2007
@@ -1,0 +1,1 @@
+m68k-syscalls.patch

Modified: packages/pyinotify/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pyinotify/trunk/debian/rules?rev=2252&op=diff
==============================================================================
--- packages/pyinotify/trunk/debian/rules (original)
+++ packages/pyinotify/trunk/debian/rules Fri May  4 17:21:36 2007
@@ -2,13 +2,15 @@
 
 # Based on sample debian/rules that uses debhelper.
 # GNU copyright 1997 to 1999 by Joey Hess.
+
+include /usr/share/quilt/quilt.make
 
 # List of python versions this package will be compiled for.
 # This list has to match the package list in debian/control.
 PYVERS = $(shell pyversions -r)
 
 configure: configure-stamp
-configure-stamp:
+configure-stamp: patch
 	dh_testdir
 	for python in $(PYVERS); do \
 		"$${python}" setup.py config; \




More information about the Python-modules-commits mailing list