[dutch-svn] r88 - in trunk: aspell debian

kroeckx at alioth.debian.org kroeckx at alioth.debian.org
Sun Jun 10 11:54:44 UTC 2007


Author: kroeckx
Date: 2007-06-10 11:54:44 +0000 (Sun, 10 Jun 2007)
New Revision: 88

Modified:
   trunk/aspell/unsupported.list
   trunk/debian/rules
Log:
Fix words with space at the end, and remove words with a / in it.


Modified: trunk/aspell/unsupported.list
===================================================================
--- trunk/aspell/unsupported.list	2007-06-10 10:05:53 UTC (rev 87)
+++ trunk/aspell/unsupported.list	2007-06-10 11:54:44 UTC (rev 88)
@@ -953,7 +953,6 @@
 a.u.b.
 aan den lijve
 aan weerszijden
-aannemend 
 aanw. vnw.
 abortus provocatus
 accent aigu
@@ -1137,7 +1136,6 @@
 eau de cologne
 eau de toilette
 eau de toiletteje
-eeg's 
 een derde
 een tiende
 een vierde
@@ -1211,7 +1209,6 @@
 gas geven
 gebroeders Grimm
 gelijk op
-gemeentenamen 
 gemengd dubbel
 gentleman's agreement
 gepokt en gemazeld
@@ -1355,7 +1352,6 @@
 karnemelkse pap
 kartuizers-
 kijk- en luistergeld
-kinderlevens 
 kinds zijn
 klein houden
 kloveniers-
@@ -1557,10 +1553,7 @@
 pro bono
 pro forma
 pro memorie
-productnamen 
 prof.
-professionelere 
-promotiecommissies 
 pseudo-
 pseudologia fantastica
 public relations
@@ -1628,7 +1621,6 @@
 stap voor stap
 state of the art
 stenen gooien
-stotterend 
 stroomaf- en stroomopwaarts
 stroomop- en stroomafwaarts
 studium generale
@@ -1657,7 +1649,6 @@
 te pas en te onpas
 te stade
 te werk gaan
-telefonieplatformen 
 tempo doeloe
 ten aanschouwen van
 ten algemenen nutte
@@ -1743,7 +1734,6 @@
 uit jagen
 uit kunnen
 uit willen
-uiteenspatte 
 uitstaans hebben met
 upper ten
 ups en downs

Modified: trunk/debian/rules
===================================================================
--- trunk/debian/rules	2007-06-10 10:05:53 UTC (rev 87)
+++ trunk/debian/rules	2007-06-10 11:54:44 UTC (rev 88)
@@ -34,9 +34,11 @@
 		sed -e 's/\r//' $$f | iconv -f latin1 -t utf8 >> \
 			$(UTF8OUTPUT); \
 	done
-	# Sort and remove duplicates
-	sort $(UTF8OUTPUT) | uniq > tmp.txt
-	mv tmp.txt $(UTF8OUTPUT)
+	# Remove spaces at the end of words, sort and remove duplicates.
+	sed -e 's/ $$//' $(UTF8OUTPUT) | sort | uniq > tmp.txt
+	# Remove words with a '/' in it, since they can't be munched.
+	grep -v '/' tmp.txt > $(UTF8OUTPUT)
+	rm tmp.txt
 	# Convert to latin1.  
 	# The list uses a subscript 2 for "CO2", convert it to a normal 2.
 	sed -e 's/^CO\xE2\x82\x82/CO2/' $(UTF8OUTPUT) | \




More information about the pkg-dutch-commit mailing list