Blame SPECS/cracklib.spec

2a06ea
# Reflects the values hard-coded in various Makefile.am's in the source tree.
2a06ea
%define dictdir %{_datadir}/cracklib
2a06ea
%define dictpath %{dictdir}/pw_dict
2a06ea
2a06ea
Summary: A password-checking library
2a06ea
Name: cracklib
2a06ea
Version: 2.9.0
2a06ea
Release: 7%{?dist}
2a06ea
Group: System Environment/Libraries
2a06ea
Source0: http://prdownloads.sourceforge.net/cracklib/cracklib-%{version}.tar.gz
2a06ea
2a06ea
# Retrieved at 20091201191719Z.
2a06ea
Source1: http://iweb.dl.sourceforge.net/project/cracklib/cracklib-words/2008-05-07/cracklib-words-20080507.gz
2a06ea
2a06ea
# For man pages.
2a06ea
Source2: http://ftp.us.debian.org/debian/pool/main/c/cracklib2/cracklib2_2.8.19-1.debian.tar.gz
2a06ea
Source40: http://ftp.us.debian.org/debian/pool/main/c/cracklib2/cracklib2_2.8.19-1.dsc
2a06ea
2a06ea
# From attachment to https://bugzilla.redhat.com/show_bug.cgi?id=627449
2a06ea
Source3: cracklib.default.zh_CN.po
2a06ea
2a06ea
Source10: http://ftp.cerias.purdue.edu/pub/dict/wordlists/computer/Domains.gz
2a06ea
Source11: http://ftp.cerias.purdue.edu/pub/dict/wordlists/computer/Dosref.gz
2a06ea
Source12: http://ftp.cerias.purdue.edu/pub/dict/wordlists/computer/Ftpsites.gz
2a06ea
Source13: http://ftp.cerias.purdue.edu/pub/dict/wordlists/computer/Jargon.gz
2a06ea
Source14: http://ftp.cerias.purdue.edu/pub/dict/wordlists/computer/common-passwords.txt.gz
2a06ea
Source15: http://ftp.cerias.purdue.edu/pub/dict/wordlists/computer/etc-hosts.gz
2a06ea
Source16: http://ftp.cerias.purdue.edu/pub/dict/wordlists/movieTV/Movies.gz
2a06ea
Source17: http://ftp.cerias.purdue.edu/pub/dict/wordlists/movieTV/Python.gz
2a06ea
Source18: http://ftp.cerias.purdue.edu/pub/dict/wordlists/movieTV/Trek.gz
2a06ea
Source19: http://ftp.cerias.purdue.edu/pub/dict/wordlists/literature/LCarrol.gz
2a06ea
Source20: http://ftp.cerias.purdue.edu/pub/dict/wordlists/literature/Paradise.Lost.gz
2a06ea
Source21: http://ftp.cerias.purdue.edu/pub/dict/wordlists/literature/cartoon.gz
2a06ea
Source22: http://ftp.cerias.purdue.edu/pub/dict/wordlists/literature/myths-legends.gz
2a06ea
Source23: http://ftp.cerias.purdue.edu/pub/dict/wordlists/literature/sf.gz
2a06ea
Source24: http://ftp.cerias.purdue.edu/pub/dict/wordlists/literature/shakespeare.gz
2a06ea
Source25: http://ftp.cerias.purdue.edu/pub/dict/wordlists/names/ASSurnames.gz
2a06ea
Source26: http://ftp.cerias.purdue.edu/pub/dict/wordlists/names/Congress.gz
2a06ea
Source27: http://ftp.cerias.purdue.edu/pub/dict/wordlists/names/Family-Names.gz
2a06ea
Source28: http://ftp.cerias.purdue.edu/pub/dict/wordlists/names/Given-Names.gz
2a06ea
Source29: http://ftp.cerias.purdue.edu/pub/dict/wordlists/names/famous.gz
2a06ea
Source30: http://ftp.cerias.purdue.edu/pub/dict/wordlists/names/fast-names.gz
2a06ea
Source31: http://ftp.cerias.purdue.edu/pub/dict/wordlists/names/female-names.gz
2a06ea
Source32: http://ftp.cerias.purdue.edu/pub/dict/wordlists/names/male-names.gz
2a06ea
Source33: http://ftp.cerias.purdue.edu/pub/dict/wordlists/names/names.french.gz
2a06ea
Source34: http://ftp.cerias.purdue.edu/pub/dict/wordlists/names/names.hp.gz
2a06ea
Source35: http://ftp.cerias.purdue.edu/pub/dict/wordlists/names/other-names.gz
2a06ea
Source36: http://ftp.cerias.purdue.edu/pub/dict/wordlists/names/surnames.finnish.gz
2a06ea
2a06ea
# No upstream source for this; it came in as a bugzilla attachment.
2a06ea
Source37: pass_file.gz
2a06ea
# https://bugzilla.redhat.com/show_bug.cgi?id=557592
2a06ea
# https://bugzilla.redhat.com/attachment.cgi?id=386022
2a06ea
Source38: ry-threshold10.txt
2a06ea
Patch1: cracklib-2.8.15-inttypes.patch
2a06ea
Patch2: cracklib-2.9.0-python-gzdicts.patch
2a06ea
Patch3: cracklib-2.9.0-packlib-lookup.patch
2a06ea
Patch4: cracklib-2.9.0-packlib-reentrant.patch
2a06ea
Patch5: cracklib-2.9.0-packlib-gztype.patch
2a06ea
Patch6: cracklib-2.9.0-simplistic.patch
2a06ea
URL: http://sourceforge.net/projects/cracklib/
2a06ea
License: LGPLv2+
2a06ea
Buildroot: %{_tmppath}/%{name}-%{version}-root
2a06ea
BuildRequires: python-devel, words, autoconf, automake, gettext, libtool
2a06ea
BuildRequires: gettext-autopoint
2a06ea
BuildRequires: zlib-devel
2a06ea
Conflicts: cracklib-dicts < 2.8
2a06ea
# The cracklib-format script calls gzip, but without a specific path.
2a06ea
Requires: gzip
2a06ea
2a06ea
%description
2a06ea
CrackLib tests passwords to determine whether they match certain
2a06ea
security-oriented characteristics, with the purpose of stopping users
2a06ea
from choosing passwords that are easy to guess. CrackLib performs
2a06ea
several tests on passwords: it tries to generate words from a username
2a06ea
and gecos entry and checks those words against the password; it checks
2a06ea
for simplistic patterns in passwords; and it checks for the password
2a06ea
in a dictionary.
2a06ea
2a06ea
CrackLib is actually a library containing a particular C function
2a06ea
which is used to check the password, as well as other C
2a06ea
functions. CrackLib is not a replacement for a passwd program; it must
2a06ea
be used in conjunction with an existing passwd program.
2a06ea
2a06ea
Install the cracklib package if you need a program to check users'
2a06ea
passwords to see if they are at least minimally secure. If you install
2a06ea
CrackLib, you will also want to install the cracklib-dicts package.
2a06ea
2a06ea
%package devel
2a06ea
Summary: Development files needed for building applications which use cracklib
2a06ea
Group: Development/Libraries
2a06ea
Requires: %{name} = %{version}-%{release}
2a06ea
2a06ea
%description devel
2a06ea
The cracklib-devel package contains the header files and libraries needed
2a06ea
for compiling applications which use cracklib.
2a06ea
2a06ea
%package python
2a06ea
Summary: Python bindings for applications which use cracklib
2a06ea
Group: Development/Libraries
2a06ea
Requires: %{name} = %{version}-%{release}
2a06ea
2a06ea
%description python
2a06ea
The cracklib-python package contains a module which permits applications
2a06ea
written in the Python programming language to use cracklib.
2a06ea
2a06ea
%package dicts
2a06ea
Summary: The standard CrackLib dictionaries
2a06ea
Group: System Environment/Libraries
2a06ea
BuildRequires: words >= 2-13
2a06ea
Requires: cracklib = %{version}-%{release}
2a06ea
2a06ea
%description dicts
2a06ea
The cracklib-dicts package includes the CrackLib dictionaries.
2a06ea
CrackLib will need to use the dictionary appropriate to your system,
2a06ea
which is normally put in /usr/share/dict/words. Cracklib-dicts also
2a06ea
contains the utilities necessary for the creation of new dictionaries.
2a06ea
2a06ea
If you are installing CrackLib, you should also install cracklib-dicts.
2a06ea
2a06ea
%prep
2a06ea
%setup -q -a 2
2a06ea
2a06ea
cp lib/packer.h lib/packer.h.in
2a06ea
# Replace zn_CN.po with one that wasn't mis-transcoded at some point.
2a06ea
grep '????????????????' po/zh_CN.po
2a06ea
install -p -m 644 %{SOURCE3} po/zh_CN.po
2a06ea
2a06ea
%patch1 -p1 -b .inttypes
2a06ea
%patch2 -p1 -b .gzdicts
2a06ea
%patch3 -p1 -b .lookup
2a06ea
%patch4 -p1 -b .reentrant
2a06ea
%patch5 -p1 -b .gztype
2a06ea
%patch6 -p1 -b .simplistic
2a06ea
2a06ea
autoreconf -f -i
2a06ea
mkdir cracklib-dicts
2a06ea
for dict in %{SOURCE10} %{SOURCE11} %{SOURCE12} %{SOURCE13} %{SOURCE14} \
2a06ea
            %{SOURCE15} %{SOURCE16} %{SOURCE17} %{SOURCE18} %{SOURCE19} \
2a06ea
            %{SOURCE20} %{SOURCE21} %{SOURCE22} %{SOURCE23} %{SOURCE24} \
2a06ea
            %{SOURCE25} %{SOURCE26} %{SOURCE27} %{SOURCE28} %{SOURCE29} \
2a06ea
            %{SOURCE30} %{SOURCE31} %{SOURCE32} %{SOURCE33} %{SOURCE34} \
2a06ea
            %{SOURCE35} %{SOURCE36} %{SOURCE37} %{SOURCE38} %{SOURCE1}
2a06ea
do
2a06ea
        cp -fv ${dict} cracklib-dicts/
2a06ea
done
2a06ea
chmod +x util/cracklib-format
2a06ea
2a06ea
%build
2a06ea
%configure --with-pic --with-python --with-default-dict=%{dictpath} --disable-static
2a06ea
make -C po zh_CN.gmo
2a06ea
make
2a06ea
2a06ea
%install
2a06ea
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
2a06ea
make install DESTDIR=$RPM_BUILD_ROOT
2a06ea
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -c -p" -C python
2a06ea
./util/cracklib-format cracklib-dicts/* | \
2a06ea
./util/cracklib-packer $RPM_BUILD_ROOT/%{dictpath}
2a06ea
./util/cracklib-format $RPM_BUILD_ROOT/%{dictdir}/cracklib-small | \
2a06ea
./util/cracklib-packer $RPM_BUILD_ROOT/%{dictdir}/cracklib-small
2a06ea
rm -f $RPM_BUILD_ROOT/%{dictdir}/cracklib-small
2a06ea
sed s,/usr/lib/cracklib_dict,%{dictpath},g lib/crack.h > $RPM_BUILD_ROOT/%{_includedir}/crack.h
2a06ea
ln -s cracklib-format $RPM_BUILD_ROOT/%{_sbindir}/mkdict
2a06ea
ln -s cracklib-packer $RPM_BUILD_ROOT/%{_sbindir}/packer
2a06ea
touch $RPM_BUILD_ROOT/top
2a06ea
2a06ea
toprelpath=..
2a06ea
touch $RPM_BUILD_ROOT/top
2a06ea
while ! test -f $RPM_BUILD_ROOT/%{_libdir}/$toprelpath/top ; do
2a06ea
	toprelpath=../$toprelpath
2a06ea
done
2a06ea
rm -f $RPM_BUILD_ROOT/top
2a06ea
if test %{dictpath} != %{_libdir}/cracklib_dict ; then
2a06ea
ln -s $toprelpath%{dictpath}.hwm $RPM_BUILD_ROOT/%{_libdir}/cracklib_dict.hwm
2a06ea
ln -s $toprelpath%{dictpath}.pwd $RPM_BUILD_ROOT/%{_libdir}/cracklib_dict.pwd
2a06ea
ln -s $toprelpath%{dictpath}.pwi $RPM_BUILD_ROOT/%{_libdir}/cracklib_dict.pwi
2a06ea
fi
2a06ea
rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/_cracklib*.*a
2a06ea
rm -f $RPM_BUILD_ROOT/%{_libdir}/libcrack.la
2a06ea
2a06ea
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man{3,8}
2a06ea
install -p -m644 debian/*.3 $RPM_BUILD_ROOT/%{_mandir}/man3/
2a06ea
install -p -m644 debian/*.8 $RPM_BUILD_ROOT/%{_mandir}/man8/
2a06ea
if ! test -s $RPM_BUILD_ROOT/%{_mandir}/man8/cracklib-packer.8 ; then
2a06ea
    echo .so man8/cracklib-format.8 > $RPM_BUILD_ROOT/%{_mandir}/man8/cracklib-packer.8
2a06ea
fi
2a06ea
if ! test -s $RPM_BUILD_ROOT/%{_mandir}/man8/cracklib-unpacker.8 ; then
2a06ea
    echo .so man8/cracklib-format.8 > $RPM_BUILD_ROOT/%{_mandir}/man8/cracklib-unpacker.8
2a06ea
fi
2a06ea
2a06ea
%find_lang %{name}
2a06ea
2a06ea
%check
2a06ea
make test
2a06ea
# We want to check that the new library is able to open the new dictionaries,
2a06ea
# using the new python module.
2a06ea
LD_LIBRARY_PATH=$RPM_BUILD_ROOT/%{_libdir} %{__python} 2>&1 << EOF
2a06ea
import string, sys
2a06ea
# Prepend buildroot-specific variations of the python path to the python path.
2a06ea
syspath2=[]
2a06ea
for element in sys.path:
2a06ea
	syspath2.append("$RPM_BUILD_ROOT/" + element)
2a06ea
syspath2.reverse()
2a06ea
for element in syspath2:
2a06ea
	sys.path.insert(0,element)
2a06ea
# Now actually do the test.  If we get a different result, or throw an
2a06ea
# exception, the script will end with the error.
2a06ea
import cracklib
2a06ea
try:
2a06ea
	s = cracklib.FascistCheck("cracklib", "$RPM_BUILD_ROOT/%{dictpath}")
2a06ea
except ValueError, message:
2a06ea
	expected = "it is based on a dictionary word"
2a06ea
	if message != expected:
2a06ea
		print "Got unexpected result \"%s\"," % messgae,
2a06ea
		print "instead of expected value of \"%s\"." % expected
2a06ea
		sys.exit(1)
2a06ea
	print "Got expected result \"%s\"," % message
2a06ea
	sys.exit(0)
2a06ea
finally:
2a06ea
	sys.exit(0)
2a06ea
EOF
2a06ea
2a06ea
%clean
2a06ea
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
2a06ea
2a06ea
%post -p /sbin/ldconfig
2a06ea
2a06ea
%postun -p /sbin/ldconfig
2a06ea
2a06ea
%triggerpostun -p /sbin/ldconfig -- cracklib < 2.7-24
2a06ea
2a06ea
%files -f %{name}.lang
2a06ea
%defattr(-,root,root)
2a06ea
%doc README README-WORDS NEWS README-LICENSE AUTHORS COPYING.LIB
2a06ea
%{_libdir}/libcrack.so.*
2a06ea
%dir %{_datadir}/cracklib
2a06ea
%{_datadir}/cracklib/cracklib.magic
2a06ea
%{_sbindir}/*cracklib*
2a06ea
%{_mandir}/man8/*
2a06ea
2a06ea
%files devel
2a06ea
%defattr(-,root,root)
2a06ea
%{_includedir}/*
2a06ea
%{_libdir}/libcrack.so
2a06ea
%{_mandir}/man3/*
2a06ea
2a06ea
%files dicts
2a06ea
%defattr(-,root,root)
2a06ea
%{_datadir}/cracklib/pw_dict.*
2a06ea
%{_datadir}/cracklib/cracklib-small.*
2a06ea
%{_libdir}/cracklib_dict.*
2a06ea
%{_sbindir}/mkdict
2a06ea
%{_sbindir}/packer
2a06ea
2a06ea
%files python
2a06ea
%defattr(-,root,root)
2a06ea
%{_libdir}/python*/site-packages/_cracklib*.so
2a06ea
%{_libdir}/../lib/python*/site-packages/*.py*
2a06ea
2a06ea
%changelog
2a06ea
* Thu Oct 31 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.0-7
2a06ea
- do not remove any printable characters in cracklib-format
2a06ea
2a06ea
* Thu Oct 31 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.0-6
2a06ea
- fix the broken zh_CN translation
2a06ea
2a06ea
* Tue Sep  3 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.0-5
2a06ea
- make the simplistic check and the purging of special characters much
2a06ea
  less aggressive (#1003624, #985378)
2a06ea
2a06ea
* Wed Aug 28 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.0-4
2a06ea
- revert compression of the dictionaries as the performance penalty is too big
2a06ea
2a06ea
* Wed Aug 21 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.0-3
2a06ea
- fix the python module to work with compressed dictionaries (#972542)
2a06ea
- fix various dictionary lookup errors (#986400, #986401)
2a06ea
- make the library reentrant and fix compilation warnings
2a06ea
2a06ea
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.0-2
2a06ea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2a06ea
2a06ea
* Mon Jun  3 2013 Nalin Dahyabhai <nalin@redhat.com> - 2.9.0-1
2a06ea
- update to 2.9.0 (#970065)
2a06ea
  - adds FascistCheckUser()
2a06ea
- go ahead and compress the main dictionary, since we're linking with zlib
2a06ea
  anyway
2a06ea
2a06ea
* Tue Jan 29 2013 Nalin Dahyabhai <nalin@redhat.com> - 2.8.22-3
2a06ea
- point cracklib-packer and cracklib-unpacker man pages to cracklib-format
2a06ea
  (internal tooling)
2a06ea
2a06ea
* Wed Dec 19 2012 Nalin Dahyabhai <nalin@redhat.com> - 2.8.22-2
2a06ea
- add missing buildrequires: on zlib-devel (#888876)
2a06ea
2a06ea
* Mon Dec 17 2012 Nalin Dahyabhai <nalin@redhat.com> - 2.8.22-1
2a06ea
- update to 2.8.22 (#887461), which now returns an error instead of exiting
2a06ea
  when there's a failure opening the dictionary in FascistCheck()
2a06ea
2a06ea
* Thu Dec 13 2012 Nalin Dahyabhai <nalin@redhat.com> - 2.8.21-1
2a06ea
- update to 2.8.21
2a06ea
2a06ea
* Mon Dec 10 2012 Nalin Dahyabhai <nalin@redhat.com> - 2.8.20-1
2a06ea
- update to 2.8.20 (#885439)
2a06ea
2a06ea
* Tue Nov 20 2012 Nalin Dahyabhai <nalin@redhat.com> - 2.8.19-3
2a06ea
- update the copy of the debian source package to one that can currently be
2a06ea
  retrieved using the URL we list for it
2a06ea
2a06ea
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.19-2
2a06ea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2a06ea
2a06ea
* Fri May 18 2012 Nalin Dahyabhai <nalin@redhat.com> - 2.8.19-1
2a06ea
- update to 2.8.19
2a06ea
2a06ea
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.18-3
2a06ea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2a06ea
2a06ea
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.18-2
2a06ea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2a06ea
2a06ea
* Thu Jan 27 2011 Nalin Dahyabhai <nalin@redhat.com> - 2.8.18-1
2a06ea
- update to 2.8.18
2a06ea
- add man pages from Debian (#583932)
2a06ea
- replace zh_CN translation (related to #627449)
2a06ea
2a06ea
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.8.16-4
2a06ea
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
2a06ea
2a06ea
* Sat Jul  3 2010 Dan Horák <dan[at]danny.cz> - 2.8.16-3
2a06ea
- added gettext-autopoint as BR:
2a06ea
2a06ea
* Thu May 20 2010 Nalin Dahyabhai <nalin@redhat.com> - 2.8.16-2
2a06ea
- pull in changes to the Hindi translation (#589188)
2a06ea
2a06ea
* Tue Apr 20 2010 Nalin Dahyabhai <nalin@redhat.com> - 2.8.16-1
2a06ea
- update to 2.8.16
2a06ea
2a06ea
* Fri Jan 22 2010 Nalin Dahyabhai <nalin@redhat.com> - 2.8.15-3
2a06ea
- add passwords derived from rockyou breach data to the dictionaries (Matthew
2a06ea
  Miller, #557592)
2a06ea
2a06ea
* Thu Jan 21 2010 Nalin Dahyabhai <nalin@redhat.com> - 2.8.15-2
2a06ea
- update license: tag
2a06ea
- include license file
2a06ea
2a06ea
* Tue Dec  1 2009 Nalin Dahyabhai <nalin@redhat.com> - 2.8.15-1
2a06ea
- update to 2.8.15
2a06ea
- update cracklib-words to the current version (2008-05-07)
2a06ea
- fixup URLs for various dictionary sources that we use
2a06ea
- fix freeing-an-uninitialized-pointer in the python module (SF#2907102)
2a06ea
- add a disttag
2a06ea
2a06ea
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.13-6
2a06ea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2a06ea
2a06ea
* Mon May 18 2009 Nalin Dahyabhai <nalin@redhat.com> - 2.8.13-5
2a06ea
- add explicit dependency on gzip for the sake of cracklib-format (Daniel
2a06ea
  Mach, #501278)
2a06ea
2a06ea
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.13-4
2a06ea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2a06ea
2a06ea
* Thu Feb 19 2009 Nalin Dahyabhai <nalin@redhat.com> - 2.8.13-3
2a06ea
- drop trailing "." from the package description for the dicts
2a06ea
  subpackage (#225659)
2a06ea
2a06ea
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.8.13-2
2a06ea
- Rebuild for Python 2.6
2a06ea
2a06ea
* Tue Oct 28 2008 Nalin Dahyabhai <nalin@redhat.com> - 2.8.13-1
2a06ea
- update to 2.8.13, which overhauls the python bindings and revises
2a06ea
  FascistCheck()'s behavior:
2a06ea
  2.8.12 success: returns None, fail: returns error text, other: exceptions
2a06ea
  2.8.13 success: returns candidate, fail: throws ValueError, other: exceptions
2a06ea
2a06ea
* Tue Oct 28 2008 Nalin Dahyabhai <nalin@redhat.com> - 2.8.12-3
2a06ea
- fix errors rebuilding with libtool that's newer than the one upstream
2a06ea
  has (#467364)
2a06ea
2a06ea
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.8.12-2
2a06ea
- Autorebuild for GCC 4.3
2a06ea
2a06ea
* Fri Jan 25 2008 Nalin Dahyabhai <nalin@redhat.com> - 2.8.12-1
2a06ea
- update to 2.8.12, which was relicensed to GPLv2
2a06ea
- package the now-bundled cracklib-small dictionary in cracklib-dicts
2a06ea
2a06ea
* Tue Aug 21 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.10-3
2a06ea
- rebuild
2a06ea
2a06ea
* Mon Jul 23 2007 Nalin Dahyabhai <nalin@redhat.com>
2a06ea
- add a %%check script to catch things like #249210
2a06ea
2a06ea
* Mon Jul 23 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.10-2
2a06ea
- work around non-executable util/cracklib-format giving us empty/garbage
2a06ea
  dictionaries (#249210)
2a06ea
2a06ea
* Thu Jul 19 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.10-1
2a06ea
- update to 2.8.10
2a06ea
2a06ea
* Wed Jun 20 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-11
2a06ea
- improve reports of out-of-memory exceptions so that they don't include a
2a06ea
  bogus filename
2a06ea
- improve reports of file-missing exceptions from the python module so that
2a06ea
  they give the right filename (#225858)
2a06ea
2a06ea
* Mon Mar 12 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-10
2a06ea
- explicitly include required headers from <packer.h> (#228698)
2a06ea
- attempt to provide doc strings in the python module
2a06ea
2a06ea
* Mon Feb 12 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-9
2a06ea
- drop final "." from summaries (Jef Spaleta, #225659)
2a06ea
- drop static library from -devel subpackage (Jef Spaleta, #225659)
2a06ea
- note that the most recently-added wordlist came from bugzilla (#225659)
2a06ea
- remove explicit dependency on gzip, as it's implicit (Jef Spaleta, #225659)
2a06ea
- convert %%triggerpostun to not use a shell as an interpreter (#225659)
2a06ea
2a06ea
* Wed Jan 31 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-8
2a06ea
- add word list from attachment #126053 (#185314)
2a06ea
2a06ea
* Thu Jan 25 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-7
2a06ea
- fix check for the existence of dictionaries when the caller specifies a
2a06ea
  location (#224347, upstream #1644628)
2a06ea
2a06ea
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 2.8.9-6
2a06ea
- rebuild against python 2.5
2a06ea
2a06ea
* Sun Oct 29 2006 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-5
2a06ea
- split out cracklib-python (#203327)
2a06ea
2a06ea
* Sun Oct 29 2006 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-4
2a06ea
- split out cracklib-devel (#203569)
2a06ea
2a06ea
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.8.9-3.1
2a06ea
- rebuild
2a06ea
2a06ea
* Mon Jun 12 2006 Jesse Keating <jkeating@redhat.com> - 2.8.9-3
2a06ea
- Add missing br, automake, libtool (#194738)
2a06ea
2a06ea
* Tue Apr 25 2006 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-2
2a06ea
- update to 2.8.9
2a06ea
- only create compat symlinks for the dictionaries if we aren't installing
2a06ea
  them into the old locations
2a06ea
2a06ea
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.8.6-1.2.1
2a06ea
- bump again for double-long bug on ppc(64)
2a06ea
2a06ea
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.8.6-1.2
2a06ea
- rebuilt for new gcc4.1 snapshot and glibc changes
2a06ea
2a06ea
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
2a06ea
- rebuilt
2a06ea
2a06ea
* Mon Nov  7 2005 Nalin Dahyabhai <nalin@redhat.com> 2.8.6-1
2a06ea
- update to 2.8.6
2a06ea
- remove .la file (#172632)
2a06ea
2a06ea
* Wed Sep 28 2005 Nalin Dahyabhai <nalin@redhat.com> 2.8.5-2
2a06ea
- update to 2.8.5
2a06ea
2a06ea
* Tue Sep 27 2005 Nalin Dahyabhai <nalin@redhat.com> 2.8.4-1
2a06ea
- update to 2.8.4
2a06ea
- build python module
2a06ea
2a06ea
* Fri May 13 2005 Nalin Dahyabhai <nalin@redhat.com> 2.8.3-1
2a06ea
- update to 2.8.3
2a06ea
2a06ea
* Thu Mar 17 2005 Nalin Dahyabhai <nalin@redhat.com> 2.8.2-1
2a06ea
- update to 2.8.2
2a06ea
2a06ea
* Wed Mar 16 2005 Nalin Dahyabhai <nalin@redhat.com> 2.8.1-1
2a06ea
- update to 2.8.1
2a06ea
  - moves dictionary to new default location under %%{_datadir} -- the
2a06ea
    dictionary format is the same across all architectures
2a06ea
  - renames "packer" to "cracklib-packer"
2a06ea
- conflict with cracklib-dicts < 2.8, where the on-disk format was not
2a06ea
  compatible on 64-bit arches due to now-fixed cleanliness bugs
2a06ea
- move binaries for manipulating and checking words against dictionaries
2a06ea
  from -dicts into the main package
2a06ea
2a06ea
* Mon Jan  3 2005 Nalin Dahyabhai <nalin@redhat.com> 2.7-30
2a06ea
- rebuild
2a06ea
2a06ea
* Mon Jan  3 2005 Nalin Dahyabhai <nalin@redhat.com> 2.7-29
2a06ea
- correctly build on 64-bit systems (part of #143417)
2a06ea
- patch so that 32- and 64-bit libcrack can read dictionaries which were
2a06ea
  incorrectly generated on 64-bit systems of the same endianness (more #143417)
2a06ea
- include a sample cracklib magic file
2a06ea
- stop using /usr/dict/* when building the dictionary
2a06ea
- list words as a build requirement, which it is, instead of a run-time
2a06ea
  requirement
2a06ea
- provide a virtual arch-specific dep in cracklib-dicts, require it in
2a06ea
  cracklib (part of #143417)
2a06ea
2a06ea
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
2a06ea
- rebuilt
2a06ea
2a06ea
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
2a06ea
- rebuilt
2a06ea
2a06ea
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
2a06ea
- rebuilt
2a06ea
2a06ea
* Wed Feb  4 2004 Nalin Dahyabhai <nalin@redhat.com> 2.7-26
2a06ea
- update URL (previous page moved) (#114894)
2a06ea
2a06ea
* Fri Jan 30 2004 Nalin Dahyabhai <nalin@redhat.com> 2.7-25
2a06ea
- fix ldconfig invocation in trigger for older versions which included the
2a06ea
  soname symlink (#114620)
2a06ea
2a06ea
* Mon Dec  1 2003 Nalin Dahyabhai <nalin@redhat.com> 2.7-24
2a06ea
- include packer.h for reading dictionaries directly, since we already include
2a06ea
  packer in the -dicts subpackage (#68339)
2a06ea
- don't include the soname symlink in the package, let ldconfig do its job
2a06ea
2a06ea
* Wed Jun 18 2003 Nalin Dahyabhai <nalin@redhat.com> 2.7-23
2a06ea
- rebuild
2a06ea
2a06ea
* Mon Jun 16 2003 Nalin Dahyabhai <nalin@redhat.com> 2.7-22
2a06ea
- rebuild
2a06ea
2a06ea
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
2a06ea
- rebuilt
2a06ea
2a06ea
* Wed Apr 30 2003 Nalin Dahyabhai <nalin@redhat.com>
2a06ea
- update URL
2a06ea
2a06ea
* Tue Feb 04 2003 Florian La Roche <Florian.LaRoche@redhat.de>
2a06ea
- add symlink to shared libs
2a06ea
2a06ea
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
2a06ea
- rebuilt
2a06ea
2a06ea
* Wed Sep 25 2002 Nalin Dahyabhai <nalin@redhat.com> 2.7-19
2a06ea
- fix for builds on multilib systems (set DICTPATH properly)
2a06ea
2a06ea
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
2a06ea
- automated rebuild
2a06ea
2a06ea
* Sun May 26 2002 Tim Powers <timp@redhat.com>
2a06ea
- automated rebuild
2a06ea
2a06ea
* Thu May  9 2002 Nalin Dahyabhai <nalin@redhat.com> 2.7-16
2a06ea
- rebuild in new environment
2a06ea
2a06ea
* Fri Feb 22 2002 Nalin Dahyabhai <nalin@redhat.com> 2.7-15
2a06ea
- rebuild
2a06ea
2a06ea
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
2a06ea
- automated rebuild
2a06ea
2a06ea
* Tue Oct  2 2001 Nalin Dahyabhai <nalin@redhat.com> 2.7-13
2a06ea
- use getpwuid_r instead of getpwuid
2a06ea
2a06ea
* Fri Aug  3 2001 Nalin Dahyabhai <nalin@redhat.com> 2.7-12
2a06ea
- remove cruft that ldconfig already knows how to manage
2a06ea
- don't explicitly strip anything -- the brp setup decides that
2a06ea
- tweak the header so that it can be used in C++ (#46685)
2a06ea
- buildprereq the words package
2a06ea
2a06ea
* Tue Jun 26 2001 Florian La Roche <Florian.LaRoche@redhat.de>
2a06ea
- add link from library major version number
2a06ea
2a06ea
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
2a06ea
- Bump release + rebuild.
2a06ea
2a06ea
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
2a06ea
- automatic rebuild
2a06ea
2a06ea
* Tue Jun 27 2000 Nalin Dahyabhai <nalin@redhat.com>
2a06ea
- FHS fixes
2a06ea
- fix undeclared function warnings from the new compiler
2a06ea
- fix URL
2a06ea
2a06ea
* Fri Apr 07 2000 Trond Eivind Glomsrød <teg@redhat.com>
2a06ea
- switched to use /usr/share/dict/words
2a06ea
2a06ea
* Tue Apr 06 1999 Preston Brown <pbrown@redhat.com>
2a06ea
- strip binaries
2a06ea
2a06ea
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
2a06ea
- auto rebuild in the new build environment (release 4)
2a06ea
2a06ea
* Wed Jan 06 1999 Cristian Gafton <gafton@redhat.com>
2a06ea
- build for glibc 2.1
2a06ea
2a06ea
* Sat May 09 1998 Prospector System <bugs@redhat.com>
2a06ea
- translations modified for de, fr, tr
2a06ea
2a06ea
* Tue Mar 10 1998 Cristian Gafton <gafton@redhat.com>
2a06ea
- updated to 2.7
2a06ea
- build shared libraries
2a06ea
2a06ea
* Mon Nov 03 1997 Donnie Barnes <djb@redhat.com>
2a06ea
- added -fPIC
2a06ea
2a06ea
* Mon Oct 13 1997 Donnie Barnes <djb@redhat.com>
2a06ea
- basic spec file cleanups
2a06ea
2a06ea
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
2a06ea
- built against glibc