[Pkg-ocaml-maint-commits] r5359 - in /trunk/packages/bibtex2html/trunk/debian: changelog doc-base.bibtex2html patches/00list patches/01_strings_utf8.dpatch patches/03_charset.dpatch

treinen at users.alioth.debian.org treinen at users.alioth.debian.org
Sat Mar 22 10:56:51 UTC 2008


Author: treinen
Date: Sat Mar 22 10:56:51 2008
New Revision: 5359

URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/?sc=1&rev=5359
Log:
minor changes, mostly conversion to utf8

Added:
    trunk/packages/bibtex2html/trunk/debian/patches/01_strings_utf8.dpatch   (with props)
Modified:
    trunk/packages/bibtex2html/trunk/debian/changelog
    trunk/packages/bibtex2html/trunk/debian/doc-base.bibtex2html
    trunk/packages/bibtex2html/trunk/debian/patches/00list
    trunk/packages/bibtex2html/trunk/debian/patches/03_charset.dpatch

Modified: trunk/packages/bibtex2html/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/bibtex2html/trunk/debian/changelog?rev=5359&op=diff
==============================================================================
--- trunk/packages/bibtex2html/trunk/debian/changelog (original)
+++ trunk/packages/bibtex2html/trunk/debian/changelog Sat Mar 22 10:56:51 2008
@@ -1,3 +1,12 @@
+bibtex2html (1.91-2) UNRELEASED; urgency=low
+
+  * Recompiled with ocaml 3.10.2
+  * Convert doc-base.bibtex2html to UTF8.
+  * patch 03_charset: change format to use run directly dpatch-run
+  * new patch 01_strings_utf8: print copyright information in utf8.
+
+ -- Ralf Treinen <treinen at debian.org>  Sat, 22 Mar 2008 11:58:06 +0100
+
 bibtex2html (1.91-1) unstable; urgency=low
 
   * New upstream release. This release fixes a bug with protected double-quotes

Modified: trunk/packages/bibtex2html/trunk/debian/doc-base.bibtex2html
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/bibtex2html/trunk/debian/doc-base.bibtex2html?rev=5359&op=diff
==============================================================================
--- trunk/packages/bibtex2html/trunk/debian/doc-base.bibtex2html (original)
+++ trunk/packages/bibtex2html/trunk/debian/doc-base.bibtex2html Sat Mar 22 10:56:51 2008
@@ -1,6 +1,6 @@
 Document: bibtex2html
 Title: BibTeX2HTML Manual
-Author: Jean-Christophe Filliâtre and Claude Marché
+Author: Jean-Christophe Filliâtre and Claude Marché
 Abstract: This manual describes how to use bibtex2html (a BibTeX to HTML translator) and bib2bib (a tool to extract BibTeX entries from a BibTeX data base).
 Section: tex
 

Modified: trunk/packages/bibtex2html/trunk/debian/patches/00list
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/bibtex2html/trunk/debian/patches/00list?rev=5359&op=diff
==============================================================================
--- trunk/packages/bibtex2html/trunk/debian/patches/00list (original)
+++ trunk/packages/bibtex2html/trunk/debian/patches/00list Sat Mar 22 10:56:51 2008
@@ -1,2 +1,3 @@
+01_strings_utf8
 03_charset
 06_doc-noexamples

Added: trunk/packages/bibtex2html/trunk/debian/patches/01_strings_utf8.dpatch
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/bibtex2html/trunk/debian/patches/01_strings_utf8.dpatch?rev=5359&op=file
==============================================================================
--- trunk/packages/bibtex2html/trunk/debian/patches/01_strings_utf8.dpatch (added)
+++ trunk/packages/bibtex2html/trunk/debian/patches/01_strings_utf8.dpatch Sat Mar 22 10:56:51 2008
@@ -1,0 +1,19 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## tarballs.dpatch by Ralf Treinen <treinen at debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Print copyright information in UTF8
+
+ at DPATCH@
+diff -urNad trunk~/copying.ml trunk/copying.ml
+--- trunk~/copying.ml	2008-02-20 09:12:52.000000000 +0100
++++ trunk/copying.ml	2008-03-22 11:52:25.000000000 +0100
+@@ -36,7 +36,7 @@
+ 
+ let authors = match Sys.os_type with
+   | "Win32" -> "Jean-Christophe Filli\131tre and Claude March\130"
+-  | _       -> "Jean-Christophe Filliâtre and Claude Marché" (* iso latin 1 *)
++  | _       -> "Jean-Christophe Filliâtre and Claude Marché" (* utf8 *)
+ 
+ let banner softname =
+   if not !Options.quiet then begin

Propchange: trunk/packages/bibtex2html/trunk/debian/patches/01_strings_utf8.dpatch
------------------------------------------------------------------------------
    svn:executable = *

Modified: trunk/packages/bibtex2html/trunk/debian/patches/03_charset.dpatch
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/bibtex2html/trunk/debian/patches/03_charset.dpatch?rev=5359&op=diff
==============================================================================
--- trunk/packages/bibtex2html/trunk/debian/patches/03_charset.dpatch (original)
+++ trunk/packages/bibtex2html/trunk/debian/patches/03_charset.dpatch Sat Mar 22 10:56:51 2008
@@ -1,25 +1,7 @@
-#!/bin/sh -e
+#! /bin/sh /usr/share/dpatch/dpatch-run
 ## 03_charset.dpatch by Ralf Treinen <treinen at debian.org>
 ##
 ## DP: get the charset from the locale or command line option
-
-if [ $# -ne 1 ]; then
-    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-    exit 1
-fi
-
-[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
-patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
-
-case "$1" in
-       -patch) patch $patch_opts -p1 < $0;;
-       -unpatch) patch $patch_opts -p1 -R < $0;;
-        *)
-                echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-                exit 1;;
-esac
-
-exit 0
 
 @DPATCH@
 diff -urNad trunk~/Makefile.in trunk/Makefile.in




More information about the Pkg-ocaml-maint-commits mailing list