[Pkg-ocaml-maint-commits] r2624 - in trunk/packages: . debcheck debcheck/trunk debcheck/trunk/debian debcheck/upstream

Ralf Treinen treinen at costa.debian.org
Tue Apr 18 13:33:25 UTC 2006


Author: treinen
Date: 2006-04-18 13:33:23 +0000 (Tue, 18 Apr 2006)
New Revision: 2624

Added:
   trunk/packages/debcheck/
   trunk/packages/debcheck/trunk/
   trunk/packages/debcheck/trunk/debian/
   trunk/packages/debcheck/trunk/debian/changelog
   trunk/packages/debcheck/trunk/debian/compat
   trunk/packages/debcheck/trunk/debian/control
   trunk/packages/debcheck/trunk/debian/control.in
   trunk/packages/debcheck/trunk/debian/copyright
   trunk/packages/debcheck/trunk/debian/dirs
   trunk/packages/debcheck/trunk/debian/rules
   trunk/packages/debcheck/trunk/debian/svn-deblayout
   trunk/packages/debcheck/upstream/
   trunk/packages/debcheck/upstream/debcheck_0.0.2006.03.19.orig.tar.gz
Log:
new



Property changes on: trunk/packages/debcheck/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: trunk/packages/debcheck/trunk/debian/changelog
===================================================================
--- trunk/packages/debcheck/trunk/debian/changelog	2006-04-18 06:31:48 UTC (rev 2623)
+++ trunk/packages/debcheck/trunk/debian/changelog	2006-04-18 13:33:23 UTC (rev 2624)
@@ -0,0 +1,7 @@
+debcheck (0.0.2006.03.19-1) experimental; urgency=low
+
+  * Initial Release.
+
+ -- Ralf Treinen <treinen at debian.org>  Mon, 17 Apr 2006 22:11:15 +0200
+
+

Added: trunk/packages/debcheck/trunk/debian/compat
===================================================================
--- trunk/packages/debcheck/trunk/debian/compat	2006-04-18 06:31:48 UTC (rev 2623)
+++ trunk/packages/debcheck/trunk/debian/compat	2006-04-18 13:33:23 UTC (rev 2624)
@@ -0,0 +1 @@
+4

Added: trunk/packages/debcheck/trunk/debian/control
===================================================================
--- trunk/packages/debcheck/trunk/debian/control	2006-04-18 06:31:48 UTC (rev 2623)
+++ trunk/packages/debcheck/trunk/debian/control	2006-04-18 13:33:23 UTC (rev 2624)
@@ -0,0 +1,14 @@
+Source: debcheck
+Section: debian
+Priority: optional
+Maintainer: Ralf Treinen <treinen at debian.org>
+Standards-Version: 3.6.2
+Build-Depends-Indep: ocaml-nox-3.09.1, debhelper (>= 4.0)
+
+Package: debcheck
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: Checks whether package dependencies can be satisfied
+  This software checks whether for every package of a distribution it is
+  possible to satisfy its dependencies and conflicts within this
+  distribution.

Added: trunk/packages/debcheck/trunk/debian/control.in
===================================================================
--- trunk/packages/debcheck/trunk/debian/control.in	2006-04-18 06:31:48 UTC (rev 2623)
+++ trunk/packages/debcheck/trunk/debian/control.in	2006-04-18 13:33:23 UTC (rev 2624)
@@ -0,0 +1,14 @@
+Source: debcheck
+Section: debian
+Priority: optional
+Maintainer: Ralf Treinen <treinen at debian.org>
+Standards-Version: 3.6.2
+Build-Depends-Indep: ocaml-nox-#OcamlABI#, debhelper (>= 4.0)
+
+Package: debcheck
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: Checks whether package dependencies can be satisfied
+  This software checks whether for every package of a distribution it is
+  possible to satisfy its dependencies and conflicts within this
+  distribution.

Added: trunk/packages/debcheck/trunk/debian/copyright
===================================================================
--- trunk/packages/debcheck/trunk/debian/copyright	2006-04-18 06:31:48 UTC (rev 2623)
+++ trunk/packages/debcheck/trunk/debian/copyright	2006-04-18 13:33:23 UTC (rev 2624)
@@ -0,0 +1,21 @@
+This package was debianized by Ralf Treinen <treinen at debian.org> on
+Mon Apr 17 20:19:35 UTC 2006
+
+It was downloaded from
+https://protactinium.pps.jussieu.fr:12345/svn/edos/users/vouillon
+
+Upstream Author:
+Jerome Vouillon <Jerome.Vouillon at pps.jussieu.fr>
+
+Copyright (C) 2005 Jerome Vouillon
+
+These programs are free software; you can redistribute them and/or
+modify them under the terms of the GNU General Public License as
+published by the Free Software Foundation.  License, or (at your
+option) any later version.
+
+These programs are distributed in the hope that they will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  On Debian
+systems, the complete text of the GNU General Public License can be
+found in the /usr/share/common-licenses/GPL file.

Added: trunk/packages/debcheck/trunk/debian/dirs
===================================================================
--- trunk/packages/debcheck/trunk/debian/dirs	2006-04-18 06:31:48 UTC (rev 2623)
+++ trunk/packages/debcheck/trunk/debian/dirs	2006-04-18 13:33:23 UTC (rev 2624)
@@ -0,0 +1,2 @@
+usr/bin
+usr/share/man/man1

Added: trunk/packages/debcheck/trunk/debian/rules
===================================================================
--- trunk/packages/debcheck/trunk/debian/rules	2006-04-18 06:31:48 UTC (rev 2623)
+++ trunk/packages/debcheck/trunk/debian/rules	2006-04-18 13:33:23 UTC (rev 2624)
@@ -0,0 +1,54 @@
+#!/usr/bin/make -f
+# debian/rules for debcheck
+
+# export DH_VERBOSE=1
+
+DESTDIR=`pwd`/debian/debcheck
+
+# for package maintainers only - target not used in build process!
+OCAMLABI := $(shell ocamlc -version)
+debian/control:
+	sed -e 's%#OcamlABI#%$(OCAMLABI)%' $@.in >$@
+
+Makefile: patch
+	dh_testdir
+	./configure\
+		--bindir=$(DESTDIR)/usr/bin\
+		--prefix=$(DESTDIR)/usr/share
+	touch configure-stamp
+
+build: debcheck
+debcheck:
+	dh_testdir
+	$(MAKE)
+
+clean: 
+	dh_testdir
+	dh_testroot
+	-$(MAKE) clean
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	cp debcheck /usr/bin
+
+binary-arch: build install
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installchangelogs 
+	dh_link
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums 
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install debian/control


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

Added: trunk/packages/debcheck/trunk/debian/svn-deblayout
===================================================================
--- trunk/packages/debcheck/trunk/debian/svn-deblayout	2006-04-18 06:31:48 UTC (rev 2623)
+++ trunk/packages/debcheck/trunk/debian/svn-deblayout	2006-04-18 13:33:23 UTC (rev 2624)
@@ -0,0 +1,3 @@
+origDir=../upstream
+origUrl=svn+ssh://svn.debian.org/svn/pkg-ocaml-maint/trunk/packages/debcheck/upstream
+tagsUrl=svn+ssh://svn.debian.org/svn/pkg-ocaml-maint/tags/packages/debcheck

Added: trunk/packages/debcheck/upstream/debcheck_0.0.2006.03.19.orig.tar.gz
===================================================================
(Binary files differ)


Property changes on: trunk/packages/debcheck/upstream/debcheck_0.0.2006.03.19.orig.tar.gz
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream




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