Blame SPECS/cracklib.spec

c79d99
# Reflects the values hard-coded in various Makefile.am's in the source tree.
c79d99
%define dictdir %{_datadir}/cracklib
c79d99
%define dictpath %{dictdir}/pw_dict
c79d99
c79d99
Summary: A password-checking library
c79d99
Name: cracklib
c79d99
Version: 2.9.6
c79d99
Release: 15%{?dist}
c79d99
Group: System Environment/Libraries
c79d99
Source0: https://github.com/cracklib/cracklib/releases/download/cracklib-%{version}/cracklib-%{version}.tar.gz
c79d99
Source1: https://github.com/cracklib/cracklib/releases/download/cracklib-%{version}/cracklib-words-%{version}.gz
c79d99
c79d99
# For man pages.
c79d99
Source2: http://ftp.us.debian.org/debian/pool/main/c/cracklib2/cracklib2_2.8.19-1.debian.tar.gz
c79d99
Source40: http://ftp.us.debian.org/debian/pool/main/c/cracklib2/cracklib2_2.8.19-1.dsc
c79d99
c79d99
# From attachment to https://bugzilla.redhat.com/show_bug.cgi?id=627449
c79d99
Source3: cracklib.default.zh_CN.po
c79d99
c79d99
# No upstream source for this, just words missing from the current cracklib-words
c79d99
Source10: missing-words.gz
c79d99
c79d99
Patch1: cracklib-2.9.1-inttypes.patch
c79d99
Patch2: cracklib-2.9.0-python-gzdicts.patch
c79d99
Patch4: cracklib-2.9.6-packlib-reentrant.patch
c79d99
Patch6: cracklib-2.9.6-simplistic.patch
c79d99
Patch7: cracklib-2.9.6-translation-updates.patch
c79d99
Patch8: cracklib-2.9.6-cve-2016-6318.patch
c79d99
Patch9: cracklib-2.9.6-lookup.patch
c79d99
URL: http://sourceforge.net/projects/cracklib/
c79d99
License: LGPLv2+
c79d99
Buildroot: %{_tmppath}/%{name}-%{version}-root
c79d99
BuildRequires: gcc
c79d99
BuildRequires: words, gettext
c79d99
BuildRequires: gettext-autopoint
c79d99
BuildRequires: zlib-devel
c79d99
%if 0%{?rhel} == 0
c79d99
BuildRequires: python2-devel
c79d99
%endif
c79d99
Conflicts: cracklib-dicts < 2.8
c79d99
# The cracklib-format script calls gzip, but without a specific path.
c79d99
Requires: gzip
c79d99
c79d99
%description
c79d99
CrackLib tests passwords to determine whether they match certain
c79d99
security-oriented characteristics, with the purpose of stopping users
c79d99
from choosing passwords that are easy to guess. CrackLib performs
c79d99
several tests on passwords: it tries to generate words from a username
c79d99
and gecos entry and checks those words against the password; it checks
c79d99
for simplistic patterns in passwords; and it checks for the password
c79d99
in a dictionary.
c79d99
c79d99
CrackLib is actually a library containing a particular C function
c79d99
which is used to check the password, as well as other C
c79d99
functions. CrackLib is not a replacement for a passwd program; it must
c79d99
be used in conjunction with an existing passwd program.
c79d99
c79d99
Install the cracklib package if you need a program to check users'
c79d99
passwords to see if they are at least minimally secure. If you install
c79d99
CrackLib, you will also want to install the cracklib-dicts package.
c79d99
c79d99
%package devel
c79d99
Summary: Development files needed for building applications which use cracklib
c79d99
Group: Development/Libraries
c79d99
Requires: %{name} = %{version}-%{release}
c79d99
c79d99
%description devel
c79d99
The cracklib-devel package contains the header files and libraries needed
c79d99
for compiling applications which use cracklib.
c79d99
c79d99
%if 0%{?rhel} == 0
c79d99
%package -n python2-cracklib
c79d99
Summary: Python bindings for applications which use cracklib
c79d99
Group: Development/Libraries
c79d99
Requires: %{name} = %{version}-%{release}
c79d99
%{?python_provide:%python_provide python2-cracklib}
c79d99
# Remove before F30
c79d99
Provides: %{name}-python = %{version}-%{release}
c79d99
Provides: %{name}-python%{?_isa} = %{version}-%{release}
c79d99
Obsoletes: %{name}-python < %{version}-%{release}
c79d99
c79d99
%description -n python2-cracklib
c79d99
The cracklib-python package contains a module which permits applications
c79d99
written in the Python programming language to use cracklib.
c79d99
%endif
c79d99
c79d99
%package dicts
c79d99
Summary: The standard CrackLib dictionaries
c79d99
Group: System Environment/Libraries
c79d99
BuildRequires: words >= 2-13
c79d99
Requires: cracklib = %{version}-%{release}
c79d99
c79d99
%description dicts
c79d99
The cracklib-dicts package includes the CrackLib dictionaries.
c79d99
CrackLib will need to use the dictionary appropriate to your system,
c79d99
which is normally put in /usr/share/dict/words. Cracklib-dicts also
c79d99
contains the utilities necessary for the creation of new dictionaries.
c79d99
c79d99
If you are installing CrackLib, you should also install cracklib-dicts.
c79d99
c79d99
%prep
c79d99
%setup -q -a 2
c79d99
c79d99
# Replace zn_CN.po with one that wasn't mis-transcoded at some point.
c79d99
grep '????????????????' po/zh_CN.po
c79d99
install -p -m 644 %{SOURCE3} po/zh_CN.po
c79d99
c79d99
%patch1 -p1 -b .inttypes
c79d99
%patch2 -p1 -b .gzdicts
c79d99
%patch4 -p1 -b .reentrant
c79d99
%patch6 -p1 -b .simplistic
c79d99
%patch7 -p1 -b .translations
c79d99
%patch8 -p1 -b .overflow
c79d99
%patch9 -p1 -b .lookup
c79d99
c79d99
mkdir cracklib-dicts
c79d99
for dict in %{SOURCE10} %{SOURCE1}
c79d99
do
c79d99
        cp -fv ${dict} cracklib-dicts/
c79d99
done
c79d99
chmod +x util/cracklib-format
c79d99
c79d99
%build
c79d99
# Use the dictionary from the build to test
c79d99
sed -i 's,util/cracklib-check <,util/cracklib-check $(DESTDIR)/$(DEFAULT_CRACKLIB_DICT) <,' Makefile.in
c79d99
%configure --with-pic \
c79d99
%if 0%{?rhel} == 0
c79d99
 --with-python \
c79d99
%else
c79d99
 --without-python \
c79d99
%endif
c79d99
 --with-default-dict=%{dictpath} --disable-static
c79d99
make -C po update-gmo
c79d99
make
c79d99
c79d99
%install
c79d99
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
c79d99
make install DESTDIR=$RPM_BUILD_ROOT 'pythondir=${pyexecdir}'
c79d99
./util/cracklib-format cracklib-dicts/* | \
c79d99
./util/cracklib-packer $RPM_BUILD_ROOT/%{dictpath}
c79d99
./util/cracklib-format $RPM_BUILD_ROOT/%{dictdir}/cracklib-small | \
c79d99
./util/cracklib-packer $RPM_BUILD_ROOT/%{dictdir}/cracklib-small
c79d99
rm -f $RPM_BUILD_ROOT/%{dictdir}/cracklib-small
c79d99
sed s,/usr/lib/cracklib_dict,%{dictpath},g lib/crack.h > $RPM_BUILD_ROOT/%{_includedir}/crack.h
c79d99
ln -s cracklib-format $RPM_BUILD_ROOT/%{_sbindir}/mkdict
c79d99
ln -s cracklib-packer $RPM_BUILD_ROOT/%{_sbindir}/packer
c79d99
touch $RPM_BUILD_ROOT/top
c79d99
c79d99
toprelpath=..
c79d99
touch $RPM_BUILD_ROOT/top
c79d99
while ! test -f $RPM_BUILD_ROOT/%{_libdir}/$toprelpath/top ; do
c79d99
	toprelpath=../$toprelpath
c79d99
done
c79d99
rm -f $RPM_BUILD_ROOT/top
c79d99
if test %{dictpath} != %{_libdir}/cracklib_dict ; then
c79d99
ln -s $toprelpath%{dictpath}.hwm $RPM_BUILD_ROOT/%{_libdir}/cracklib_dict.hwm
c79d99
ln -s $toprelpath%{dictpath}.pwd $RPM_BUILD_ROOT/%{_libdir}/cracklib_dict.pwd
c79d99
ln -s $toprelpath%{dictpath}.pwi $RPM_BUILD_ROOT/%{_libdir}/cracklib_dict.pwi
c79d99
fi
c79d99
rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/_cracklib*.*a
c79d99
rm -f $RPM_BUILD_ROOT/%{_libdir}/libcrack.la
c79d99
c79d99
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man{3,8}
c79d99
install -p -m644 debian/*.3 $RPM_BUILD_ROOT/%{_mandir}/man3/
c79d99
install -p -m644 debian/*.8 $RPM_BUILD_ROOT/%{_mandir}/man8/
c79d99
if ! test -s $RPM_BUILD_ROOT/%{_mandir}/man8/cracklib-packer.8 ; then
c79d99
    echo .so man8/cracklib-format.8 > $RPM_BUILD_ROOT/%{_mandir}/man8/cracklib-packer.8
c79d99
fi
c79d99
if ! test -s $RPM_BUILD_ROOT/%{_mandir}/man8/cracklib-unpacker.8 ; then
c79d99
    echo .so man8/cracklib-format.8 > $RPM_BUILD_ROOT/%{_mandir}/man8/cracklib-unpacker.8
c79d99
fi
c79d99
c79d99
%find_lang %{name}
c79d99
c79d99
%check
c79d99
make test DESTDIR=$RPM_BUILD_ROOT
c79d99
%if 0%{?rhel} == 0
c79d99
# We want to check that the new library is able to open the new dictionaries,
c79d99
# using the new python module.
c79d99
LD_LIBRARY_PATH=$RPM_BUILD_ROOT/%{_libdir} %{__python2} 2>&1 << EOF
c79d99
import string, sys
c79d99
# Prepend buildroot-specific variations of the python path to the python path.
c79d99
syspath2=[]
c79d99
for element in sys.path:
c79d99
	syspath2.append("$RPM_BUILD_ROOT/" + element)
c79d99
syspath2.reverse()
c79d99
for element in syspath2:
c79d99
	sys.path.insert(0,element)
c79d99
# Now actually do the test.  If we get a different result, or throw an
c79d99
# exception, the script will end with the error.
c79d99
import cracklib
c79d99
try:
c79d99
	s = cracklib.FascistCheck("cracklib", "$RPM_BUILD_ROOT/%{dictpath}")
c79d99
except ValueError, message:
c79d99
	expected = "it is based on a dictionary word"
c79d99
	if message != expected:
c79d99
		print "Got unexpected result \"%s\"," % messgae,
c79d99
		print "instead of expected value of \"%s\"." % expected
c79d99
		sys.exit(1)
c79d99
	print "Got expected result \"%s\"," % message
c79d99
	sys.exit(0)
c79d99
finally:
c79d99
	sys.exit(0)
c79d99
EOF
c79d99
%endif
c79d99
c79d99
%ldconfig_scriptlets
c79d99
c79d99
%files -f %{name}.lang
c79d99
%doc README README-WORDS NEWS README-LICENSE AUTHORS
c79d99
%{!?_licensedir:%global license %%doc}
c79d99
%license COPYING.LIB
c79d99
%{_libdir}/libcrack.so.*
c79d99
%dir %{_datadir}/cracklib
c79d99
%{_datadir}/cracklib/cracklib.magic
c79d99
%{_sbindir}/*cracklib*
c79d99
%{_mandir}/man8/*
c79d99
c79d99
%files devel
c79d99
%{_includedir}/*
c79d99
%{_libdir}/libcrack.so
c79d99
%{_mandir}/man3/*
c79d99
c79d99
%files dicts
c79d99
%{_datadir}/cracklib/pw_dict.*
c79d99
%{_datadir}/cracklib/cracklib-small.*
c79d99
%{_libdir}/cracklib_dict.*
c79d99
%{_sbindir}/mkdict
c79d99
%{_sbindir}/packer
c79d99
c79d99
%if 0%{?rhel} == 0
c79d99
%files -n python2-cracklib
c79d99
%{_libdir}/python*/site-packages/_cracklib*.so
c79d99
%{_libdir}/python*/site-packages/*.py*
c79d99
%endif
c79d99
c79d99
%changelog
c79d99
* Mon Nov 26 2018 Tomáš Mráz <tmraz@redhat.com> - 2.9.6-15
c79d99
- Fix regression in dictionary creation and lookup
c79d99
c79d99
* Tue Oct  9 2018 Tomáš Mráz <tmraz@redhat.com> - 2.9.6-14
c79d99
- Updated translations
c79d99
c79d99
* Wed Feb 21 2018 Tomáš Mráz <tmraz@redhat.com> - 2.9.6-13
c79d99
- Drop Python 2 support in RHEL
c79d99
c79d99
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.6-12
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c79d99
c79d99
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.9.6-11
c79d99
- Switch to %%ldconfig_scriptlets
c79d99
c79d99
* Wed Jan 03 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.9.6-10
c79d99
- Update Python 2 dependency declarations to new packaging standards
c79d99
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
c79d99
c79d99
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.9.6-9
c79d99
- Add Provides for the old name without %%_isa
c79d99
c79d99
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.9.6-8
c79d99
- Python 2 binary package renamed to python2-cracklib
c79d99
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
c79d99
c79d99
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.6-7
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c79d99
c79d99
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.6-6
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c79d99
c79d99
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.6-5
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c79d99
c79d99
* Thu Dec  8 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.6-4
c79d99
- fix CVE-2016-6318 - avoid overflows in GECOS handling and mangling password (#1364944)
c79d99
c79d99
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.6-3
c79d99
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
c79d99
c79d99
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.6-2
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c79d99
c79d99
* Fri Oct 23 2015 Tomáš Mráz <tmraz@redhat.com> - 2.9.6-1
c79d99
- new upstream release
c79d99
- cleanup of the word lists
c79d99
c79d99
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.1-6
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c79d99
c79d99
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.1-5
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c79d99
c79d99
* Fri Jul 11 2014 Tom Callaway <spot@fedoraproject.org> - 2.9.1-4
c79d99
- fix license handling
c79d99
c79d99
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.1-3
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c79d99
c79d99
* Wed Feb  5 2014 Tomáš Mráz <tmraz@redhat.com> - 2.9.1-2
c79d99
- move python files to libdir
c79d99
c79d99
* Mon Dec  9 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.1-1
c79d99
- new upstream release
c79d99
c79d99
* Mon Dec  2 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.0-9
c79d99
- update only .gmo files to avoid multilib conflicts (#1036305)
c79d99
c79d99
* Thu Nov 28 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.0-8
c79d99
- updated translations
c79d99
c79d99
* Thu Oct 31 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.0-7
c79d99
- do not remove any printable characters in cracklib-format
c79d99
c79d99
* Thu Oct 31 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.0-6
c79d99
- fix the broken zh_CN translation
c79d99
c79d99
* Tue Sep  3 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.0-5
c79d99
- make the simplistic check and the purging of special characters much
c79d99
  less aggressive (#1003624, #985378)
c79d99
c79d99
* Wed Aug 28 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.0-4
c79d99
- revert compression of the dictionaries as the performance penalty is too big
c79d99
c79d99
* Wed Aug 21 2013 Tomáš Mráz <tmraz@redhat.com> - 2.9.0-3
c79d99
- fix the python module to work with compressed dictionaries (#972542)
c79d99
- fix various dictionary lookup errors (#986400, #986401)
c79d99
- make the library reentrant and fix compilation warnings
c79d99
c79d99
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.0-2
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c79d99
c79d99
* Mon Jun  3 2013 Nalin Dahyabhai <nalin@redhat.com> - 2.9.0-1
c79d99
- update to 2.9.0 (#970065)
c79d99
  - adds FascistCheckUser()
c79d99
- go ahead and compress the main dictionary, since we're linking with zlib
c79d99
  anyway
c79d99
c79d99
* Tue Jan 29 2013 Nalin Dahyabhai <nalin@redhat.com> - 2.8.22-3
c79d99
- point cracklib-packer and cracklib-unpacker man pages to cracklib-format
c79d99
  (internal tooling)
c79d99
c79d99
* Wed Dec 19 2012 Nalin Dahyabhai <nalin@redhat.com> - 2.8.22-2
c79d99
- add missing buildrequires: on zlib-devel (#888876)
c79d99
c79d99
* Mon Dec 17 2012 Nalin Dahyabhai <nalin@redhat.com> - 2.8.22-1
c79d99
- update to 2.8.22 (#887461), which now returns an error instead of exiting
c79d99
  when there's a failure opening the dictionary in FascistCheck()
c79d99
c79d99
* Thu Dec 13 2012 Nalin Dahyabhai <nalin@redhat.com> - 2.8.21-1
c79d99
- update to 2.8.21
c79d99
c79d99
* Mon Dec 10 2012 Nalin Dahyabhai <nalin@redhat.com> - 2.8.20-1
c79d99
- update to 2.8.20 (#885439)
c79d99
c79d99
* Tue Nov 20 2012 Nalin Dahyabhai <nalin@redhat.com> - 2.8.19-3
c79d99
- update the copy of the debian source package to one that can currently be
c79d99
  retrieved using the URL we list for it
c79d99
c79d99
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.19-2
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c79d99
c79d99
* Fri May 18 2012 Nalin Dahyabhai <nalin@redhat.com> - 2.8.19-1
c79d99
- update to 2.8.19
c79d99
c79d99
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.18-3
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
c79d99
c79d99
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.18-2
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c79d99
c79d99
* Thu Jan 27 2011 Nalin Dahyabhai <nalin@redhat.com> - 2.8.18-1
c79d99
- update to 2.8.18
c79d99
- add man pages from Debian (#583932)
c79d99
- replace zh_CN translation (related to #627449)
c79d99
c79d99
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.8.16-4
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
c79d99
c79d99
* Sat Jul  3 2010 Dan Horák <dan[at]danny.cz> - 2.8.16-3
c79d99
- added gettext-autopoint as BR:
c79d99
c79d99
* Thu May 20 2010 Nalin Dahyabhai <nalin@redhat.com> - 2.8.16-2
c79d99
- pull in changes to the Hindi translation (#589188)
c79d99
c79d99
* Tue Apr 20 2010 Nalin Dahyabhai <nalin@redhat.com> - 2.8.16-1
c79d99
- update to 2.8.16
c79d99
c79d99
* Fri Jan 22 2010 Nalin Dahyabhai <nalin@redhat.com> - 2.8.15-3
c79d99
- add passwords derived from rockyou breach data to the dictionaries (Matthew
c79d99
  Miller, #557592)
c79d99
c79d99
* Thu Jan 21 2010 Nalin Dahyabhai <nalin@redhat.com> - 2.8.15-2
c79d99
- update license: tag
c79d99
- include license file
c79d99
c79d99
* Tue Dec  1 2009 Nalin Dahyabhai <nalin@redhat.com> - 2.8.15-1
c79d99
- update to 2.8.15
c79d99
- update cracklib-words to the current version (2008-05-07)
c79d99
- fixup URLs for various dictionary sources that we use
c79d99
- fix freeing-an-uninitialized-pointer in the python module (SF#2907102)
c79d99
- add a disttag
c79d99
c79d99
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.13-6
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
c79d99
c79d99
* Mon May 18 2009 Nalin Dahyabhai <nalin@redhat.com> - 2.8.13-5
c79d99
- add explicit dependency on gzip for the sake of cracklib-format (Daniel
c79d99
  Mach, #501278)
c79d99
c79d99
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.13-4
c79d99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c79d99
c79d99
* Thu Feb 19 2009 Nalin Dahyabhai <nalin@redhat.com> - 2.8.13-3
c79d99
- drop trailing "." from the package description for the dicts
c79d99
  subpackage (#225659)
c79d99
c79d99
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.8.13-2
c79d99
- Rebuild for Python 2.6
c79d99
c79d99
* Tue Oct 28 2008 Nalin Dahyabhai <nalin@redhat.com> - 2.8.13-1
c79d99
- update to 2.8.13, which overhauls the python bindings and revises
c79d99
  FascistCheck()'s behavior:
c79d99
  2.8.12 success: returns None, fail: returns error text, other: exceptions
c79d99
  2.8.13 success: returns candidate, fail: throws ValueError, other: exceptions
c79d99
c79d99
* Tue Oct 28 2008 Nalin Dahyabhai <nalin@redhat.com> - 2.8.12-3
c79d99
- fix errors rebuilding with libtool that's newer than the one upstream
c79d99
  has (#467364)
c79d99
c79d99
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.8.12-2
c79d99
- Autorebuild for GCC 4.3
c79d99
c79d99
* Fri Jan 25 2008 Nalin Dahyabhai <nalin@redhat.com> - 2.8.12-1
c79d99
- update to 2.8.12, which was relicensed to GPLv2
c79d99
- package the now-bundled cracklib-small dictionary in cracklib-dicts
c79d99
c79d99
* Tue Aug 21 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.10-3
c79d99
- rebuild
c79d99
c79d99
* Mon Jul 23 2007 Nalin Dahyabhai <nalin@redhat.com>
c79d99
- add a %%check script to catch things like #249210
c79d99
c79d99
* Mon Jul 23 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.10-2
c79d99
- work around non-executable util/cracklib-format giving us empty/garbage
c79d99
  dictionaries (#249210)
c79d99
c79d99
* Thu Jul 19 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.10-1
c79d99
- update to 2.8.10
c79d99
c79d99
* Wed Jun 20 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-11
c79d99
- improve reports of out-of-memory exceptions so that they don't include a
c79d99
  bogus filename
c79d99
- improve reports of file-missing exceptions from the python module so that
c79d99
  they give the right filename (#225858)
c79d99
c79d99
* Mon Mar 12 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-10
c79d99
- explicitly include required headers from <packer.h> (#228698)
c79d99
- attempt to provide doc strings in the python module
c79d99
c79d99
* Mon Feb 12 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-9
c79d99
- drop final "." from summaries (Jef Spaleta, #225659)
c79d99
- drop static library from -devel subpackage (Jef Spaleta, #225659)
c79d99
- note that the most recently-added wordlist came from bugzilla (#225659)
c79d99
- remove explicit dependency on gzip, as it's implicit (Jef Spaleta, #225659)
c79d99
- convert %%triggerpostun to not use a shell as an interpreter (#225659)
c79d99
c79d99
* Wed Jan 31 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-8
c79d99
- add word list from attachment #126053 (#185314)
c79d99
c79d99
* Thu Jan 25 2007 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-7
c79d99
- fix check for the existence of dictionaries when the caller specifies a
c79d99
  location (#224347, upstream #1644628)
c79d99
c79d99
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 2.8.9-6
c79d99
- rebuild against python 2.5
c79d99
c79d99
* Sun Oct 29 2006 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-5
c79d99
- split out cracklib-python (#203327)
c79d99
c79d99
* Sun Oct 29 2006 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-4
c79d99
- split out cracklib-devel (#203569)
c79d99
c79d99
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.8.9-3.1
c79d99
- rebuild
c79d99
c79d99
* Mon Jun 12 2006 Jesse Keating <jkeating@redhat.com> - 2.8.9-3
c79d99
- Add missing br, automake, libtool (#194738)
c79d99
c79d99
* Tue Apr 25 2006 Nalin Dahyabhai <nalin@redhat.com> - 2.8.9-2
c79d99
- update to 2.8.9
c79d99
- only create compat symlinks for the dictionaries if we aren't installing
c79d99
  them into the old locations
c79d99
c79d99
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.8.6-1.2.1
c79d99
- bump again for double-long bug on ppc(64)
c79d99
c79d99
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.8.6-1.2
c79d99
- rebuilt for new gcc4.1 snapshot and glibc changes
c79d99
c79d99
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
c79d99
- rebuilt
c79d99
c79d99
* Mon Nov  7 2005 Nalin Dahyabhai <nalin@redhat.com> 2.8.6-1
c79d99
- update to 2.8.6
c79d99
- remove .la file (#172632)
c79d99
c79d99
* Wed Sep 28 2005 Nalin Dahyabhai <nalin@redhat.com> 2.8.5-2
c79d99
- update to 2.8.5
c79d99
c79d99
* Tue Sep 27 2005 Nalin Dahyabhai <nalin@redhat.com> 2.8.4-1
c79d99
- update to 2.8.4
c79d99
- build python module
c79d99
c79d99
* Fri May 13 2005 Nalin Dahyabhai <nalin@redhat.com> 2.8.3-1
c79d99
- update to 2.8.3
c79d99
c79d99
* Thu Mar 17 2005 Nalin Dahyabhai <nalin@redhat.com> 2.8.2-1
c79d99
- update to 2.8.2
c79d99
c79d99
* Wed Mar 16 2005 Nalin Dahyabhai <nalin@redhat.com> 2.8.1-1
c79d99
- update to 2.8.1
c79d99
  - moves dictionary to new default location under %%{_datadir} -- the
c79d99
    dictionary format is the same across all architectures
c79d99
  - renames "packer" to "cracklib-packer"
c79d99
- conflict with cracklib-dicts < 2.8, where the on-disk format was not
c79d99
  compatible on 64-bit arches due to now-fixed cleanliness bugs
c79d99
- move binaries for manipulating and checking words against dictionaries
c79d99
  from -dicts into the main package
c79d99
c79d99
* Mon Jan  3 2005 Nalin Dahyabhai <nalin@redhat.com> 2.7-30
c79d99
- rebuild
c79d99
c79d99
* Mon Jan  3 2005 Nalin Dahyabhai <nalin@redhat.com> 2.7-29
c79d99
- correctly build on 64-bit systems (part of #143417)
c79d99
- patch so that 32- and 64-bit libcrack can read dictionaries which were
c79d99
  incorrectly generated on 64-bit systems of the same endianness (more #143417)
c79d99
- include a sample cracklib magic file
c79d99
- stop using /usr/dict/* when building the dictionary
c79d99
- list words as a build requirement, which it is, instead of a run-time
c79d99
  requirement
c79d99
- provide a virtual arch-specific dep in cracklib-dicts, require it in
c79d99
  cracklib (part of #143417)
c79d99
c79d99
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
c79d99
- rebuilt
c79d99
c79d99
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
c79d99
- rebuilt
c79d99
c79d99
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
c79d99
- rebuilt
c79d99
c79d99
* Wed Feb  4 2004 Nalin Dahyabhai <nalin@redhat.com> 2.7-26
c79d99
- update URL (previous page moved) (#114894)
c79d99
c79d99
* Fri Jan 30 2004 Nalin Dahyabhai <nalin@redhat.com> 2.7-25
c79d99
- fix ldconfig invocation in trigger for older versions which included the
c79d99
  soname symlink (#114620)
c79d99
c79d99
* Mon Dec  1 2003 Nalin Dahyabhai <nalin@redhat.com> 2.7-24
c79d99
- include packer.h for reading dictionaries directly, since we already include
c79d99
  packer in the -dicts subpackage (#68339)
c79d99
- don't include the soname symlink in the package, let ldconfig do its job
c79d99
c79d99
* Wed Jun 18 2003 Nalin Dahyabhai <nalin@redhat.com> 2.7-23
c79d99
- rebuild
c79d99
c79d99
* Mon Jun 16 2003 Nalin Dahyabhai <nalin@redhat.com> 2.7-22
c79d99
- rebuild
c79d99
c79d99
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
c79d99
- rebuilt
c79d99
c79d99
* Wed Apr 30 2003 Nalin Dahyabhai <nalin@redhat.com>
c79d99
- update URL
c79d99
c79d99
* Tue Feb 04 2003 Florian La Roche <Florian.LaRoche@redhat.de>
c79d99
- add symlink to shared libs
c79d99
c79d99
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
c79d99
- rebuilt
c79d99
c79d99
* Wed Sep 25 2002 Nalin Dahyabhai <nalin@redhat.com> 2.7-19
c79d99
- fix for builds on multilib systems (set DICTPATH properly)
c79d99
c79d99
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
c79d99
- automated rebuild
c79d99
c79d99
* Sun May 26 2002 Tim Powers <timp@redhat.com>
c79d99
- automated rebuild
c79d99
c79d99
* Thu May  9 2002 Nalin Dahyabhai <nalin@redhat.com> 2.7-16
c79d99
- rebuild in new environment
c79d99
c79d99
* Fri Feb 22 2002 Nalin Dahyabhai <nalin@redhat.com> 2.7-15
c79d99
- rebuild
c79d99
c79d99
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
c79d99
- automated rebuild
c79d99
c79d99
* Tue Oct  2 2001 Nalin Dahyabhai <nalin@redhat.com> 2.7-13
c79d99
- use getpwuid_r instead of getpwuid
c79d99
c79d99
* Fri Aug  3 2001 Nalin Dahyabhai <nalin@redhat.com> 2.7-12
c79d99
- remove cruft that ldconfig already knows how to manage
c79d99
- don't explicitly strip anything -- the brp setup decides that
c79d99
- tweak the header so that it can be used in C++ (#46685)
c79d99
- buildprereq the words package
c79d99
c79d99
* Tue Jun 26 2001 Florian La Roche <Florian.LaRoche@redhat.de>
c79d99
- add link from library major version number
c79d99
c79d99
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
c79d99
- Bump release + rebuild.
c79d99
c79d99
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
c79d99
- automatic rebuild
c79d99
c79d99
* Tue Jun 27 2000 Nalin Dahyabhai <nalin@redhat.com>
c79d99
- FHS fixes
c79d99
- fix undeclared function warnings from the new compiler
c79d99
- fix URL
c79d99
c79d99
* Fri Apr 07 2000 Trond Eivind Glomsrød <teg@redhat.com>
c79d99
- switched to use /usr/share/dict/words
c79d99
c79d99
* Tue Apr 06 1999 Preston Brown <pbrown@redhat.com>
c79d99
- strip binaries
c79d99
c79d99
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
c79d99
- auto rebuild in the new build environment (release 4)
c79d99
c79d99
* Wed Jan 06 1999 Cristian Gafton <gafton@redhat.com>
c79d99
- build for glibc 2.1
c79d99
c79d99
* Sat May 09 1998 Prospector System <bugs@redhat.com>
c79d99
- translations modified for de, fr, tr
c79d99
c79d99
* Tue Mar 10 1998 Cristian Gafton <gafton@redhat.com>
c79d99
- updated to 2.7
c79d99
- build shared libraries
c79d99
c79d99
* Mon Nov 03 1997 Donnie Barnes <djb@redhat.com>
c79d99
- added -fPIC
c79d99
c79d99
* Mon Oct 13 1997 Donnie Barnes <djb@redhat.com>
c79d99
- basic spec file cleanups
c79d99
c79d99
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
c79d99
- built against glibc