[Pkg-ocaml-maint-commits] r1239 - in trunk/packages: . getopt getopt/debian

Mike Furr mfurr@costa.debian.org
Sun, 10 Apr 2005 18:09:14 +0000


Author: mfurr
Date: 2005-04-10 18:09:14 +0000 (Sun, 10 Apr 2005)
New Revision: 1239

Added:
   trunk/packages/getopt/
   trunk/packages/getopt/debian/
   trunk/packages/getopt/debian/changelog
   trunk/packages/getopt/debian/compat
   trunk/packages/getopt/debian/control
   trunk/packages/getopt/debian/copyright
   trunk/packages/getopt/debian/docs
   trunk/packages/getopt/debian/rules
   trunk/packages/getopt/getopt_0.0.20040811.orig.tar.gz
Log:
initial import for getopt


Added: trunk/packages/getopt/debian/changelog
===================================================================
--- trunk/packages/getopt/debian/changelog	2005-04-10 18:02:04 UTC (rev 1238)
+++ trunk/packages/getopt/debian/changelog	2005-04-10 18:09:14 UTC (rev 1239)
@@ -0,0 +1,6 @@
+getopt (0.0.20040811-1) unstable; urgency=low
+
+  * Initial Release (Closes: 303971).
+
+ -- Mike Furr <mfurr@debian.org>  Sat,  9 Apr 2005 18:00:56 -0400
+

Added: trunk/packages/getopt/debian/compat
===================================================================
--- trunk/packages/getopt/debian/compat	2005-04-10 18:02:04 UTC (rev 1238)
+++ trunk/packages/getopt/debian/compat	2005-04-10 18:09:14 UTC (rev 1239)
@@ -0,0 +1 @@
+4

Added: trunk/packages/getopt/debian/control
===================================================================
--- trunk/packages/getopt/debian/control	2005-04-10 18:02:04 UTC (rev 1238)
+++ trunk/packages/getopt/debian/control	2005-04-10 18:09:14 UTC (rev 1239)
@@ -0,0 +1,16 @@
+Source: getopt
+Section: devel
+Priority: optional
+Maintainer: Mike Furr <mfurr@debian.org>
+Build-Depends: debhelper (>= 4.0.0), ocaml-nox-3.08.3, ocaml-findlib
+Standards-Version: 3.6.1
+
+Package: libgetopt-ocaml-dev
+Architecture: any
+Description: command line parsing library for OCaml
+ This package provides the Getopt module that is an alternative to the
+ Arg module in the standard distribution.  Getopt supports the general
+ command line syntax of GNU getopt and getopt_long, but is close to the
+ spirit of the Arg module: the programmer gives to the general parsing
+ function a list of possible options, together with the behavior of
+ these options.

Added: trunk/packages/getopt/debian/copyright
===================================================================
--- trunk/packages/getopt/debian/copyright	2005-04-10 18:02:04 UTC (rev 1238)
+++ trunk/packages/getopt/debian/copyright	2005-04-10 18:09:14 UTC (rev 1239)
@@ -0,0 +1,27 @@
+This package was debianized by Mike Furr <mfurr@debian.org> on
+Sat,  9 Apr 2005 18:00:56 -0400.
+
+It was downloaded from http://www.eleves.ens.fr/home/frisch/soft.html
+
+Copyright Holder: Alain Frisch
+
+License:
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the "getopt" software (the "Software"), to deal in the
+Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+The Software is provided ``as is'', without warranty of any kind, express
+or implied, including but not limited to the warranties of
+merchantability, fitness for a particular purpose and noninfringement.
+In no event shall Alain Frisch be liable for any claim, damages or
+other liability, whether in an action of contract, tort or otherwise,
+arising from, out of or in connection with the Software or the use or
+other dealings in the software.
+

Added: trunk/packages/getopt/debian/docs
===================================================================
--- trunk/packages/getopt/debian/docs	2005-04-10 18:02:04 UTC (rev 1238)
+++ trunk/packages/getopt/debian/docs	2005-04-10 18:09:14 UTC (rev 1239)
@@ -0,0 +1 @@
+README

Added: trunk/packages/getopt/debian/rules
===================================================================
--- trunk/packages/getopt/debian/rules	2005-04-10 18:02:04 UTC (rev 1238)
+++ trunk/packages/getopt/debian/rules	2005-04-10 18:09:14 UTC (rev 1239)
@@ -0,0 +1,67 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+build: build-stamp
+
+build-stamp:
+	dh_testdir
+
+	if [ -e /usr/bin/ocamlopt ]; then \
+	  $(MAKE) allopt; \
+	else \
+	  $(MAKE) all; \
+	fi
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	-$(MAKE) clean
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	mkdir -p $(CURDIR)/debian/libgetopt-ocaml-dev/usr/lib/ocaml/3.08.3/
+	$(MAKE) install OCAMLFIND_DESTDIR=$(CURDIR)/debian/libgetopt-ocaml-dev/usr/lib/ocaml/3.08.3/
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs Changes
+	dh_installdocs
+	dh_installexamples
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure


Property changes on: trunk/packages/getopt/debian/rules
___________________________________________________________________
Name: svn:executable
   + 

Added: trunk/packages/getopt/getopt_0.0.20040811.orig.tar.gz
===================================================================
(Binary files differ)


Property changes on: trunk/packages/getopt/getopt_0.0.20040811.orig.tar.gz
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream