- fix regex that removes possessives ('s)

This commit is contained in:
kzak 2007-01-24 11:34:31 +00:00
parent 9f74d77397
commit b0ede55742

View File

@ -1,7 +1,7 @@
Summary: A dictionary of English words for the /usr/share/dict directory.
Name: words
Version: 3.0
Release: 9
Release: 10%{?dist}
License: public domain
Group: System Environment/Libraries
Source: http://www.dcs.shef.ac.uk/research/ilash/Moby/mwords.tar.Z
@ -22,7 +22,7 @@ passwords.
%build
cd mwords
dos2unix -o *; chmod a+r *
cat [1-9]*.??? | fgrep -v \'s | egrep "^[[:alnum:]'&!,./-]+$" | sort --ignore-case --dictionary-order | uniq > moby
cat [1-9]*.??? | egrep -v "'s$" | egrep "^[[:alnum:]'&!,./-]+$" | sort --ignore-case --dictionary-order | uniq > moby
cat <<EOF >license.txt
On June 1, 1996 Grady Ward announced that the fruits of
@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
/usr/share/dict/words
%changelog
* Wed Jan 24 2007 Karel Zak <kzak@redhat.com> - 3.0-10
- fix regex that removes possessives ('s)
* Wed Jul 19 2006 Karel Zak <kzak@redhat.com> - 3.0-9
- rebuild