- fix regex that removes possessives ('s)
This commit is contained in:
parent
9f74d77397
commit
b0ede55742
@ -1,7 +1,7 @@
|
|||||||
Summary: A dictionary of English words for the /usr/share/dict directory.
|
Summary: A dictionary of English words for the /usr/share/dict directory.
|
||||||
Name: words
|
Name: words
|
||||||
Version: 3.0
|
Version: 3.0
|
||||||
Release: 9
|
Release: 10%{?dist}
|
||||||
License: public domain
|
License: public domain
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
Source: http://www.dcs.shef.ac.uk/research/ilash/Moby/mwords.tar.Z
|
Source: http://www.dcs.shef.ac.uk/research/ilash/Moby/mwords.tar.Z
|
||||||
@ -22,7 +22,7 @@ passwords.
|
|||||||
%build
|
%build
|
||||||
cd mwords
|
cd mwords
|
||||||
dos2unix -o *; chmod a+r *
|
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
|
cat <<EOF >license.txt
|
||||||
On June 1, 1996 Grady Ward announced that the fruits of
|
On June 1, 1996 Grady Ward announced that the fruits of
|
||||||
@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
/usr/share/dict/words
|
/usr/share/dict/words
|
||||||
|
|
||||||
%changelog
|
%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
|
* Wed Jul 19 2006 Karel Zak <kzak@redhat.com> - 3.0-9
|
||||||
- rebuild
|
- rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user