r7051 - /vdr/vdr/trunk/debian/patchcheck.py
tiber-guest at users.alioth.debian.org
tiber-guest at users.alioth.debian.org
Thu Jul 10 20:49:03 UTC 2008
Author: tiber-guest
Date: Thu Jul 10 20:49:03 2008
New Revision: 7051
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/?sc=1&rev=7051
Log:
let patchcheck.py ignore 00_*-patches which may be used to patch the .vdr-patches file for different patch variants
Modified:
vdr/vdr/trunk/debian/patchcheck.py
Modified: vdr/vdr/trunk/debian/patchcheck.py
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr/trunk/debian/patchcheck.py?rev=7051&op=diff
==============================================================================
--- vdr/vdr/trunk/debian/patchcheck.py (original)
+++ vdr/vdr/trunk/debian/patchcheck.py Thu Jul 10 20:49:03 2008
@@ -10,7 +10,7 @@
def get_active_patches():
active_patches = {}
for line in open("debian/patches/00list", "r"):
- match = re.match('^([^#]+)', line.rstrip())
+ match = re.match('^(?!00_)([^#]+)', line.rstrip())
if match:
patchFileName = "debian/patches/" + match.group(1)
if not os.path.exists(patchFileName):
More information about the pkg-vdr-dvb-changes
mailing list