aspell-is (0.51-0-4) debian-dir only changes

Summary

 debian/aspell-is.info-aspell |    4 ++++
 debian/changelog             |   30 ++++++++++++++++++++++++++++++
 debian/compat                |    1 +
 debian/control               |   14 ++++++++++++++
 debian/copyright             |   30 ++++++++++++++++++++++++++++++
 debian/dirs                  |    3 +++
 debian/docs                  |    1 +
 debian/install               |    3 +++
 debian/rules                 |   18 ++++++++++++++++++
 9 files changed, 104 insertions(+)

    
download this patch

Patch contents

--- aspell-is-0.51-0.orig/debian/dirs
+++ aspell-is-0.51-0/debian/dirs
@@ -0,0 +1,3 @@
+usr/lib/aspell
+usr/share/aspell
+var/lib/aspell
--- aspell-is-0.51-0.orig/debian/install
+++ aspell-is-0.51-0/debian/install
@@ -0,0 +1,3 @@
+*.multi         usr/lib/aspell
+*.alias         usr/lib/aspell
+*.dat           usr/lib/aspell
--- aspell-is-0.51-0.orig/debian/changelog
+++ aspell-is-0.51-0/debian/changelog
@@ -0,0 +1,30 @@
+aspell-is (0.51-0-4) unstable; urgency=low
+
+  * Converted to use aspell-autobuildhash to build the dictionary hashes
+    at install time, thus allowing the package to become Arch: all.
+  * debian/control: removed the build-dependency on aspell since it's no
+    longer needed
+  * Added support for dictionary registration in dictionaries-common
+
+ -- Brian Nelson <pyro@debian.org>  Thu, 21 Jul 2005 22:03:31 -0700
+
+aspell-is (0.51-0-3) unstable; urgency=low
+
+  * Added a versioned dependency on libaspell15 (>> 0.60), since this
+    dictionary will not work with earlier libaspell15 versions.
+
+ -- Brian Nelson <pyro@debian.org>  Tue, 22 Feb 2005 17:34:31 -0800
+
+aspell-is (0.51-0-2) unstable; urgency=low
+
+  * debian/control: provide aspell6-dictionary, and build-depend on aspell
+    (>> 0.60).  This transitions the package to the new Aspell 0.60.
+
+ -- Brian Nelson <pyro@debian.org>  Wed, 16 Feb 2005 18:48:31 -0800
+
+aspell-is (0.51-0-1) unstable; urgency=low
+
+  * Initial release (Closes: #237738)
+
+ -- Brian Nelson <pyro@debian.org>  Fri, 12 Mar 2004 22:06:09 -0800
+
--- aspell-is-0.51-0.orig/debian/compat
+++ aspell-is-0.51-0/debian/compat
@@ -0,0 +1 @@
+4
--- aspell-is-0.51-0.orig/debian/control
+++ aspell-is-0.51-0/debian/control
@@ -0,0 +1,14 @@
+Source: aspell-is
+Section: text
+Priority: optional
+Maintainer: Brian Nelson <pyro@debian.org>
+Build-Depends: debhelper (>> 4.0.0), cdbs (>= 0.4.0), dictionaries-common-dev (>= 0.9.1)
+Standards-Version: 3.6.2
+
+Package: aspell-is
+Architecture: all
+Depends: aspell (>= 0.60.3-2), dictionaries-common (>= 0.49.2)
+Provides: aspell-dictionary
+Description: Icelandic dictionary for GNU Aspell
+ This package contains all the required files to add support for the
+ Icelandic language to the GNU Aspell spell checker.
--- aspell-is-0.51-0.orig/debian/aspell-is.info-aspell
+++ aspell-is-0.51-0/debian/aspell-is.info-aspell
@@ -0,0 +1,4 @@
+Language: icelandic (Icelandic)
+Hash-Name: is
+Emacsen-Name: icelandic
+Coding-System: iso-8859-1
--- aspell-is-0.51-0.orig/debian/copyright
+++ aspell-is-0.51-0/debian/copyright
@@ -0,0 +1,30 @@
+This package was debianized by Brian Nelson <pyro@debian.org> on
+Fri, 12 Mar 2004 22:14:46 -0800.
+
+It was downloaded from ftp://ftp.gnu.org/gnu/aspell/dict/is/
+
+The upstream author is Elías Halldór Ágústsson <elias@hi.is> and The
+University of Iceland.
+
+Copyright:
+
+istr: The Big Icelandic Wordlist
+Copyright © 1992, 2003 The University of Iceland
+<adm@hi.is>.
+
+    This dictionary is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This dictionary is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this dictionary; if not, write to the Free Software
+    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
--- aspell-is-0.51-0.orig/debian/docs
+++ aspell-is-0.51-0/debian/docs
@@ -0,0 +1 @@
+README
--- aspell-is-0.51-0.orig/debian/rules
+++ aspell-is-0.51-0/debian/rules
@@ -0,0 +1,18 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+DICT_LANG := is
+
+install/aspell-$(DICT_LANG)::
+	for f in *.cwl; do \
+	    gzip -9 -c "$$f" > "$(DEB_DESTDIR)/usr/share/aspell/"$$f".gz"; \
+	    WL=`echo $$f | sed 's/\.cwl$$//'`; \
+	    touch "$(DEB_DESTDIR)/var/lib/aspell/$$WL.rws"; \
+	    dh_link "var/lib/aspell/$$WL.rws" "usr/lib/aspell/$$WL.rws"; \
+	    echo "$$WL" >> "$(DEB_DESTDIR)/usr/share/aspell/$(DICT_LANG).contents"; \
+	done
+
+	touch $(DEB_DESTDIR)/var/lib/aspell/$(DICT_LANG).compat
+
+	installdeb-aspell