[Po4a-devel][CVS] po4a/debian changelog,1.53,1.54
by Martin Quinson
Update of /cvsroot/po4a/po4a/debian
In directory haydn:/tmp/cvs-serv30749/debian
Modified Files:
changelog
Log Message:
Document last changes
Index: changelog
===================================================================
RCS file: /cvsroot/po4a/po4a/debian/changelog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -d -r1.53 -r1.54
--- changelog 29 Jun 2004 22:34:34 -0000 1.53
+++ changelog 16 Jul 2004 00:49:45 -0000 1.54
@@ -1,7 +1,10 @@
po4a (0.16.4-1) unstable; urgency=low
+ Cleaner build mecanism
+ Bugs fixes (new tags for Sgml, various glitches)
+
Jordi Vilalta
- * New build mecanism based on Module::Build instead of the
+ * New build mecanism based on Module::Build instead of the
deprecated MakeMaker
* [po/pod/Makefile] Allow to handle more than one language
* [po/bin/Makefile] Various cleanups
@@ -9,11 +12,25 @@
* [tests] Fix the false alarm resulting of previous change
Michael Wiedmann
- * [Sgml.pm/docbook]
+ * [Sgml.pm/docbook]
translate += revremark secondary tertiary editor othername
indent += bridgehead
ignore += keywordset keyword
* [TransTractor.pm] Fix two typos
+
+ Martin Quinson
+ * [Sgml.pm/docbook]
+ translate += synopsis
+ indent += reference shortcut
+ * Build process (lintian/linda clean again)
+ Call the scripts with "perl ../name" during build/test since
+ Module::Build fails to chmod +x @scripts.
+ Compress the translated manpage at full power to respect debian policy
+ * [debian/control]
+ Put myself as maintainer (not changing the uploaders)
+ Fix my email address for consistancy with my other packages
+
+ -- Martin Quinson <martin.quinson(a)tuxfamily.org> Thu, 15 Jul 2004 16:57:48 -0700
po4a (0.16.3-1) unstable; urgency=low
20 years, 4 months
[Po4a-devel][CVS] po4a/lib/Locale/Po4a TransTractor.pm,1.19,1.20
by Martin Quinson
Update of /cvsroot/po4a/po4a/lib/Locale/Po4a
In directory haydn:/tmp/cvs-serv30721/lib/Locale/Po4a
Modified Files:
TransTractor.pm
Log Message:
Let's push 0.16.4 out of the door NOW
Index: TransTractor.pm
===================================================================
RCS file: /cvsroot/po4a/po4a/lib/Locale/Po4a/TransTractor.pm,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- TransTractor.pm 29 Jun 2004 17:46:06 -0000 1.19
+++ TransTractor.pm 16 Jul 2004 00:49:34 -0000 1.20
@@ -10,7 +10,7 @@
use subs qw(makespace);
use vars qw($VERSION @ISA @EXPORT);
-$VERSION="0.16.3";
+$VERSION="0.16.4";
@ISA = ();
@EXPORT = qw(process translate
read write readpo writepo);
20 years, 4 months
[Po4a-devel][CVS] po4a META.yml,1.5,NONE
by Martin Quinson
Update of /cvsroot/po4a/po4a
In directory haydn:/tmp/cvs-serv30613
Removed Files:
META.yml
Log Message:
This file is automatically generated. No need to stay in the cvs
--- META.yml DELETED ---
20 years, 4 months
[Po4a-devel][CVS] po4a Makefile,1.1,1.2
by Martin Quinson
Update of /cvsroot/po4a/po4a
In directory haydn:/tmp/cvs-serv30469
Modified Files:
Makefile
Log Message:
Debian policy requiers the man page to be compressed at full power
Index: Makefile
===================================================================
RCS file: /cvsroot/po4a/po4a/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Makefile 29 Jun 2004 22:08:21 -0000 1.1
+++ Makefile 16 Jul 2004 00:46:45 -0000 1.2
@@ -42,7 +42,7 @@
cp po/pod/po4a-$$bin.$$lang.pod mantmp/po4a-$$bin.pod && \
pod2man --section=1 --center='Po4a Tools' --release='Po4a Tools' \
mantmp/po4a-$$bin.pod > mantmp/$$lang/man1/po4a-$$bin.1; \
- gzip mantmp/$$lang/man1/po4a-$$bin.1; \
+ gzip -9 mantmp/$$lang/man1/po4a-$$bin.1; \
rm -f mantmp/po4a-$$bin.pod; \
fi; \
done; \
@@ -54,7 +54,7 @@
cp po/pod/Locale::Po4a::$$lib.$$lang.pod mantmp/$$lib.pod && \
pod2man --section=3pm --center='Po4a Tools' --release='Po4a Tools' \
mantmp/$$lib.pod > mantmp/$$lang/man3/Locale::Po4a::$$lib.3pm; \
- gzip mantmp/$$lang/man3/Locale::Po4a::$$lib.3pm; \
+ gzip -9 mantmp/$$lang/man3/Locale::Po4a::$$lib.3pm; \
rm -f mantmp/$$lib.pod; \
fi; \
done; \
@@ -62,14 +62,14 @@
for doc in $(docs) ; do \
pod2man --section=7 --center='Po4a Tools' --release='Po4a Tools' \
doc/$$doc.7.pod > mantmp/$$doc.7; \
- gzip mantmp/$$doc.7; \
+ gzip -9 mantmp/$$doc.7; \
for lang in $(langs) ; do \
if [ -e po/pod/$$doc.$$lang.pod ] ; then \
mkdir -p mantmp/$$lang/man7; \
cp po/pod/$$doc.$$lang.pod mantmp/$$doc.pod && \
pod2man --section=7 --center='Po4a Tools' --release='Po4a Tools' \
mantmp/$$doc.pod > mantmp/$$lang/man7/$$doc.7; \
- gzip mantmp/$$lang/man7/$$doc.7; \
+ gzip -9 mantmp/$$lang/man7/$$doc.7; \
rm -f mantmp/$$doc.pod; \
fi; \
done; \
20 years, 4 months
[Po4a-devel][CVS] po4a/t 02-TransTractors.t,1.6,1.7 03-addendums.t,1.3,1.4 10-discard-fuzzy.t,1.3,1.4 20-xml.t,1.1,1.2 21-dia.t,1.1,1.2
by Martin Quinson
Update of /cvsroot/po4a/po4a/t
In directory haydn:/tmp/cvs-serv25991/t
Modified Files:
02-TransTractors.t 03-addendums.t 10-discard-fuzzy.t 20-xml.t
21-dia.t
Log Message:
Explicitely call perl <script name> since Module::build is dumb enough for not chmod +x the content of @scripts
Index: 03-addendums.t
===================================================================
RCS file: /cvsroot/po4a/po4a/t/03-addendums.t,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 03-addendums.t 7 Nov 2003 15:10:17 -0000 1.3
+++ 03-addendums.t 16 Jul 2004 00:45:41 -0000 1.4
@@ -10,19 +10,19 @@
mkdir "t/tmp" unless -e "t/tmp";
-$tests[0]{'run'} = '../po4a-translate -f man -a data-03/man.addendum1 -m data-03/man -p data-03/man.po-ok -l tmp/man.fr';
+$tests[0]{'run'} = 'perl ../po4a-translate -f man -a data-03/man.addendum1 -m data-03/man -p data-03/man.po-ok -l tmp/man.fr';
$tests[0]{'test'} = 'diff -u data-03/man.fr.add1 tmp/man.fr';
$tests[0]{'doc'} = 'translate with addendum1';
-$tests[1]{'run'} = '../po4a-translate -f man -a data-03/man.addendum2 -m data-03/man -p data-03/man.po-ok -l tmp/man.fr';
+$tests[1]{'run'} = 'perl ../po4a-translate -f man -a data-03/man.addendum2 -m data-03/man -p data-03/man.po-ok -l tmp/man.fr';
$tests[1]{'test'} = 'diff -u data-03/man.fr.add2 tmp/man.fr';
$tests[1]{'doc'} = 'translate with addendum2';
-$tests[2]{'run'} = '../po4a-translate -f man -a data-03/man.addendum3 -m data-03/man -p data-03/man.po-ok -l tmp/man.fr';
+$tests[2]{'run'} = 'perl ../po4a-translate -f man -a data-03/man.addendum3 -m data-03/man -p data-03/man.po-ok -l tmp/man.fr';
$tests[2]{'test'} = 'diff -u data-03/man.fr.add3 tmp/man.fr';
$tests[2]{'doc'} = 'translate with addendum3';
-$tests[3]{'run'} = '../po4a-translate -f man -a data-03/man.addendum4 -m data-03/man -p data-03/man.po-ok -l tmp/man.fr';
+$tests[3]{'run'} = 'perl ../po4a-translate -f man -a data-03/man.addendum4 -m data-03/man -p data-03/man.po-ok -l tmp/man.fr';
$tests[3]{'test'} = 'diff -u data-03/man.fr.add4 tmp/man.fr';
$tests[3]{'doc'} = 'translate with addendum4';
Index: 10-discard-fuzzy.t
===================================================================
RCS file: /cvsroot/po4a/po4a/t/10-discard-fuzzy.t,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 10-discard-fuzzy.t 7 Nov 2003 15:10:17 -0000 1.3
+++ 10-discard-fuzzy.t 16 Jul 2004 00:45:41 -0000 1.4
@@ -16,7 +16,7 @@
"-I '^\"POT-Creation-Date: ' -I '^\"Content-Type:' -I '^\"Content-Transfer-Encoding:'";
my $diff_pod_flags= " -I 'This file was generated by po4a' ";
-$tests[0]{'run'} = "../po4a-translate -f pod -k 0 -m data-10/pod -p data-10/pod.po -l tmp/pod.fr";
+$tests[0]{'run'} = "perl ../po4a-translate -f pod -k 0 -m data-10/pod -p data-10/pod.po -l tmp/pod.fr";
$tests[0]{'test'} = "diff -u tmp/pod.fr data-10/pod.fr $diff_pod_flags";
$tests[0]{'doc'} = "discard the fuzzy translation";
Index: 20-xml.t
===================================================================
RCS file: /cvsroot/po4a/po4a/t/20-xml.t,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- 20-xml.t 28 Apr 2004 08:41:55 -0000 1.1
+++ 20-xml.t 16 Jul 2004 00:45:41 -0000 1.2
@@ -1,5 +1,5 @@
#! /usr/bin/perl
-# MAN module tester.
+# XML module tester.
#########################
@@ -16,7 +16,7 @@
"-I '^\"POT-Creation-Date: ' -I '^\"Content-Type:' -I '^\"Content-Transfer-Encoding:'";
my $diff_pod_flags= " -I 'This file was generated by po4a' ";
-$tests[0]{'run'} = "../po4a-gettextize -f sgml -m data-20/text.xml -p tmp/xml.po";
+$tests[0]{'run'} = "perl ../po4a-gettextize -f sgml -m data-20/text.xml -p tmp/xml.po >/dev/null";
$tests[0]{'test'} = "diff -u tmp/xml.po data-20/xml.po $diff_po_flags";
$tests[0]{'doc'} = "gettextize well simple xml documents";
Index: 02-TransTractors.t
===================================================================
RCS file: /cvsroot/po4a/po4a/t/02-TransTractors.t,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- 02-TransTractors.t 29 Nov 2003 18:56:50 -0000 1.6
+++ 02-TransTractors.t 16 Jul 2004 00:45:41 -0000 1.7
@@ -16,19 +16,19 @@
"-I '^\"POT-Creation-Date: ' -I '^\"Content-Type:' -I '^\"Content-Transfer-Encoding:'";
my $diff_pod_flags= " -I 'This file was generated by po4a' ";
-$tests[0]{'run'} = "../po4a-gettextize -f #format# -m data-02/#format# -p tmp/po";
+$tests[0]{'run'} = "perl ../po4a-gettextize -f #format# -m data-02/#format# -p tmp/po";
$tests[0]{'test'} = "diff -u -I POT-Creation-Date data-02/#format#.po-empty tmp/po";
$tests[0]{'doc'} = "gettextize #format# document with only the original";
-$tests[1]{'run'} = "../po4a-gettextize -f #format# -m data-02/#format# -l data-02/#format#.fr -p tmp/po 2>/dev/null";
+$tests[1]{'run'} = "perl ../po4a-gettextize -f #format# -m data-02/#format# -l data-02/#format#.fr -p tmp/po 2>/dev/null";
$tests[1]{'test'} = "diff -u $diff_po_flags data-02/#format#.po tmp/po";
$tests[1]{'doc'} = "gettextize #format# page with original and translation";
-$tests[2]{'run'} = "cp data-02/#format#.po tmp/po && ../po4a-updatepo -f #format# -m data-02/#format# -p tmp/po >/dev/null 2>&1 ";
+$tests[2]{'run'} = "cp data-02/#format#.po tmp/po && perl ../po4a-updatepo -f #format# -m data-02/#format# -p tmp/po >/dev/null 2>&1 ";
$tests[2]{'test'} = "diff -u $diff_po_flags data-02/#format#.po tmp/po";
$tests[2]{'doc'} = "updatepo for #format# document";
-$tests[3]{'run'} = "../po4a-translate -f #format# -m data-02/#format# -p data-02/#format#.po-ok -l tmp/#format#.fr";
+$tests[3]{'run'} = "perl ../po4a-translate -f #format# -m data-02/#format# -p data-02/#format#.po-ok -l tmp/#format#.fr";
$tests[3]{'test'} = "diff -u $diff_pod_flags data-02/#format#.fr tmp/#format#.fr";
$tests[3]{'doc'} = "translate #format# document";
Index: 21-dia.t
===================================================================
RCS file: /cvsroot/po4a/po4a/t/21-dia.t,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- 21-dia.t 25 May 2004 17:35:54 -0000 1.1
+++ 21-dia.t 16 Jul 2004 00:45:41 -0000 1.2
@@ -13,11 +13,11 @@
my $diff_po_flags = " -I '^# SOME' -I '^# Test' ".
"-I '^\"POT-Creation-Date: ' -I '^\"Content-Type:' -I '^\"Content-Transfer-Encoding:'";
-$tests[0]{'run'} = '../po4a-gettextize -f dia -m data-21/extract.dia -p tmp/dia_extract.po';
+$tests[0]{'run'} = 'perl ../po4a-gettextize -f dia -m data-21/extract.dia -p tmp/dia_extract.po';
$tests[0]{'test'} = "diff -u $diff_po_flags data-21/extract.po-ok tmp/dia_extract.po";
$tests[0]{'doc'} = 'get only needed strings';
-$tests[1]{'run'} = '../po4a-translate -f dia -m data-21/transl.dia -p data-21/transl.po -l tmp/transl.dia';
+$tests[1]{'run'} = 'perl ../po4a-translate -f dia -m data-21/transl.dia -p data-21/transl.po -l tmp/transl.dia';
$tests[1]{'test'} = 'diff -u data-21/transl.dia-ok tmp/transl.dia';
$tests[1]{'doc'} = 'test translations with new-lines';
20 years, 4 months
[Po4a-devel][CVS] po4a/po/pod Makefile,1.12,1.13
by Martin Quinson
Update of /cvsroot/po4a/po4a/po/pod
In directory haydn:/tmp/cvs-serv25991/po/pod
Modified Files:
Makefile
Log Message:
Explicitely call perl <script name> since Module::build is dumb enough for not chmod +x the content of @scripts
Index: Makefile
===================================================================
RCS file: /cvsroot/po4a/po4a/po/pod/Makefile,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- Makefile 29 Jun 2004 19:16:57 -0000 1.12
+++ Makefile 16 Jul 2004 00:45:41 -0000 1.13
@@ -21,7 +21,7 @@
po4a-pod.pot: $(PATHFILES)
@echo TRANSLATION=$(TRANSLATIONS)
- @PERL5LIB=../../lib ../../po4a-updatepo -f pod $(foreach file,$(PATHFILES),-m $(file)) -p $@
+ @PERL5LIB=../../lib perl ../../po4a-updatepo -f pod $(foreach file,$(PATHFILES),-m $(file)) -p $@
%.po: po4a-pod.pot
@echo -n "Merging po4a-pod.pot and $@"
@@ -42,7 +42,7 @@
define TEMPLATES
LocalePo4a%.$(1).pod: ../../lib/Locale/Po4a/% $(1).po
- @PERL5LIB=../../lib ../../po4a-translate -f pod -v -m $$< -p $(1).po -l $$@
+ @PERL5LIB=../../lib perl ../../po4a-translate -f pod -v -m $$< -p $(1).po -l $$@
@if [ -e $$@ ] ; then \
mv -f $$@ `echo $$@| \
sed 's/LocalePo4a/Locale::Po4a::/' | \
@@ -50,10 +50,10 @@
fi
%.$(1).pod: ../../% $(1).po
- @PERL5LIB=../../lib ../../po4a-translate -f pod -v -m $$< -p $(1).po -l $$@ || true
+ @PERL5LIB=../../lib perl ../../po4a-translate -f pod -v -m $$< -p $(1).po -l $$@ || true
%.$(1).pod: ../../doc/%.pod $(1).po
- @PERL5LIB=../../lib ../../po4a-translate -f pod -v -m $$< -p $(1).po -l $$@ || true
+ @PERL5LIB=../../lib perl ../../po4a-translate -f pod -v -m $$< -p $(1).po -l $$@ || true
endef
##### END TEMPLATES #####
20 years, 4 months
[Po4a-devel][CVS] po4a/debian rules,1.26,1.27
by Martin Quinson
Update of /cvsroot/po4a/po4a/debian
In directory haydn:/tmp/cvs-serv13256/debian
Modified Files:
rules
Log Message:
Compress man pages; add debian/changelog
Index: rules
===================================================================
RCS file: /cvsroot/po4a/po4a/debian/rules,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- rules 29 Jun 2004 19:59:01 -0000 1.26
+++ rules 16 Jul 2004 00:44:06 -0000 1.27
@@ -56,8 +56,9 @@
# dh_installmime
# dh_installinit
# dh_installcron
-#TODO: Now manpages are installed in the install target. Is it wrong for Debian?
-# dh_installman mantmp/*
+# dh_installman mantmp/* # made upstream
+ dh_installchangelogs
+ dh_compress
dh_fixperms
dh_installdeb
dh_perl
20 years, 4 months
[Po4a-devel][CVS] po4a/debian control,1.10,1.11
by Martin Quinson
Update of /cvsroot/po4a/po4a/debian
In directory haydn:/tmp/cvs-serv13179/debian
Modified Files:
control
Log Message:
Put myself as maintainer ;) and fix my address
Index: control
===================================================================
RCS file: /cvsroot/po4a/po4a/debian/control,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- control 26 May 2004 19:46:48 -0000 1.10
+++ control 16 Jul 2004 00:43:31 -0000 1.11
@@ -1,8 +1,8 @@
Source: po4a
Section: text
Priority: optional
-Maintainer: Denis Barbier <barbier(a)debian.org>
-Uploaders: Denis Barbier <barbier(a)debian.org>, Martin Quinson <martin.quinson(a)tuxfamily.org>, Pierre Machard <pmachard(a)debian.org>
+Maintainer: Martin Quinson <martin.quinson(a)ens-lyon.fr>
+Uploaders: Denis Barbier <barbier(a)debian.org>, Martin Quinson <martin.quinson(a)ens-lyon.fr>, Pierre Machard <pmachard(a)debian.org>
Standards-Version: 3.6.1
Build-Depends-Indep: debhelper (>> 3.0.0), liblocale-gettext-perl, perl-modules
20 years, 4 months
[Po4a-devel][CVS] po4a/lib/Locale/Po4a Sgml.pm,1.22,1.23
by Martin Quinson
Update of /cvsroot/po4a/po4a/lib/Locale/Po4a
In directory haydn:/tmp/cvs-serv17588
Modified Files:
Sgml.pm
Log Message:
Some new tags
Index: Sgml.pm
===================================================================
RCS file: /cvsroot/po4a/po4a/lib/Locale/Po4a/Sgml.pm,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- Sgml.pm 29 Jun 2004 20:18:52 -0000 1.22
+++ Sgml.pm 14 Jul 2004 19:08:03 -0000 1.23
@@ -355,7 +355,7 @@
"option orgname othername ".
"para phrase pubdate publishername primary ".
"refclass refdescriptor refentrytitle refmiscinfo refname refpurpose releaseinfo remark revnumber revremark ".
- "screeninfo seg secondary segtitle simpara subtitle synopfragmentref ".
+ "screeninfo seg secondary segtitle simpara subtitle synopfragmentref synopsis ".
"term tertiary title titleabbrev",
"empty" => "audiodata colspec graphic imagedata textdata sbr videodata xref",
"indent" => "abstract answer appendix article articleinfo audioobject author authorgroup ".
@@ -373,8 +373,8 @@
"objectinfo orderedlist ".
"part partintro preface procedure publisher ".
"qandadiv qandaentry qandaset question ".
- "refsect1 refentry refentryinfo refmeta refnamediv refsect1 refsect1info refsect2 refsect2info refsect3 refsect3info refsection refsectioninfo refsynopsisdiv refsynopsisdivinfo revision revdescription row ".
- "screenshot sect1 sect1info sect2 sect2info sect3 sect3info sect4 sect4info sect5 sect5info section sectioninfo seglistitem segmentedlist set setindex setinfo simplelist simplemsgentry simplesect step synopfragment ".
+ "reference refsect1 refentry refentryinfo refmeta refnamediv refsect1 refsect1info refsect2 refsect2info refsect3 refsect3info refsection refsectioninfo refsynopsisdiv refsynopsisdivinfo revision revdescription row ".
+ "screenshot sect1 sect1info sect2 sect2info sect3 sect3info sect4 sect4info sect5 sect5info section sectioninfo seglistitem segmentedlist set setindex setinfo shortcut simplelist simplemsgentry simplesect step synopfragment ".
"table tbody textobject tgroup thead tip toc ".
"variablelist varlistentry videoobject ".
"warning",
20 years, 4 months