[Pkg-cracklib-commits] r52 - cracklib2/trunk/debian

jandd-guest at alioth.debian.org jandd-guest at alioth.debian.org
Mon Sep 15 20:18:56 UTC 2008


Author: jandd-guest
Date: 2008-09-15 20:18:55 +0000 (Mon, 15 Sep 2008)
New Revision: 52

Added:
   cracklib2/trunk/debian/crack.py
Modified:
   cracklib2/trunk/debian/changelog
   cracklib2/trunk/debian/cracklib-runtime.cron.daily
   cracklib2/trunk/debian/cracklib-runtime.logcheck.ignore.paranoid
   cracklib2/trunk/debian/cracklib-runtime.logcheck.ignore.server
   cracklib2/trunk/debian/cracklib-runtime.logcheck.ignore.workstation
   cracklib2/trunk/debian/rules
Log:
fix for #499056 + package improvements

Modified: cracklib2/trunk/debian/changelog
===================================================================
--- cracklib2/trunk/debian/changelog	2008-09-15 18:51:45 UTC (rev 51)
+++ cracklib2/trunk/debian/changelog	2008-09-15 20:18:55 UTC (rev 52)
@@ -1,3 +1,13 @@
+cracklib2 (2.8.12-8) UNRELEASED; urgency=low
+
+  * provide a python-crack wrapper to mimic the behavior of the python-
+    crack package in Etch (Closes: #499056)
+  * fix inconsistent spaces vs. tabs usage in
+    debian/cracklib-runtime.cron.daily
+  * fix logcheck rules' regexes
+
+ -- Jan Dittberner <jan at dittberner.info>  Mon, 15 Sep 2008 21:29:46 +0200
+
 cracklib2 (2.8.12-7) unstable; urgency=low
 
   * fixes global name 'default_dictpath' is not defined (Closes: #499013)

Added: cracklib2/trunk/debian/crack.py
===================================================================
--- cracklib2/trunk/debian/crack.py	                        (rev 0)
+++ cracklib2/trunk/debian/crack.py	2008-09-15 20:18:55 UTC (rev 52)
@@ -0,0 +1,6 @@
+#
+# wrapper script to provide the python-cracklib functionality with the
+# module name of the older python-crack package
+#
+from cracklib import *
+


Property changes on: cracklib2/trunk/debian/crack.py
___________________________________________________________________
Name: svn:keywords
   + Id Date Author Revision HeadURL

Modified: cracklib2/trunk/debian/cracklib-runtime.cron.daily
===================================================================
--- cracklib2/trunk/debian/cracklib-runtime.cron.daily	2008-09-15 18:51:45 UTC (rev 51)
+++ cracklib2/trunk/debian/cracklib-runtime.cron.daily	2008-09-15 20:18:55 UTC (rev 52)
@@ -9,7 +9,7 @@
     then
         /usr/bin/logger -p cron.info -t cracklib "updated dictionary (read/written words: ${status})."
     else
-    	/usr/bin/logger -p cron.info -t cracklib "no dictionary update necessary."
+        /usr/bin/logger -p cron.info -t cracklib "no dictionary update necessary."
     fi
 fi
 

Modified: cracklib2/trunk/debian/cracklib-runtime.logcheck.ignore.paranoid
===================================================================
--- cracklib2/trunk/debian/cracklib-runtime.logcheck.ignore.paranoid	2008-09-15 18:51:45 UTC (rev 51)
+++ cracklib2/trunk/debian/cracklib-runtime.logcheck.ignore.paranoid	2008-09-15 20:18:55 UTC (rev 52)
@@ -1,2 +1,2 @@
-cracklib: updated dictionary \(read/written words: ([0-9]+) \1\)\.
-cracklib: no dictionary update necessary\.
+^\w{3} [ :0-9]{11} [._[:alnum:]-]+ cracklib: updated dictionary \(read/written words: ([0-9]+) \1\)\.$
+^\w{3} [ :0-9]{11} [._[:alnum:]-]+ cracklib: no dictionary update necessary\.$

Modified: cracklib2/trunk/debian/cracklib-runtime.logcheck.ignore.server
===================================================================
--- cracklib2/trunk/debian/cracklib-runtime.logcheck.ignore.server	2008-09-15 18:51:45 UTC (rev 51)
+++ cracklib2/trunk/debian/cracklib-runtime.logcheck.ignore.server	2008-09-15 20:18:55 UTC (rev 52)
@@ -1,2 +1,2 @@
-cracklib: updated dictionary \(read/written words: ([0-9]+) \1\)\.
-cracklib: no dictionary update necessary\.
+^\w{3} [ :0-9]{11} [._[:alnum:]-]+ cracklib: updated dictionary \(read/written words: ([0-9]+) \1\)\.$
+^\w{3} [ :0-9]{11} [._[:alnum:]-]+ cracklib: no dictionary update necessary\.$

Modified: cracklib2/trunk/debian/cracklib-runtime.logcheck.ignore.workstation
===================================================================
--- cracklib2/trunk/debian/cracklib-runtime.logcheck.ignore.workstation	2008-09-15 18:51:45 UTC (rev 51)
+++ cracklib2/trunk/debian/cracklib-runtime.logcheck.ignore.workstation	2008-09-15 20:18:55 UTC (rev 52)
@@ -1,2 +1,2 @@
-cracklib: updated dictionary \(read/written words: ([0-9]+) \1\)\.
-cracklib: no dictionary update necessary\.
+^\w{3} [ :0-9]{11} [._[:alnum:]-]+ cracklib: updated dictionary \(read/written words: ([0-9]+) \1\)\.$
+^\w{3} [ :0-9]{11} [._[:alnum:]-]+ cracklib: no dictionary update necessary\.$

Modified: cracklib2/trunk/debian/rules
===================================================================
--- cracklib2/trunk/debian/rules	2008-09-15 18:51:45 UTC (rev 51)
+++ cracklib2/trunk/debian/rules	2008-09-15 20:18:55 UTC (rev 52)
@@ -73,6 +73,7 @@
 	for i in $(PYVERS); do \
 		echo "debian/tmp/usr/lib/python$$i/site-packages/_cracklibmodule.so usr/lib/python$$i/site-packages" >> debian/python-cracklib.install; \
 		echo "debian/tmp/usr/lib/python$$i/site-packages/cracklib.py usr/lib/python$$i/site-packages" >> debian/python-cracklib.install; \
+		echo "debian/crack.py usr/lib/python$$i/site-packages" >> debian/python-cracklib.install; \
 	done
 	dh_install
 




More information about the Pkg-cracklib-commits mailing list