debian/0000755000000000000000000000000012231540556007171 5ustar debian/rules0000755000000000000000000000003612231540556010250 0ustar #!/usr/bin/make -f %: dh $@ debian/control0000644000000000000000000000301512231540556010573 0ustar Source: liblingua-en-tagger-perl Maintainer: Debian Perl Group Uploaders: Chris Butler , gregor herrmann Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl, libhtml-parser-perl, liblingua-stem-perl, libmemoize-expirelru-perl Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/liblingua-en-tagger-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/liblingua-en-tagger-perl.git Homepage: https://metacpan.org/release/Lingua-EN-Tagger/ Package: liblingua-en-tagger-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libhtml-parser-perl, liblingua-stem-perl, libmemoize-expirelru-perl Description: part-of-speech tagger for English natural language processing Lingua::EN::Tagger is a perl module which implements a probability based, corpus-trained tagger that assigns POS tags to English text based on a lookup dictionary and a set of probability values. The tagger assigns appropriate tags based on conditional probabilities - it examines the preceding tag to determine the appropriate tag for the current word. Unknown words are classified according to word morphology or can be set to be treated as nouns or other parts of speech. . The tagger also extracts as many nouns and noun phrases as it can, using a set of regular expressions. debian/source/0000755000000000000000000000000012231540556010471 5ustar debian/source/format0000644000000000000000000000001412231540556011677 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000421412231540556011044 0ustar liblingua-en-tagger-perl (0.24-1) unstable; urgency=low [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs [ gregor herrmann ] * New upstream release. * Update years of packaging copyright. -- gregor herrmann Tue, 22 Oct 2013 20:18:17 +0200 liblingua-en-tagger-perl (0.23-1) unstable; urgency=low * New upstream release. -- gregor herrmann Sun, 09 Dec 2012 17:12:16 +0100 liblingua-en-tagger-perl (0.20-1) unstable; urgency=low [ Harlan Lieberman-Berg ] * New upstream release. * Remove patch applied upstream; refresh patch [ gregor herrmann ] * Drop another patch. * Drop build dependency on libtest-pod-perl. * Bump Standards-Version to 3.9.4 (no changes). -- gregor herrmann Wed, 19 Sep 2012 19:24:26 +0200 liblingua-en-tagger-perl (0.18-1) unstable; urgency=low [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ gregor herrmann ] * New upstream release. * Refresh patches. * debian/copyright: update to Copyright-Format 1.0. * Update years of packaging copyright. * Bump Standards-Version to 3.9.3 (no changes). * Set debhelper compatibility level to 8. * Remove versions from (build) dependencies, all satisfied in oldstable. -- gregor herrmann Sat, 26 May 2012 21:11:25 +0200 liblingua-en-tagger-perl (0.16-1) unstable; urgency=low [ gregor herrmann ] * New upstream release. * Refresh patch fix-pod-errors. * Add /me to Uploaders. * Update debian/copyright to the information now included in the upstream source. * Adjust short description. [ Chris Butler ] * Added patch use-nstore-for-datafiles which makes the installed lexicon files architecture-independent by using nstore. -- Chris Butler Sat, 05 Jun 2010 12:13:01 +0100 liblingua-en-tagger-perl (0.15-1) unstable; urgency=low * Initial Release. (closes: #580275) * Added clarification of upstream copyright to debian/copyright. -- Chris Butler Sun, 09 May 2010 16:43:49 +0100 debian/compat0000644000000000000000000000000212231540556010367 0ustar 8 debian/clean0000644000000000000000000000001612231540556010173 0ustar Tagger/*.hash debian/patches/0000755000000000000000000000000012231540556010620 5ustar debian/patches/use-nstore-for-datafiles0000644000000000000000000000174512231540556015374 0ustar Description: Change the generation of the part-of-speech lexicon to use nstore instead of store. This should make the package architecture-independent. Forwarded: no Author: Chris Butler Last-Update: 2012-05-26 --- a/Makefile.PL +++ b/Makefile.PL @@ -33,7 +33,7 @@ sub install { - use Storable; + use Storable qw/nstore/; use File::Spec; my $lex_dir = 'Tagger'; my $word_path = File::Spec->catfile( $lex_dir, 'pos_words.hash' ); @@ -44,8 +44,8 @@ _load_tags( File::Spec->catfile( $lex_dir, 'tags.yml' ) ); _load_words( File::Spec->catfile( $lex_dir, 'words.yml' ) ); _load_words( File::Spec->catfile( $lex_dir, 'unknown.yml' ) ); - store \%_LEXICON, $word_path; - store \%_HMM, $tag_path; + nstore \%_LEXICON, $word_path; + nstore \%_HMM, $tag_path; } if( -f $word_path and -f $tag_path ){ debian/patches/series0000644000000000000000000000003112231540556012027 0ustar use-nstore-for-datafiles debian/copyright0000644000000000000000000000142112231540556011122 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Lingua-EN-Tagger Upstream-Contact: Aaron Coburn Source: https://metacpan.org/release/Lingua-EN-Tagger/ Files: * Copyright: 2003-2010, Aaron Coburn License: GPL-3 Files: debian/* Copyright: 2010, Chris Butler 2010-2013, gregor herrmann License: GPL-3 License: GPL-3 This program 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 3 of the License. . On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-3'. debian/liblingua-en-tagger-perl.docs0000644000000000000000000000000712231540556014615 0ustar README debian/watch0000644000000000000000000000017612231540556010226 0ustar version=3 https://metacpan.org/release/Lingua-EN-Tagger/ .*/Lingua-EN-Tagger-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$