[Pkg-ocaml-maint-commits] [SCM] uuidm packaging branch, master, updated. debian/0.9.4-1-4-gb56e9c1

Hendrik Tews hendrik at askra.de
Mon May 27 09:26:42 UTC 2013


The following commit has been merged in the master branch:
commit b56e9c1871665e36476cdb2b7c0a19829111869a
Author: Hendrik Tews <hendrik at askra.de>
Date:   Mon May 27 11:11:44 2013 +0200

    update packaging and add man page

diff --git a/debian/changelog b/debian/changelog
index 262b614..e33c21b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,15 @@
-uuidm (0.9.4-2) UNRELEASED; urgency=low
+uuidm (0.9.5-1) unstable; urgency=low
 
+  [ Sylvain Le Gall ]
   * Remove Sylvain Le Gall from uploaders
 
- -- Sylvain Le Gall <gildor at debian.org>  Fri, 21 Sep 2012 01:25:15 +0000
+  [ Hendrik Tews ]
+  * new upstream
+  * added myself as uploader
+  * bump standards version and debhelper compat level
+  * add man page for uuidtrip
+
+ -- Hendrik Tews <hendrik at askra.de>  Mon, 27 May 2013 09:41:06 +0200
 
 uuidm (0.9.4-1) unstable; urgency=low
 
diff --git a/debian/compat b/debian/compat
index 45a4fb7..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-8
+9
diff --git a/debian/control b/debian/control
index eaf3960..a67974b 100644
--- a/debian/control
+++ b/debian/control
@@ -2,12 +2,14 @@ Source: uuidm
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers <debian-ocaml-maint at lists.debian.org>
+Uploaders:
+ Hendrik Tews <hendrik at askra.de>
 Build-Depends:
- debhelper (>= 8),
+ debhelper (>= 9),
  ocaml-nox (>= 3.11),
  ocaml-findlib,
  dh-ocaml (>= 0.9.1)
-Standards-Version: 3.9.3
+Standards-Version: 3.9.4
 Vcs-Browser: http://git.debian.org/?p=pkg-ocaml-maint/packages/uuidm.git
 Vcs-Git: git://git.debian.org/git/pkg-ocaml-maint/packages/uuidm.git
 Homepage: http://erratique.ch/software/uuidm
diff --git a/debian/copyright b/debian/copyright
index 752c49f..0d8f1e0 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -34,6 +34,7 @@ License: BSD-C3
 Files: debian/*
 Copyright: 2008, Sylvain Le Gall <gildor at debian.org>
            2012, Stéphane Glondu <glondu at debian.org>
+           2013, Hendrik Tews <hendrik at askra.de>
 License: GPL-2+
  The Debian packaging is licensed under the GNU General Public
  License, see `/usr/share/common-licenses/GPL-2' for the full text.
diff --git a/debian/libuuidm-ocaml-dev.manpages b/debian/libuuidm-ocaml-dev.manpages
new file mode 100644
index 0000000..092a079
--- /dev/null
+++ b/debian/libuuidm-ocaml-dev.manpages
@@ -0,0 +1 @@
+debian/uuidtrip.1
diff --git a/debian/uuidtrip.1 b/debian/uuidtrip.1
new file mode 100644
index 0000000..34e8de5
--- /dev/null
+++ b/debian/uuidtrip.1
@@ -0,0 +1,101 @@
+.\"                                      Hey, EMACS: -*- nroff -*-
+.\" First parameter, NAME, should be all caps
+.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
+.\" other parameters are allowed: see man(7), man(1)
+.\"
+.\" test with nroff -man debian/uuidtrip.1 > /tmp/man.txt; less /tmp/man.txt
+.TH uuidtrip 1 "May  17, 2013"
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh        disable hyphenation
+.\" .hy        enable hyphenation
+.\" .ad l      left justify
+.\" .ad b      justify to both left and right margins
+.\" .nf        disable filling
+.\" .fi        enable filling
+.\" .br        insert line break
+.\" .sp <n>    insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH NAME
+uuidtrip \- generate universally unique identifiers (RFC 4122)
+.SH SYNOPSIS
+.B uuidtrip \fR[\fIoptions...\fR]
+.\"
+.\" ==========================================================================
+.\" ============= DESCRIPTION ================================================
+.\" ==========================================================================
+.\"
+.SH DESCRIPTION
+.B uuidtrip 
+generates and prints universally unique identifiers version 3, 5
+(name based with MD5, SHA-1 hashing) and 4 (random based)
+according to RFC 4122.
+.B uuidtrip
+provides command line access for most functions of the UUIDM
+library.
+.\"
+.\" ==========================================================================
+.\" ================ Options =================================================
+.\" ==========================================================================
+.\"
+.SH OPTIONS
+.\" ========== -r output a random based UUID version 4 (default).
+.IP "-r"
+Generate a random based UUID version 4. This is the default.
+.\" ========== -ns <uuid> namespace UUID for name based UUIDs 
+.IP "-ns \fIuuid\fR"
+set the name space for version 3 and version 5 name based UUID's
+(options 
+.B -md5
+and 
+.B -sha1\fR).
+The default is the DNS namespace.
+.\" ========== -name <name> name for name based UUIDs
+.IP "-name \fIname\fR"
+set the name for version 3 and version 5 name based UUID's
+(options 
+.B -md5
+and 
+.B -sha1\fR).
+The default is
+.I www.example.org\fR.
+.\" ========== -md5 output a MD5 name based UUID version 3.
+.IP "-md5"
+Generate an MD5 name based UUID version 3. 
+.\" ========== -sha1 output a SHA-1 name based UUID version 5.
+.IP "-sha1"
+Generate an SHA-1 name based UUID version 5.
+.\" ========== -u output hexadecimal letters in uppercase.
+.IP "-u"
+Output the generated UUID as string with uppercase letters
+(default is lowercase letters).
+.\" ========== -b output result in binary.
+.IP "-b"
+Output the generated UUID as raw bytes (binary).
+.\" ========== -help  Display this list of options
+.IP "-help"
+Print the list of options and exit
+.\" ================ --help ==================================================
+.IP --help
+Alias for
+.B -help
+.\"
+.\" ==========================================================================
+.\" ================ SEE ALSO ================================================
+.\" ==========================================================================
+.\"
+.SH SEE ALSO
+.TP
+RFC 4122
+.TP
+API documentation at \fI/usr/share/doc/libuuidm-ocaml-dev/html/
+.\"
+.\" ==========================================================================
+.\" ================ Author ==================================================
+.\" ==========================================================================
+.\"
+.SH AUTHOR
+This manual page was written
+by Hendrik Tews <hendrik at askra.de>,
+specifically for the Debian project (and may be used by others).

-- 
uuidm packaging



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