summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2010-10-19 04:18:18 +0000
committerJeroen Roovers <jer@gentoo.org>2010-10-19 04:18:18 +0000
commit86018078b1268b27d9a51420cb81d4fe542227fa (patch)
treeab0efed1661d0658799c43cc37d951e08fb9fb3f /sys-apps/debianutils/files
parentVersion bump, patch for afs submitted by Andrew Savchenko. (diff)
downloadgentoo-2-86018078b1268b27d9a51420cb81d4fe542227fa.tar.gz
gentoo-2-86018078b1268b27d9a51420cb81d4fe542227fa.tar.bz2
gentoo-2-86018078b1268b27d9a51420cb81d4fe542227fa.zip
Old.
(Portage version: 2.2_rc98/cvs/Linux i686)
Diffstat (limited to 'sys-apps/debianutils/files')
-rw-r--r--sys-apps/debianutils/files/debianutils-2.31-no-bs-namespace.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/sys-apps/debianutils/files/debianutils-2.31-no-bs-namespace.patch b/sys-apps/debianutils/files/debianutils-2.31-no-bs-namespace.patch
deleted file mode 100644
index 0e58219228b2..000000000000
--- a/sys-apps/debianutils/files/debianutils-2.31-no-bs-namespace.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Allow dots in the names, bug #95173. Patch by Kerin Millar.
-Re-sourced for 2.28.2
-
---- debianutils-2.28.2/run-parts.8
-+++ debianutils-2.28.2/run-parts.8
-@@ -27,7 +27,8 @@
-
- If neither the \-\-lsbsysinit option nor the \-\-regex option is given
- then the names must consist entirely of upper and lower case letters,
--digits, underscores, and hyphens.
-+digits, underscores, hyphens, and periods. However, the name must not begin
-+with a period.
-
- If the \-\-lsbsysinit option is given, then the names must not end
- in .dpkg\-old or .dpkg\-dist or .dpkg\-new or .dpkg\-tmp, and must
---- debianutils-2.28.2/run-parts.c
-+++ debianutils-2.28.2/run-parts.c
-@@ -494,7 +494,7 @@ regex_compile_pattern (void)
- != 0)
- pt_regex = &tradre;
-
-- } else if ( (err = regcomp(&classicalre, "^[a-zA-Z0-9_-]+$",
-+ } else if ( (err = regcomp(&classicalre, "^[a-zA-Z0-9_-][a-zA-Z0-9._-]+$",
- REG_EXTENDED | REG_NOSUB)) != 0)
- pt_regex = &classicalre;
-