[Pkg-cracklib-commits] [SCM] Git repository for pkg-cracklib branch, lenny-backports, updated. debian/2.8.16-2-22-g372d8c9
Jan Dittberner
jandd at debian.org
Tue Nov 2 20:43:17 UTC 2010
The following commit has been merged in the lenny-backports branch:
commit 3300dc709c8988aea9672aa8700ffefed858d965
Merge: dcef1bbc786b5f6d5cab2df879f51e68514cf53e 41afd5bbdc30d1e0000e61aef20b765676993892
Author: Jan Dittberner <jandd at debian.org>
Date: Tue Nov 2 17:36:52 2010 +0100
merge till 2.8.16-4 from master
diff --combined debian/changelog
index 6b8ba61,b004da7..81d0425
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,16 -1,78 +1,91 @@@
+ cracklib2 (2.8.16-4) unstable; urgency=low
+
+ * debian/control: remove Conflicts, Provides and Breaks refering to versions
+ and packages before Lenny, keep python-cracklib's Conflicts with
+ python-crack to force deinstallation of transitional package
+
+ -- Jan Dittberner <jandd at debian.org> Mon, 13 Sep 2010 19:00:03 +0200
+
+ cracklib2 (2.8.16-3) unstable; urgency=low
+
+ * debian/control: update to Standards-Version to 3.9.1
+ - use Breaks instead of Conflicts for libcrack2's incompatibility with
+ cracklib2 (<< 2.8.12-1) and libcrack2-dev's incompatibility with
+ cracklib2-dev (<< 2.8.12-1)
+ * add debian/patches/596281-fix-python-extension-segfault.patch: in
+ cracklib-python's C module, make sure we initialize defaultdict to
+ NULL at the start of _cracklib_FascistCheck. This fixes a bug where
+ that variable was freed when not NULL without ever having been
+ assigned any value to. This happened when we called FascistCheck()
+ with a dictionary path of our own. Thanks to Peter Palfrader for the
+ patch (Closes: #596281).
+
+ -- Jan Dittberner <jandd at debian.org> Fri, 10 Sep 2010 18:44:23 +0200
+
+ cracklib2 (2.8.16-2) unstable; urgency=low
+
+ * fix bashism in debian/rules (Closes: #581479)
+
+ -- Jan Dittberner <jandd at debian.org> Thu, 13 May 2010 11:58:43 +0200
+
+ cracklib2 (2.8.16-1) unstable; urgency=low
+
+ * use LC_COLLATE=C for speedup dictionary sorts (Closes: #569081)
+ * new Upstream release
+ * remove debian/patches/03-packer-dont-print-skipping-line.patch,
+ debian/patches/svn-r152-python-use-translations.patch and
+ debian/patches/series. All patches have been applied upstream
+
+ -- Jan Dittberner <jandd at debian.org> Wed, 03 Mar 2010 11:54:55 +0100
+
+ cracklib2 (2.8.15-9) unstable; urgency=low
+
+ * fix wrong paths in debian/cracklib-runtime.preinst
+
+ -- Jan Dittberner <jandd at debian.org> Thu, 04 Feb 2010 18:11:47 +0100
+
+ cracklib2 (2.8.15-8) unstable; urgency=low
+
+ * remove old logcheck ignore.d.{workstation,server} conffiles in
+ preinst script (thanks for the hint to Hannes von Haugwitz)
+ * debian/control:
+ - remove Build-Depends-Indep and add python-setuptools to Build-Depends
+ - remove python-crack transitional binary package
+ - extend python-cracklib Conflicts to all python-crack versions
+ - add python-cracklib Replaces python-crack
+
+ -- Jan Dittberner <jandd at debian.org> Thu, 04 Feb 2010 17:45:36 +0100
+
+ cracklib2 (2.8.15-7) unstable; urgency=low
+
+ * remove debian/cracklib-runtime.logcheck.ignore.{server,workstation}
+ because both server and workstation levels of logcheck include
+ paranoid level rules (Closes: #567476)
+ * debian/control: update Standards-Version to 3.8.4 (no changes needed)
+
+ -- Jan Dittberner <jandd at debian.org> Wed, 03 Feb 2010 18:18:23 +0100
+
+ cracklib2 (2.8.15-6) unstable; urgency=low
+
+ * debian/control: set Recommends for cracklib-runtime to wamerican |
+ wordlist instead of wordlist only to provide a sane default for
+ installations that have no existing wordlist (Closes: #566099)
+
+ -- Jan Dittberner <jandd at debian.org> Sun, 24 Jan 2010 00:31:43 +0100
+
+cracklib2 (2.8.15-5~bpo50+1) lenny-backports; urgency=low
+
+ * Rebuild for lenny-backports.
+ * debian/rules:
+ - add py_sitename_sh macro from /usr/share/python/python.mk which is
+ not available in Lenny's python package
+ * use source format 1.0
+ - remove debian/source/format
+ - debian/control: add quilt (>=0.46-7) to Build-Depends
+ - debian/rules: add --with quilt
+
+ -- Jan Dittberner <jandd at debian.org> Sat, 09 Jan 2010 23:52:55 +0100
+
cracklib2 (2.8.15-5) unstable; urgency=low
* switch packaging to git
diff --combined debian/rules
index 8037704,2e3e055..5cd93e6
--- a/debian/rules
+++ b/debian/rules
@@@ -1,8 -1,6 +1,8 @@@
#!/usr/bin/make -f
-include /usr/share/python/python.mk
+#include /usr/share/python/python.mk
+py_sitename_sh = $$(basename $$(_py_=$(strip $(1)); python$${_py_\#python*} -c 'from distutils import sysconfig; print(sysconfig.get_python_lib())'))
+
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
@@@ -59,7 -57,8 +59,8 @@@ override_dh_auto_install
debian/tmp/usr/sbin/cracklib-unpacker
for i in $(PYVERS); do \
cd debian/build$$i/python; \
- ln -s ../../../python/{cracklib.py,_cracklibmodule.c} .; \
+ ln -s ../../../python/cracklib.py . ; \
+ ln -s ../../../_cracklibmodule.c . ; \
python$$i setup.py egg_info install_egg_info --install-dir "../../tmp/usr/lib/python$$i/$(call py_sitename_sh, $$i)"; \
cd ../../..; \
find "debian/tmp/usr/lib/python$$i/$(call py_sitename_sh, $$i)" -type f | grep egg-info >> debian/python-cracklib.install; \
@@@ -72,4 -71,4 +73,4 @@@ override_dh_installchangelogs
dh_installchangelogs NEWS
%:
- dh $@
+ dh --with quilt $@
--
Git repository for pkg-cracklib
More information about the Pkg-cracklib-commits
mailing list