Your message dated Fri, 16 Feb 2018 09:00:10 +0000
with message-id <[email protected]>
and subject line Bug#890293: fixed in eo-spell 2.1.2000.02.25-55
has caused the Debian Bug report #890293,
regarding [PATCH] New binary package: wesperanto
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
890293: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=890293
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: eo-spell
Version: 2.1.2000.02.25-54
Severity: wishlist

Hello! For some spell checking programs, like built-in Vim one, the most
simple way to setup spell-checking is to have raw, one word per line
list of correct words. It seems to be established practice to name
binary packages in format 'w{language}', like wamerican, wnorwegian or
wukrainian.

Attached debdiff adds new binary package 'wesperanto' to src:eo-spell. I
know, that it is not perfect, since it should also 'Provide: wordlist',
but, in my defense, wnorwegian also does not provide wordlist.

This patch creates list in utf-8 encoding (obliviously), but may it be
useful to have in addition, 'wesperanto-cx'?

Thank you for your attention, and please consider applying patch.
diffstat for eo-spell-2.1.2000.02.25 eo-spell-2.1.2000.02.25

 changelog          |    7 +++++++
 control            |    9 +++++++++
 cx2utf8.sed        |   13 +++++++++++++
 rules              |    3 +++
 wesperanto.install |    1 +
 5 files changed, 33 insertions(+)

diff -Nru eo-spell-2.1.2000.02.25/debian/changelog eo-spell-2.1.2000.02.25/debian/changelog
--- eo-spell-2.1.2000.02.25/debian/changelog	2015-09-22 13:16:05.000000000 +0300
+++ eo-spell-2.1.2000.02.25/debian/changelog	2018-01-24 17:52:43.000000000 +0300
@@ -1,3 +1,10 @@
+eo-spell (2.1.2000.02.25-55) unstable; urgency=low
+
+  * New binary package: wesperanto, providing plain list of esperanto words.
+    + Thanks: Dmitry Bogatov <[email protected]>
+
+ -- Agustin Martin Domingo <[email protected]>  Wed, 24 Jan 2018 17:52:43 +0300
+
 eo-spell (2.1.2000.02.25-54) unstable; urgency=medium
 
   * debian/control::myspell-eo: Use Conflicts where needed.
diff -Nru eo-spell-2.1.2000.02.25/debian/control eo-spell-2.1.2000.02.25/debian/control
--- eo-spell-2.1.2000.02.25/debian/control	2015-09-22 13:13:55.000000000 +0300
+++ eo-spell-2.1.2000.02.25/debian/control	2018-01-24 17:52:43.000000000 +0300
@@ -24,6 +24,15 @@
  Plena Ilustrita Vortaro, with additional country/language names.  It
  accepts Latin-3, 'cx' and '^c' forms.
 
+Package: wesperanto
+Architecture: all
+Depends: ${misc:Depends}
+Description: Esperanto dictionary words for /usr/share/dict
+ This package provides the file /usr/share/dict/esperanto,
+ containing a list of Esperanto words in utf-8 encoding. 
+ This list can be used by spelling checkers, and by programs
+ such as look(1).
+
 Package: myspell-eo
 Architecture: all
 Depends: ${misc:Depends},
diff -Nru eo-spell-2.1.2000.02.25/debian/cx2utf8.sed eo-spell-2.1.2000.02.25/debian/cx2utf8.sed
--- eo-spell-2.1.2000.02.25/debian/cx2utf8.sed	1970-01-01 03:00:00.000000000 +0300
+++ eo-spell-2.1.2000.02.25/debian/cx2utf8.sed	2018-01-24 17:52:43.000000000 +0300
@@ -0,0 +1,13 @@
+#/usr/bin/sed -f
+s/cx/ĉ/g
+s/hx/ĥ/g
+s/jx/ĵ/g
+s/sx/ŝ/g
+s/ux/ŭ/g
+s/gx/ĝ/g
+s/Cx/Ĉ/g
+s/Hx/Ĥ/g
+s/Jx/Ĵ/g
+s/Sx/Ŝ/g
+s/Ux/Ŭ/g
+s/Gx/Ĝ/g
diff -Nru eo-spell-2.1.2000.02.25/debian/rules eo-spell-2.1.2000.02.25/debian/rules
--- eo-spell-2.1.2000.02.25/debian/rules	2015-06-18 18:10:50.000000000 +0300
+++ eo-spell-2.1.2000.02.25/debian/rules	2018-01-24 17:52:43.000000000 +0300
@@ -80,6 +80,9 @@
 	cat kune.txt | ispell -d ./eo -e | tr -s ' ' '\n' | sort -u > $(TMP_BUILD)/eo-cx.wl
 	cat $(TMP_BUILD)/eo-cx.wl | grep -v -e "-'$$" | prezip -s -c | gzip -9n -c > $(TMP_BUILD)/eo-cx.cwl.gz
 	install -m 0644 debian/aspell/eo-cx.dat debian/aspell/eo-cx.multi $(TMP_BUILD)
+	unmunch $(TMP_BUILD)/eo.dic $(TMP_BUILD)/eo.aff \
+		| iconv -f latin3 -t utf-8 \
+		| sed -f debian/cx2utf8.sed > $(TMP_BUILD)/esperanto
 
 	touch $@
 
diff -Nru eo-spell-2.1.2000.02.25/debian/wesperanto.install eo-spell-2.1.2000.02.25/debian/wesperanto.install
--- eo-spell-2.1.2000.02.25/debian/wesperanto.install	1970-01-01 03:00:00.000000000 +0300
+++ eo-spell-2.1.2000.02.25/debian/wesperanto.install	2018-01-24 17:52:43.000000000 +0300
@@ -0,0 +1 @@
+esperanto /usr/share/dict

--- End Message ---
--- Begin Message ---
Source: eo-spell
Source-Version: 2.1.2000.02.25-55

We believe that the bug you reported is fixed in the latest version of
eo-spell, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Agustin Martin Domingo <[email protected]> (supplier of updated eo-spell 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Wed, 14 Feb 2018 19:15:02 +0100
Source: eo-spell
Binary: iesperanto wesperanto myspell-eo aspell-eo aspell-eo-cx7
Architecture: source all
Version: 2.1.2000.02.25-55
Distribution: unstable
Urgency: low
Maintainer: Agustin Martin Domingo <[email protected]>
Changed-By: Agustin Martin Domingo <[email protected]>
Description:
 aspell-eo  - Esperanto dictionary for aspell
 aspell-eo-cx7 - Esperanto dictionary for aspell, "cx" 7bit encoding
 iesperanto - Esperanto dictionary for ispell
 myspell-eo - Esperanto dictionary for myspell
 wesperanto - Esperanto dictionary words for /usr/share/dict
Closes: 890293
Changes:
 eo-spell (2.1.2000.02.25-55) unstable; urgency=low
 .
   * New binary package: wesperanto, providing Esperanto plain wordlist.
     Thanks: Dmitry Bogatov <[email protected]> (Closes: #890293).
   * debian/control:
     - Change Vcs-* for salsa migration.
     - Bump Standards-Version. No changes required.
   * Bump debhelper compat level to 11.
   * debian/copyright: Point to actual GPL-2 license.
Checksums-Sha1:
 9581d21c33f887dd5781b95c786b2685b89cec6c 2212 eo-spell_2.1.2000.02.25-55.dsc
 3d1e9fba8c663fabbc786bd3bc5671c821b7ad60 10144 
eo-spell_2.1.2000.02.25-55.debian.tar.xz
 d7e880f10b7087f499a58d906ac8b9f8b041a022 197828 
aspell-eo-cx7_2.1.2000.02.25-55_all.deb
 1c31fd6dc910dad6883c5ac3afc252d191a55cc2 85856 
aspell-eo_2.1.2000.02.25-55_all.deb
 b1c6c5be745b685ec12fe14041edfbe7e977002d 7116 
eo-spell_2.1.2000.02.25-55_amd64.buildinfo
 e92f06aef780a8cf2fcc790722d0f46aac2c7638 102764 
iesperanto_2.1.2000.02.25-55_all.deb
 6d47be9a86948bf30a979af71d0415b0cd93fbda 87380 
myspell-eo_2.1.2000.02.25-55_all.deb
 57d60c71781a57c67181b460a3c836a96f96cb88 1329196 
wesperanto_2.1.2000.02.25-55_all.deb
Checksums-Sha256:
 4b9b6b8e285285c36d7f9ad25e462c8bec96326b2b619dc681a172d3d0840ec5 2212 
eo-spell_2.1.2000.02.25-55.dsc
 de2ee1288ef97484cf0576237fc8a15aa34979d50e5341d93222f2bfa295dccf 10144 
eo-spell_2.1.2000.02.25-55.debian.tar.xz
 8b0e257ebda6baed621f0daa4fbd1794426a9fb7d20d6179415648b781e593f3 197828 
aspell-eo-cx7_2.1.2000.02.25-55_all.deb
 85c349a32608ff48cccf9e9390bfe08fdd5587f12f881c5fe3d0d0ac47144b28 85856 
aspell-eo_2.1.2000.02.25-55_all.deb
 11e9e3f7f5df318f54cdc5b28b4d79224ed2e155a48f065f7b5e3142113e7041 7116 
eo-spell_2.1.2000.02.25-55_amd64.buildinfo
 a205ebf18b4c067f8550bc5e748a19cab0d43c53ef020ddecb14209326cd580c 102764 
iesperanto_2.1.2000.02.25-55_all.deb
 7eb70593fb3016571dc37f821ece1fb880063a14ac0ee195c029672cf8594cf5 87380 
myspell-eo_2.1.2000.02.25-55_all.deb
 1f4c2b8beeafca26221adffad446e64a37ee76be2be6f4ad7ae22b3ca878d778 1329196 
wesperanto_2.1.2000.02.25-55_all.deb
Files:
 cd4417526e99e56df5a8608e58e375bc 2212 text optional 
eo-spell_2.1.2000.02.25-55.dsc
 30412d82661ba616c0b2754a89b617c7 10144 text optional 
eo-spell_2.1.2000.02.25-55.debian.tar.xz
 9406527c306c15bde840b499b45520df 197828 text optional 
aspell-eo-cx7_2.1.2000.02.25-55_all.deb
 8d7430928760f3edfef104835828275c 85856 text optional 
aspell-eo_2.1.2000.02.25-55_all.deb
 d312777a92c1c227fb00e367b7b70d6f 7116 text optional 
eo-spell_2.1.2000.02.25-55_amd64.buildinfo
 b2d4fab74489b09c72199c8640e1eb27 102764 text optional 
iesperanto_2.1.2000.02.25-55_all.deb
 038322b3dbe0fa17c448db695ecd6b74 87380 text optional 
myspell-eo_2.1.2000.02.25-55_all.deb
 ea6cf6531be0eb974c8253c473efc360 1329196 text optional 
wesperanto_2.1.2000.02.25-55_all.deb

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEEehey7p+gYd346SEFJrCLeiggvwFAlqEi1sACgkQFJrCLeig
gvwvSQ/+NsOECAC/d9bfa4hoRl5on0Jxd/KejtJj96rUWgwKft0FpPaUZInQ9VKG
MvXLi08wvXxr++4/9Xoyf/XoLHsrv9mQjkBq+qKaS0nAq2pPBEs5uHo03PD3Om4P
RiCztV6DnulDYuX66puX+s/yM1xMXw0lBwmSLXeFaSnVKErZ2xdwIkO+49lmfQ/g
GZcF5F6eUvmE2iK+sF9Rn1XbKDsDPhIkBWI7j7pSnsiUNOG5tNjReW8hQi9gdVSL
cWK2+izElZc98iQ6AzfKt8fDLAsl7GPcGgS6SNw3jc+9VrK1yLLXwdH/Nx7BA9aR
5NORbY2ltuNfbfqueiqYv5KyYVpQbVL0zwv5XHH9amc89R7lBFc+D2gUdwDqJul8
5so8F5uEEe2K6bPHVo66SReVyixb6YFPWoXlyEvXz9LldaaucXI0sGL8slbhdfFn
cq03lLLvl8zJ9BVdBaQrqgHAFlaNczd1KbxSoFAAYgaE1bqmTSzFO1qaQhCzG8Pn
HqL3M87vy4aHJJS9+yE5YSHkAx458URx+Vs3J5+Clr2JWNI9GPVr7jmuIVBcgcU4
Xb+/dgyuaTp9xDrNgA3gJ3MD0TZIcYCL4AV2PkK0B4wbnqxmlIc8PFoqmJxTX/no
y2peDHAYoX/vmRTQo8AMi2A4xcaBNwhSpsiEoQWNJLS3Fd0RTt8=
=ngll
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to