--- collatinus-7.14.orig/python-wx/version.py +++ collatinus-7.14/python-wx/version.py @@ -1,8 +1,7 @@ -#!/usr/bin/env python # -*- coding: Latin-1 -*- # version.py $Revision: 7.3 $ # dernière mise à jour : $Date: 2006/01/11 18:22:00 $ # par $Author: georgesk $ -number="7.12" +number="7.14" --- collatinus-7.14.orig/debian/dirs +++ collatinus-7.14/debian/dirs @@ -0,0 +1,4 @@ +usr/bin +usr/lib/collatinus +usr/share/man/man1 +usr/share/doc/collatinus --- collatinus-7.14.orig/debian/control +++ collatinus-7.14/debian/control @@ -0,0 +1,32 @@ +Source: collatinus +Section: text +Priority: optional +Maintainer: Georges Khaznadar +Build-Depends-Indep: debhelper (>> 4.0.0), hyperlatex, tetex-extra +Standards-Version: 3.6.2 + +Package: collatinus +Architecture: all +Depends: python, python-wxgtk2.4|python-wxgtk2.6, collatinus-data, collatinus-doc +Description: lemmatisation of latin text + Collatinus can be used to lemmatise latin texts, i.e. extract words and + make a lexicon which indicates for each word its canonic form, and how + the form actually found in the text was derived from it, for instance by + declining it. Example : rosam gives : rosa-rosae -- acc. sing. + Collatinus provides a nice graphic front-end to each operation. + +Package: collatinus-data +Architecture: all +Depends: +Description: data files for collatinus + lemmatisation engine data in xml format. + +Package: collatinus-doc +Architecture: all +Depends: +Description: documentation for collatinus + This package provides documentation for Collatinus in HTML and PDF + formats. + . + Collatinus is an application for lemmatising Latin texts, and it + provides a nice graphical front-end. --- collatinus-7.14.orig/debian/rules +++ collatinus-7.14/debian/rules @@ -0,0 +1,99 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #/usr/bin/docbook-to-man debian/collatinus.sgml > collatinus.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/collatinus. + $(MAKE) install DESTDIR=$(CURDIR)/debian/collatinus + $(MAKE) install-data DESTDIR=$(CURDIR)/debian/collatinus-data + $(MAKE) install-doc DESTDIR=$(CURDIR)/debian/collatinus-doc + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- collatinus-7.14.orig/debian/changelog +++ collatinus-7.14/debian/changelog @@ -0,0 +1,60 @@ +collatinus (7.14-1) unstable; urgency=low + + * upgraded to the new upstream version + * improved the long description for collatinus-doc, thanks to Ben + Burton + Closes: #353795 + * restored the dependency on python-wxgtk2.4|python-wxgtk2.6 since + Yves Ouvrard claims that the new version is compatible with both of + them. Really Closes: #353368 + + -- Georges Khaznadar Sun, 5 Mar 2006 21:36:28 +0100 + +collatinus (7.13-2) unstable; urgency=low + + * removed the dependance on python-wxgtk2.4, python-wxgtk2.6 is necessary. + Closes Bug#353368 + + -- Georges Khaznadar Mon, 20 Feb 2006 02:26:58 +0100 + +collatinus (7.13-1) unstable; urgency=low + + * new upstream release (just one change in collat.py) + * taken in account Christian Perrier's remarks (collat.py was still patched) + + -- Georges Khaznadar Sun, 15 Jan 2006 23:44:21 +0100 + +collatinus (7.12-1) unstable; urgency=low + + * new upstream release + * taken in account Christian Perrier's remarks + * removed lemmata from the source since it may be rebuilt when the package + is made, and changed python-wx/collat.py accordingly + + -- Georges Khaznadar Wed, 11 Jan 2006 17:17:58 +0100 + +collatinus (7.11-1) unstable; urgency=low + + * new upstream release + + -- Georges Khaznadar Tue, 26 Jul 2005 08:45:17 +0200 + +collatinus (7.9-1) unstable; urgency=low + + * new upstream release + + -- Georges Khaznadar Sun, 8 May 2005 18:52:27 +0200 + +collatinus (7.9-1) unstable; urgency=low + + * new upstream release + * fixed one bug about the variable 'wild' + + -- Georges Khaznadar Fri, 15 Apr 2005 17:32:58 +0200 + +collatinus (7.8-1) unstable; urgency=low + + * synchronisation with upstream + + -- Georges Khaznadar Tue, 3 Aug 2004 12:37:01 +0200 + --- collatinus-7.14.orig/debian/compat +++ collatinus-7.14/debian/compat @@ -0,0 +1 @@ +4 --- collatinus-7.14.orig/debian/collatinus-doc.dirs +++ collatinus-7.14/debian/collatinus-doc.dirs @@ -0,0 +1,2 @@ +usr/share/doc/collatinus/html + --- collatinus-7.14.orig/debian/copyright +++ collatinus-7.14/debian/copyright @@ -0,0 +1,13 @@ +This package was debianized by Georges Khaznadar on +Sun, 7 Sep 2003 15:53:25 +0200. + +It was downloaded from cvs.sourceforge.net, using the command +cvs -z3 -d:ext:georgesk@cvs.sourceforge.net:/cvsroot/ofset export -r version-7-8 collatinus + +Upstream Author: Yves Ouvrard + +Copyright: + +General Public License. + +A copy of the GPL is available in /usr/share/common-licenses/GPL. --- collatinus-7.14.orig/debian/collatinus-data.dirs +++ collatinus-7.14/debian/collatinus-data.dirs @@ -0,0 +1,2 @@ +usr/share/collatinus + --- collatinus-7.14.orig/debian/semantic.cache +++ collatinus-7.14/debian/semantic.cache @@ -0,0 +1,16 @@ +;; Object debian/ +;; SEMANTICDB Tags save file +(semanticdb-project-database-file "debian/" + :tables (list + (semanticdb-table "rules" + :major-mode 'makefile-mode + :tags '(("CFLAGS" variable (:default-value ("-Wall" "-g")) nil [174 192]) ("configure" function (:arguments ("configure-stamp")) nil [365 407]) ("configure-stamp" function nil nil [392 469]) ("build" function (:arguments ("build-stamp")) nil [494 514]) ("build-stamp" function (:arguments ("configure-stamp")) nil [514 557]) ("clean" function nil nil [696 764]) ("install" function (:arguments ("build")) nil [851 922]) ("binary-indep" function (:arguments ("build" "install")) nil [1214 1278]) ("binary-arch" function (:arguments ("build" "install")) nil [1322 1446]) ("binary" function (:arguments ("binary-indep" "binary-arch")) nil [1778 1817])) + :file "rules" + :pointmax 1881 + :unmatched-syntax 'nil + ) + ) + :file "semantic.cache" + :semantic-tag-version "2.0pre3" + :semanticdb-version "2.0pre3" + ) --- collatinus-7.14.orig/debian/postinst +++ collatinus-7.14/debian/postinst @@ -0,0 +1,42 @@ +#! /bin/sh +# postinst script for foo +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# + +case "$1" in + configure) + cd /usr/lib/collatinus/ && python -c "import collat,latinus,version,flexfr,frequences; collat.precompile()" && mv -f lemmata /usr/share/collatinus/ + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + +