diff -Nru apertium-eo-en-0.9.5/debian/bzr-builder.manifest apertium-eo-en-0.9.5/debian/bzr-builder.manifest --- apertium-eo-en-0.9.5/debian/bzr-builder.manifest 2014-05-30 21:25:30.000000000 +0000 +++ apertium-eo-en-0.9.5/debian/bzr-builder.manifest 2014-06-18 14:34:42.000000000 +0000 @@ -1,3 +1,3 @@ -# bzr-builder format 0.3 deb-version {debupstream}-0~898 -lp:~aboobackervyd/apertiumtestpackaging/apertium-eo-en revid:svn-v4:72bbbca6-d526-0410-a7d9-f06f51895060:trunk/apertium-eo-en:53620 +# bzr-builder format 0.3 deb-version {debupstream}-0~899 +lp:~aboobackervyd/apertiumtestpackaging/apertium-eo-en revid:svn-v4:72bbbca6-d526-0410-a7d9-f06f51895060:trunk/apertium-eo-en:54566 nest-part packaging lp:~aboobackervyd/apertiumtestpackaging/eo-en-packaging debian debian revid:aboobackervyd@gmail.com-20140429172912-zevzkkiwu016ao9e diff -Nru apertium-eo-en-0.9.5/debian/changelog apertium-eo-en-0.9.5/debian/changelog --- apertium-eo-en-0.9.5/debian/changelog 2014-05-30 21:25:30.000000000 +0000 +++ apertium-eo-en-0.9.5/debian/changelog 2014-06-18 14:34:42.000000000 +0000 @@ -1,8 +1,8 @@ -apertium-eo-en (0.9.5-0~898~ubuntu13.10.1) saucy; urgency=low +apertium-eo-en (0.9.5-0~899~ubuntu13.10.1) saucy; urgency=low * Auto build. - -- ABOOBACKER Fri, 30 May 2014 21:25:30 +0000 + -- Aboobacker MK Wed, 18 Jun 2014 14:34:42 +0000 apertium-eo-en (0.9.5-1ubuntu1~saucy1) saucy; urgency=low diff -Nru apertium-eo-en-0.9.5/en-eo-supervised.make apertium-eo-en-0.9.5/en-eo-supervised.make --- apertium-eo-en-0.9.5/en-eo-supervised.make 1970-01-01 00:00:00.000000000 +0000 +++ apertium-eo-en-0.9.5/en-eo-supervised.make 2014-06-18 14:34:21.000000000 +0000 @@ -0,0 +1,59 @@ +TAGGER_SUPERVISED_ITERATIONS=0 +BASENAME=apertium-eo-en +LANG1=en +LANG2=eo +TAGGER=$(LANG1)-tagger-data +PREFIX=$(LANG1)-$(LANG2) + +all: $(PREFIX).prob + +$(PREFIX).prob: $(BASENAME).$(LANG1).tsx $(TAGGER)/$(LANG1).dic $(TAGGER)/$(LANG1).untagged $(TAGGER)/$(LANG1).tagged $(TAGGER)/$(LANG1).crp + apertium-validate-tagger $(BASENAME).$(LANG1).tsx + apertium-tagger -s $(TAGGER_SUPERVISED_ITERATIONS) \ + $(TAGGER)/$(LANG1).dic \ + $(TAGGER)/$(LANG1).crp \ + $(BASENAME).$(LANG1).tsx \ + $(PREFIX).prob \ + $(TAGGER)/$(LANG1).tagged \ + $(TAGGER)/$(LANG1).untagged; + +$(TAGGER)/$(LANG1).dic: $(BASENAME).$(LANG1).dix $(PREFIX).automorf.bin + @echo "Generating $@"; + @echo "This may take some time. Please, take a cup of coffee and come back later."; + apertium-validate-dictionary $(BASENAME).$(LANG1).dix + apertium-validate-tagger $(BASENAME).$(LANG1).tsx + lt-expand $(BASENAME).$(LANG1).dix | grep -v "__REGEXP__" | grep -v ":<:" |\ + awk 'BEGIN{FS=":>:|:"}{print $$1 ".";}' | apertium-destxt >$(LANG1).dic.expanded + @echo "." >>$(LANG1).dic.expanded + @echo "?" >>$(LANG1).dic.expanded + @echo ";" >>$(LANG1).dic.expanded + @echo ":" >>$(LANG1).dic.expanded + @echo "!" >>$(LANG1).dic.expanded + @echo "42" >>$(LANG1).dic.expanded + @echo "," >>$(LANG1).dic.expanded + @echo "(" >>$(LANG1).dic.expanded + @echo "\\[" >>$(LANG1).dic.expanded + @echo ")" >>$(LANG1).dic.expanded + @echo "\\]" >>$(LANG1).dic.expanded + @echo "¿" >>$(LANG1).dic.expanded + @echo "¡" >>$(LANG1).dic.expanded + lt-proc -a $(PREFIX).automorf.bin <$(LANG1).dic.expanded | \ + apertium-filter-ambiguity $(BASENAME).$(LANG1).tsx > $@ + rm $(LANG1).dic.expanded; + +$(TAGGER)/$(LANG1).crp: $(PREFIX).automorf.bin $(TAGGER)/$(LANG1).crp.txt + apertium-destxt < $(TAGGER)/$(LANG1).crp.txt | lt-proc $(PREFIX).automorf.bin > $(TAGGER)/$(LANG1).crp; \ + +$(TAGGER)/$(LANG1).crp.txt: + touch $(TAGGER)/$(LANG1).crp.txt + +$(TAGGER)/$(LANG1).tagged: + @echo "Error: File '"$@"' is needed to perform a supervised tagger training" 1>&2 + @echo "This file should exist. It is the result of solving the ambiguity from the '"$(TAGGER1)/$(LANG1).tagged.txt"' file" 1>&2 + exit 1 + +$(TAGGER)/$(LANG1).untagged: $(TAGGER)/$(LANG1).tagged.txt $(PREFIX).automorf.bin + cat $(TAGGER)/$(LANG1).tagged.txt | apertium-destxt | lt-proc $(PREFIX).automorf.bin > $@; + +clean: + rm -f $(PREFIX).prob