--- trivial-features-0.6.orig/debian/changelog +++ trivial-features-0.6/debian/changelog @@ -0,0 +1,6 @@ +trivial-features (0.6-1) unstable; urgency=low + + * First packaged. + * Added dummy watch file + + -- Peter Van Eynde Sat, 07 Nov 2009 14:25:09 +0100 --- trivial-features-0.6.orig/debian/watch +++ trivial-features-0.6/debian/watch @@ -0,0 +1 @@ +# upstream in darcs --- trivial-features-0.6.orig/debian/control +++ trivial-features-0.6/debian/control @@ -0,0 +1,18 @@ +Source: trivial-features +Section: lisp +Priority: optional +Maintainer: Debian Common Lisp Team +Uploaders: Peter Van Eynde +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: dh-lisp +Standards-Version: 3.8.3 +Homepage: http://www.cliki.net/trivial-features +Vcs-Darcs: http://darcs.debian.org/darcs/pkg-common-lisp/trivial-features +Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-common-lisp/trivial-features;a=summary + +Package: cl-trivial-features +Architecture: all +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: An abstraction layer for the *features* that implementations use + trivial-features ensures consistent *FEATURES* across multiple Common + Lisp implementations. --- trivial-features-0.6.orig/debian/README.Debian +++ trivial-features-0.6/debian/README.Debian @@ -0,0 +1,2 @@ +The upstream repository is at http://common-lisp.net/~loliveira/darcs/trivial-features + --- trivial-features-0.6.orig/debian/copyright +++ trivial-features-0.6/debian/copyright @@ -0,0 +1,30 @@ +This package was debianized by Peter Van Eynde +in Nov 2009 + +The upstream darcs archive is at http://common-lisp.net/~loliveira/darcs/trivial-features + +Upstream Author: Luis Oliveira + +Copyright: + +Copyright (C) 2007, Luis Oliveira + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (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 THE AUTHORS OR COPYRIGHT +HOLDERS 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. --- trivial-features-0.6.orig/debian/docs +++ trivial-features-0.6/debian/docs @@ -0,0 +1 @@ +README SPEC --- trivial-features-0.6.orig/debian/rules +++ trivial-features-0.6/debian/rules @@ -0,0 +1,50 @@ +#!/usr/bin/make -f + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + # Add here commands to compile the package. + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + # Add here commands to clean up after the build process. + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + # Add here commands to install the package into debian/xmls. + dh_installdirs + dh_install + +# Build architecture-dependent files here. +binary-arch: + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_lisp + 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 + --- trivial-features-0.6.orig/debian/dirs +++ trivial-features-0.6/debian/dirs @@ -0,0 +1,3 @@ +usr/share/common-lisp/source/trivial-features +usr/share/common-lisp/source/trivial-features/src +usr/share/common-lisp/source/trivial-features/tests --- trivial-features-0.6.orig/debian/install +++ trivial-features-0.6/debian/install @@ -0,0 +1,3 @@ +*.asd *.lisp usr/share/common-lisp/source/trivial-features/ +src/*.lisp usr/share/common-lisp/source/trivial-features/src/ +tests/*.lisp usr/share/common-lisp/source/trivial-features/tests/ --- trivial-features-0.6.orig/debian/compat +++ trivial-features-0.6/debian/compat @@ -0,0 +1 @@ +7