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