[Pkg-ocaml-maint-commits] r990 - in packages: . syslog-ocaml syslog-ocaml/trunk syslog-ocaml/trunk/debian syslog-ocaml/trunk/debian/patches

Eric Cooper ecc-guest@costa.debian.org
Fri, 25 Feb 2005 16:02:31 +0100


Author: ecc-guest
Date: 2005-02-25 16:02:30 +0100 (Fri, 25 Feb 2005)
New Revision: 990

Added:
   packages/syslog-ocaml/
   packages/syslog-ocaml/trunk/
   packages/syslog-ocaml/trunk/debian/
   packages/syslog-ocaml/trunk/debian/changelog
   packages/syslog-ocaml/trunk/debian/control
   packages/syslog-ocaml/trunk/debian/copyright
   packages/syslog-ocaml/trunk/debian/patches/
   packages/syslog-ocaml/trunk/debian/patches/00list
   packages/syslog-ocaml/trunk/debian/patches/Makefile.dpatch
   packages/syslog-ocaml/trunk/debian/rules
   packages/syslog-ocaml/trunk/syslog-ocaml_1.0.orig.tar.gz
Log:
initial import


Added: packages/syslog-ocaml/trunk/debian/changelog
===================================================================
--- packages/syslog-ocaml/trunk/debian/changelog	2005-02-21 21:29:44 UTC (rev 989)
+++ packages/syslog-ocaml/trunk/debian/changelog	2005-02-25 15:02:30 UTC (rev 990)
@@ -0,0 +1,5 @@
+syslog-ocaml (1.0-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Eric Cooper <ecc@cmu.edu>  Wed, 25 Feb 2005 09:23:52 -0500

Added: packages/syslog-ocaml/trunk/debian/control
===================================================================
--- packages/syslog-ocaml/trunk/debian/control	2005-02-21 21:29:44 UTC (rev 989)
+++ packages/syslog-ocaml/trunk/debian/control	2005-02-25 15:02:30 UTC (rev 990)
@@ -0,0 +1,13 @@
+Source: syslog-ocaml
+Section: devel
+Priority: optional
+Maintainer: Eric Cooper <ecc@cmu.edu>
+Build-Depends: debhelper, ocaml-nox, ocaml-tools, ocaml-findlib
+Standards-Version: 3.6.1
+
+Package: libsyslog-ocaml-dev
+Architecture: any
+Section: libdevel
+Depends: ocaml-nox-3.08
+Description: syslog routines for OCaml
+ This library implements a syslog client in Objective Caml.

Added: packages/syslog-ocaml/trunk/debian/copyright
===================================================================
--- packages/syslog-ocaml/trunk/debian/copyright	2005-02-21 21:29:44 UTC (rev 989)
+++ packages/syslog-ocaml/trunk/debian/copyright	2005-02-25 15:02:30 UTC (rev 990)
@@ -0,0 +1,26 @@
+Packaged for Debian by
+    Eric Cooper <ecc@cmu.edu>
+    Wed, 23 Feb 2005 12:00:04 -0500
+Downloaded from http://www.csun.edu/~eric/syslog-1.0.tar.gz
+
+syslog(3) routines for ocaml
+This library is based on Shawn Wagner's original syslog
+library as included in annexlib, with significant modifications
+by by Eric Stokes <eric.stokes@csun.edu>.
+
+Copyright (C) 2002 Shawn Wagner <raevnos@pennmush.org>
+Copyright (C) 2005 Eric Stokes <eric.stokes@csun.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2.1 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

Added: packages/syslog-ocaml/trunk/debian/patches/00list
===================================================================
--- packages/syslog-ocaml/trunk/debian/patches/00list	2005-02-21 21:29:44 UTC (rev 989)
+++ packages/syslog-ocaml/trunk/debian/patches/00list	2005-02-25 15:02:30 UTC (rev 990)
@@ -0,0 +1 @@
+Makefile.dpatch

Added: packages/syslog-ocaml/trunk/debian/patches/Makefile.dpatch
===================================================================
--- packages/syslog-ocaml/trunk/debian/patches/Makefile.dpatch	2005-02-21 21:29:44 UTC (rev 989)
+++ packages/syslog-ocaml/trunk/debian/patches/Makefile.dpatch	2005-02-25 15:02:30 UTC (rev 990)
@@ -0,0 +1,24 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## Makefile.dpatch by Eric Cooper <ecc@cmu.edu>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Makefile patches
+
+@DPATCH@
+diff -u syslog-1.0/Makefile syslog-ocaml/Makefile
+--- syslog-1.0/Makefile	2005-02-16 18:31:49.000000000 -0500
++++ syslog-ocaml/Makefile	2005-02-23 12:07:20.000000000 -0500
+@@ -1,4 +1,6 @@
+--include Makefile.conf
++OCAMLMAKEFILE = /usr/share/ocaml-tools/OCamlMakefile
++DESTDIR = $(shell ocamlc -where | sed s:/usr/lib/:/usr/local/lib/:)
++OCAMLFIND_INSTFLAGS = -destdir $(DESTDIR)
+ 
+ SOURCES=syslog.mli syslog.ml
+ RESULT=syslog
+@@ -13,4 +15,4 @@
+ uninstall: libuninstall
+ doc: htdoc
+ 
+--include OCamlMakefile
++include $(OCAMLMAKEFILE)


Property changes on: packages/syslog-ocaml/trunk/debian/patches/Makefile.dpatch
___________________________________________________________________
Name: svn:executable
   + 

Added: packages/syslog-ocaml/trunk/debian/rules
===================================================================
--- packages/syslog-ocaml/trunk/debian/rules	2005-02-21 21:29:44 UTC (rev 989)
+++ packages/syslog-ocaml/trunk/debian/rules	2005-02-25 15:02:30 UTC (rev 990)
@@ -0,0 +1,80 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# This file is public domain software, originally written by Joey Hess.
+
+include /usr/share/dpatch/dpatch.make
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+build: build-stamp
+build-stamp: patch-stamp
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE) reallyall
+
+	touch build-stamp
+
+clean: unpatch
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp patch-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) clean
+
+	dh_clean
+
+DESTDIR = $(CURDIR)/debian/tmp$(shell ocamlc -where)
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	mkdir -p $(DESTDIR)
+	$(MAKE) DESTDIR=$(DESTDIR) install
+
+# 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
+	dh_installdocs
+	dh_installexamples
+#	dh_install
+#	dh_installmenu
+#	dh_installdebconf
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installcatalogs
+#	dh_installpam
+#	dh_installmime
+#	dh_installinit
+#	dh_installcron
+#	dh_installinfo
+#	dh_undocumented
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	dh_python
+#	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: patch build clean binary-indep binary-arch binary install
+
+# -*- makefile-mode -*-


Property changes on: packages/syslog-ocaml/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + 

Added: packages/syslog-ocaml/trunk/syslog-ocaml_1.0.orig.tar.gz
===================================================================
(Binary files differ)


Property changes on: packages/syslog-ocaml/trunk/syslog-ocaml_1.0.orig.tar.gz
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream