Your message dated Sat, 01 Dec 2012 23:16:55 +0100
with message-id <[email protected]>
and subject line Re: Bug#694807: unblock: manpages-fr-extra/20121129
has caused the Debian Bug report #694807,
regarding unblock: manpages-fr-extra/20121129
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
694807: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694807
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: [email protected]
Usertags: unblock
Please unblock package manpages-fr-extra, it's just a translation
update, that aim to track the tiny documentation changed made in
ldconfig(8) inside eglibc 2.13-36 recently unblocked in Wheezy
(since the documentation translation is outsourced in this package).
We also made some proofread in other translations, and continued to
update the openssl one too (thus the tiny build change picked up from
openssl upstream).
The attached debdiff spares you the po4a (translations) change.
unblock manpages-fr-extra/20121129
Thanks in advance for considering it.
Regards
David
-- System Information:
Debian Release: wheezy/sid
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (100,
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 3.2.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru --exclude po4a manpages-fr-extra-20121027/debian/changelog manpages-fr-extra-20121129/debian/changelog
--- manpages-fr-extra-20121027/debian/changelog 2012-10-27 11:05:48.000000000 -0400
+++ manpages-fr-extra-20121129/debian/changelog 2012-11-29 11:27:36.000000000 -0400
@@ -1,3 +1,22 @@
+manpages-fr-extra (20121129) unstable; urgency=low
+
+ * openssl:
+ - Handle section 7 and 5 of manual pages
+ - New translation of some files:
+ + CMS_final.3
+ + CMS_sign_receipt.3
+ + CMS_verify_receipt.3
+ + d2i_DSAPublicKey.3
+ + SSL_CTX_set_cert_store.3
+ + SSL_set_session.3
+ + ui_compat.3
+ + des_modes.7
+ * sysvinit: Sync with version 2.88dsf-34
+ * eglibc: Sync with version 2.13-37
+ * util-linux, tar: Typo and format fixes
+
+ -- David Prévot <[email protected]> Thu, 29 Nov 2012 11:25:01 -0400
+
manpages-fr-extra (20121027) unstable; urgency=low
[ Thomas Blein ]
diff -Nru --exclude po4a manpages-fr-extra-20121027/eglibc/C/man8/ldconfig.8 manpages-fr-extra-20121129/eglibc/C/man8/ldconfig.8
--- manpages-fr-extra-20121027/eglibc/C/man8/ldconfig.8 2012-10-26 18:35:07.000000000 -0400
+++ manpages-fr-extra-20121129/eglibc/C/man8/ldconfig.8 2012-11-29 11:19:06.000000000 -0400
@@ -140,8 +140,7 @@
execution time linker/loader
.TP 20
.B /etc/ld.so.conf
-File containing a list of colon, space, tab, newline, or comma separated
-directories in which to search for libraries.
+File containing a list of newline separated directories in which to search for libraries.
.TP 20
.B /etc/ld.so.cache
File containing an ordered list of libraries found in the directories
diff -Nru --exclude po4a manpages-fr-extra-20121027/eglibc/VERSION manpages-fr-extra-20121129/eglibc/VERSION
--- manpages-fr-extra-20121027/eglibc/VERSION 2012-10-26 18:35:07.000000000 -0400
+++ manpages-fr-extra-20121129/eglibc/VERSION 2012-11-29 11:21:58.000000000 -0400
@@ -1 +1 @@
-2.13-35
+2.13-37
diff -Nru --exclude po4a manpages-fr-extra-20121027/openssl/extract-section.pl manpages-fr-extra-20121129/openssl/extract-section.pl
--- manpages-fr-extra-20121027/openssl/extract-section.pl 1969-12-31 20:00:00.000000000 -0400
+++ manpages-fr-extra-20121129/openssl/extract-section.pl 2012-11-27 15:53:22.000000000 -0400
@@ -0,0 +1,12 @@
+#!/usr/bin/perl
+
+while(<STDIN>) {
+ if (/=for\s+comment\s+openssl_manual_section:(\S+)/)
+ {
+ print "$1\n";
+ exit 0;
+ }
+}
+
+print "$ARGV[0]\n";
+
diff -Nru --exclude po4a manpages-fr-extra-20121027/openssl/Makefile manpages-fr-extra-20121129/openssl/Makefile
--- manpages-fr-extra-20121027/openssl/Makefile 2011-07-03 20:22:19.000000000 -0400
+++ manpages-fr-extra-20121129/openssl/Makefile 2012-11-27 15:53:22.000000000 -0400
@@ -17,21 +17,23 @@
post-build: man1 man3
man1:
- mkdir -p fr/man1
+ mkdir -p fr/man1 fr/man5
@set -e; \
for m in fr/apps/*.pod; do \
+ sec=`$(PERL) ./extract-section.pl 1 < $$m`; \
man=$$(basename $$m); \
man=$${man%.pod}; \
- $(P2M) --section=1SSL $$m > fr/man1/$$man.1ssl; \
+ $(P2M) --section=$${sec}SSL $$m > fr/man$$sec/$$man.$$secssl; \
done
man3:
- mkdir -p fr/man3
+ mkdir -p fr/man3 fr/man7
@set -e; \
for m in fr/crypto/*.pod fr/ssl/*.pod; do \
+ sec=`$(PERL) ./extract-section.pl 3 < $$m`; \
man=$$(basename $$m); \
man=$${man%.pod}; \
- $(P2M) --section=3SSL $$m > fr/man3/$$man.3ssl; \
+ $(P2M) --section=$${sec}SSL $$m > fr/man$$sec/$$man.$${sec}ssl; \
done
build: pre-build po4a-build post-build
diff -Nru --exclude po4a manpages-fr-extra-20121027/sysvinit/VERSION manpages-fr-extra-20121129/sysvinit/VERSION
--- manpages-fr-extra-20121027/sysvinit/VERSION 2012-10-26 18:11:14.000000000 -0400
+++ manpages-fr-extra-20121129/sysvinit/VERSION 2012-11-29 11:21:58.000000000 -0400
@@ -1 +1 @@
-2.88dsf-32
+2.88dsf-34
--- End Message ---
--- Begin Message ---
On 2012-11-30 15:38, David Prévot wrote:
> Package: release.debian.org
> Severity: normal
> User: [email protected]
> Usertags: unblock
>
> Please unblock package manpages-fr-extra, it's just a translation
> update, that aim to track the tiny documentation changed made in
> ldconfig(8) inside eglibc 2.13-36 recently unblocked in Wheezy
> (since the documentation translation is outsourced in this package).
>
> We also made some proofread in other translations, and continued to
> update the openssl one too (thus the tiny build change picked up from
> openssl upstream).
>
> The attached debdiff spares you the po4a (translations) change.
>
> unblock manpages-fr-extra/20121129
>
> Thanks in advance for considering it.
>
> Regards
>
> David
>
> [...]
Unblocked, thanks.
~Niels
--- End Message ---