aspell-cs (0.0.20040614.1-2) debian-dir only changes

Summary

 debian/aspell-cs.dirs        |    3 +
 debian/aspell-cs.docs        |    1 
 debian/aspell-cs.info-aspell |    9 +++++
 debian/aspell-cs.install     |    3 +
 debian/changelog             |   22 ++++++++++++
 debian/compat                |    1 
 debian/control               |   16 +++++++++
 debian/copyright             |   30 +++++++++++++++++
 debian/rules                 |   75 +++++++++++++++++++++++++++++++++++++++++++
 9 files changed, 160 insertions(+)

    
download this patch

Patch contents

--- aspell-cs-0.0.20040614.1.orig/debian/aspell-cs.dirs
+++ aspell-cs-0.0.20040614.1/debian/aspell-cs.dirs
@@ -0,0 +1,3 @@
+usr/lib/aspell
+usr/share/aspell
+var/lib/aspell
--- aspell-cs-0.0.20040614.1.orig/debian/rules
+++ aspell-cs-0.0.20040614.1/debian/rules
@@ -0,0 +1,75 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+DEB_DESTDIR = debian/aspell-cs
+DICT_LANG = cs
+
+config.status: configure
+	dh_testdir
+
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	dh_clean  --exclude ./doc/README.orig
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k  --exclude ./doc/README.orig
+	dh_installdirs
+	dh_install
+	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
+
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs 
+	dh_installdocs
+	dh_installexamples
+#	dh_install
+#	dh_installpam
+#	dh_installmime
+#	dh_installinfo
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+# Build architecture-dependent files here.
+binary-arch: build install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 
--- aspell-cs-0.0.20040614.1.orig/debian/control
+++ aspell-cs-0.0.20040614.1/debian/control
@@ -0,0 +1,16 @@
+Source: aspell-cs
+Section: text
+Priority: optional
+Maintainer: Miroslav Kure <kurem@debian.cz>
+Uploaders: Ondřej Surý <ondrej@debian.org>
+Build-Depends: debhelper (>= 4.0.0), dictionaries-common-dev (>= 0.9.1)
+Standards-Version: 3.7.3
+
+Package: aspell-cs
+Architecture: all
+Depends: aspell (>= 0.60.3-3), dictionaries-common (>= 0.49.2)
+Provides: aspell-dictionary
+Description: Czech dictionary for GNU Aspell
+ This package contains all the required files to add support for the
+ Czech language to the GNU Aspell spell checker.
+
--- aspell-cs-0.0.20040614.1.orig/debian/copyright
+++ aspell-cs-0.0.20040614.1/debian/copyright
@@ -0,0 +1,30 @@
+This package was debianized by Miroslav Kure <kurem@debian.cz> on
+Sun, 26 Mar 2006 12:14:23 +0200.
+
+It was downloaded from ftp://ftp.gnu.org/gnu/aspell/dict/cs/
+
+Upstream Authors: Petr Kolar <Petr.Kolar@vslib.cz>,
+                  Tomas Cermak <Cermak@fsv.cvut.cz>.
+
+Copyright: 1998-2004 Petr Kolar <Petr.Kolar@vslib.cz>
+           1996-1997 Tomas Cermak <Cermak@fsv.cvut.cz>
+
+UTF-8 support Copyright (C) 2003 Jiri Hladky <hladky.jiri@seznam.cz>
+
+License:
+
+   This package is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License version 2 as
+   published by the Free Software Foundation;
+
+   This package 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 package; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
--- aspell-cs-0.0.20040614.1.orig/debian/aspell-cs.docs
+++ aspell-cs-0.0.20040614.1/debian/aspell-cs.docs
@@ -0,0 +1 @@
+README
--- aspell-cs-0.0.20040614.1.orig/debian/aspell-cs.install
+++ aspell-cs-0.0.20040614.1/debian/aspell-cs.install
@@ -0,0 +1,3 @@
+*.multi         usr/lib/aspell
+*.alias         usr/lib/aspell
+*.dat           usr/lib/aspell
--- aspell-cs-0.0.20040614.1.orig/debian/aspell-cs.info-aspell
+++ aspell-cs-0.0.20040614.1/debian/aspell-cs.info-aspell
@@ -0,0 +1,9 @@
+Language: czech (Czech)
+Hash-Name: cs
+Emacsen-Name: czech
+Coding-System: iso-8859-2
+Casechars: [a-zA-Zì¹èø¾ýáíéúùï»òÌ©ÈØ®ÝÁÍÉÚÙÏ«Ò]
+Not-casechars: [^a-zA-Zì¹èø¾ýáíéúùï»òÌ©ÈØ®ÝÁÍÉÚÙÏ«Ò]
+Additionalchars: ì¹èø¾ýáíéúùï»òÌ©ÈØ®ÝÁÍÉÚÙÏ«Ò
+Aspell-Locales: cs
+
--- aspell-cs-0.0.20040614.1.orig/debian/changelog
+++ aspell-cs-0.0.20040614.1/debian/changelog
@@ -0,0 +1,22 @@
+aspell-cs (0.0.20040614.1-2) unstable; urgency=low
+
+  [ Miroslav Kure ]
+  * Provide a list of accented characters in aspell-cs.info to make
+    flyspell recognize words with these characters. Closes: #458445
+  * Udate Standards-Version to 3.7.3 (no changes needed)
+
+  [ Milan Zamazal ]
+  * Upload to unstable
+
+ -- Milan Zamazal <pdm@debian.org>  Mon, 14 Jan 2008 18:33:40 +0100
+
+aspell-cs (0.0.20040614.1-1) unstable; urgency=low
+
+  [ Miroslav Kure ]
+  * Initial release
+
+  [ Ondřej Surý ]
+  * Upload to unstable
+
+ -- Ondřej Surý <ondrej@debian.org>  Wed, 29 Mar 2006 11:15:22 +0200
+
--- aspell-cs-0.0.20040614.1.orig/debian/compat
+++ aspell-cs-0.0.20040614.1/debian/compat
@@ -0,0 +1 @@
+4