--- cl-babel-0.3.0+20091229.orig/debian/README.Debian +++ cl-babel-0.3.0+20091229/debian/README.Debian @@ -0,0 +1,2 @@ +The upstream repository is at http://common-lisp.net/project/babel/darcs/babel + --- cl-babel-0.3.0+20091229.orig/debian/changelog +++ cl-babel-0.3.0+20091229/debian/changelog @@ -0,0 +1,26 @@ +cl-babel (0.3.0+20091229-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Don't install non-existent files (Closes: #823044). + * Add explicit debian/source/format. + + -- Andrey Rahmatullin Sat, 26 Nov 2016 16:54:50 +0500 + +cl-babel (0.3.0+20091229-1) unstable; urgency=low + + * New upstream with minor changes. + + -- Peter Van Eynde Thu, 31 Dec 2009 14:42:05 +0100 + +cl-babel (0.3.0+20090601-2) unstable; urgency=low + + * Fixed debian/copyright file to include all authors + + -- Peter Van Eynde Tue, 10 Nov 2009 07:05:09 +0100 + +cl-babel (0.3.0+20090601-1) unstable; urgency=low + + * First packaged. + * Added dummy watch file + + -- Peter Van Eynde Sat, 07 Nov 2009 14:25:03 +0100 --- cl-babel-0.3.0+20091229.orig/debian/compat +++ cl-babel-0.3.0+20091229/debian/compat @@ -0,0 +1 @@ +7 --- cl-babel-0.3.0+20091229.orig/debian/control +++ cl-babel-0.3.0+20091229/debian/control @@ -0,0 +1,28 @@ +Source: cl-babel +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://common-lisp.net/project/babel/ +Vcs-Darcs: http://darcs.debian.org/darcs/pkg-common-lisp/cl-babel +Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-common-lisp/cl-babel;a=summary + +Package: cl-babel +Architecture: all +Depends: ${misc:Depends}, ${shlibs:Depends}, cl-trivial-features, cl-alexandria +Description: A charset encoding/decoding library, not unlike GNU libiconv + Written completely in Common Lisp, not using a foreign library. + . + It strives to achieve decent performance. Most of the + encoding/decoding algorithms have been adapted from Clozure CL's source. + . + Another important goal is reusability. Similarly to SBCL, it defines an + interface wherein the algorithms can be reused between a variety of data types + so long we're dealing with conversions between octets and unicode code points. + . + Babel comes with converters between strings and octet vectors but can be + easily extended to deal with, e.g., strings and foreign memory, vectors and + Closure's runes, etc... --- cl-babel-0.3.0+20091229.orig/debian/copyright +++ cl-babel-0.3.0+20091229/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Peter Van Eynde +in Nov 2009 + +The upstream darcs archive is at http://common-lisp.net/project/babel/darcs/babel + + +Upstream Authors: +src/enc-cp1251.lisp is (C) 2009 Andrey Moskvitin +src/streams.lisp is (C) 2005-2007 Dr. Edmund Weitz and (C) 2008 Attila Lendvai. +remaining files: 2007-2009 Luis Oliveira + + +Copyright: (the warning in the NOTES file is not longer current) + +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. --- cl-babel-0.3.0+20091229.orig/debian/dirs +++ cl-babel-0.3.0+20091229/debian/dirs @@ -0,0 +1,3 @@ +usr/share/common-lisp/source/babel +usr/share/common-lisp/source/babel/src +usr/share/common-lisp/source/babel/tests --- cl-babel-0.3.0+20091229.orig/debian/docs +++ cl-babel-0.3.0+20091229/debian/docs @@ -0,0 +1,3 @@ +COPYRIGHT +NOTES +README --- cl-babel-0.3.0+20091229.orig/debian/install +++ cl-babel-0.3.0+20091229/debian/install @@ -0,0 +1,3 @@ +*.asd usr/share/common-lisp/source/babel/ +src/*.lisp usr/share/common-lisp/source/babel/src/ +tests/*.lisp usr/share/common-lisp/source/babel/tests/ --- cl-babel-0.3.0+20091229.orig/debian/rules +++ cl-babel-0.3.0+20091229/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 + --- cl-babel-0.3.0+20091229.orig/debian/source/format +++ cl-babel-0.3.0+20091229/debian/source/format @@ -0,0 +1 @@ +1.0 --- cl-babel-0.3.0+20091229.orig/debian/watch +++ cl-babel-0.3.0+20091229/debian/watch @@ -0,0 +1 @@ +# upstream in darcs