[cl-net-snmp-cvs] r34 - trunk/debian
ctian at common-lisp.net
ctian at common-lisp.net
Thu Sep 13 10:45:00 UTC 2007
Author: ctian
Date: Thu Sep 13 06:44:59 2007
New Revision: 34
Added:
trunk/debian/
trunk/debian/changelog
trunk/debian/compat
trunk/debian/control
trunk/debian/copyright
trunk/debian/dirs
trunk/debian/docs
trunk/debian/files
trunk/debian/install
trunk/debian/rules (contents, props changed)
Log:
Add debian packing support
Added: trunk/debian/changelog
==============================================================================
--- (empty file)
+++ trunk/debian/changelog Thu Sep 13 06:44:59 2007
@@ -0,0 +1,6 @@
+cl-net-snmp (0.6) unstable; urgency=low
+
+ * Initial release.
+
+ -- Chun Tian (binghe) <binghe at 163.org> Thu, 07 Jun 2007 17:02:19 +0800
+
Added: trunk/debian/compat
==============================================================================
--- (empty file)
+++ trunk/debian/compat Thu Sep 13 06:44:59 2007
@@ -0,0 +1 @@
+4
Added: trunk/debian/control
==============================================================================
--- (empty file)
+++ trunk/debian/control Thu Sep 13 06:44:59 2007
@@ -0,0 +1,13 @@
+Source: cl-net-snmp
+Section: libs
+Priority: optional
+Build-Depends: debhelper (>= 4.0)
+Build-Depends-Indep: dh-lisp
+Maintainer: Chun Tian (binghe) <binghe at 163.org>
+Standards-Version: 3.7.2.0
+
+Package: cl-net-snmp
+Architecture: all
+Depends: ${misc:Depends}, cl-cffi, cl-net-telent-date, cl-iolib, cl-sql-postgresql, cl-hunchentoot
+Description: Common Lisp Net-SNMP library
+ .
Added: trunk/debian/copyright
==============================================================================
--- (empty file)
+++ trunk/debian/copyright Thu Sep 13 06:44:59 2007
@@ -0,0 +1,25 @@
+;;; Copyright (c) 2007, Chun Tian (binghe). All rights reserved.
+
+;;; Redistribution and use in source and binary forms, with or without
+;;; modification, are permitted provided that the following conditions
+;;; are met:
+
+;;; * Redistributions of source code must retain the above copyright
+;;; notice, this list of conditions and the following disclaimer.
+
+;;; * Redistributions in binary form must reproduce the above
+;;; copyright notice, this list of conditions and the following
+;;; disclaimer in the documentation and/or other materials
+;;; provided with the distribution.
+
+;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
+;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Added: trunk/debian/dirs
==============================================================================
--- (empty file)
+++ trunk/debian/dirs Thu Sep 13 06:44:59 2007
@@ -0,0 +1 @@
+usr/share/common-lisp/source/cl-iolib
Added: trunk/debian/docs
==============================================================================
--- (empty file)
+++ trunk/debian/docs Thu Sep 13 06:44:59 2007
@@ -0,0 +1,3 @@
+README
+copyright
+
Added: trunk/debian/files
==============================================================================
--- (empty file)
+++ trunk/debian/files Thu Sep 13 06:44:59 2007
@@ -0,0 +1 @@
+cl-net-snmp_0.6_all.deb libs optional
Added: trunk/debian/install
==============================================================================
--- (empty file)
+++ trunk/debian/install Thu Sep 13 06:44:59 2007
@@ -0,0 +1 @@
+*.asd *.lisp usr/share/common-lisp/source/cl-net-snmp/
Added: trunk/debian/rules
==============================================================================
--- (empty file)
+++ trunk/debian/rules Thu Sep 13 06:44:59 2007
@@ -0,0 +1,44 @@
+#!/usr/bin/make -f
+# MAde with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Cristoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+ dh_clean
+
+# Build architecture-independent files here.
+binary-indep: build
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ dh_install
+ dh_lisp
+ dh_installdocs
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+source diff:
+ @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary
More information about the Cl-net-snmp-cvs
mailing list