--- cl-xlunit-0.6.3.orig/debian/changelog +++ cl-xlunit-0.6.3/debian/changelog @@ -0,0 +1,73 @@ +cl-xlunit (0.6.3-2.2) unstable; urgency=medium + + * Non-maintainer upload. + * debian/rules: Add build-{arch,indep} (Closes: #998971). + + -- Marcos Talau Tue, 01 Nov 2022 23:51:27 -0300 + +cl-xlunit (0.6.3-2.1) unstable; urgency=medium + + * Non-maintainer upload. + * No-change rebuild to remove dependency on common-lisp-controller. + + -- Sébastien Villemot Wed, 18 Sep 2019 12:24:28 +0200 + +cl-xlunit (0.6.3-2) unstable; urgency=low + + * Build with debhelper extension dh-lisp + * control: Add Vcs-Browser field. Fix Depends field. + + -- Kevin M. Rosenberg Mon, 03 Aug 2009 20:32:20 -0600 + +cl-xlunit (0.6.3-1) unstable; urgency=low + + * New upstream + * debian/watch: New file + * debian/control: Require debhelper 7. Change to new lisp section. + Add Vcs-Git and Homepage fields. + * debian/rules: Update for DH7, architecture-independent build + * debian/{prerm,postrm}: Remove path from binary function + + -- Kevin M. Rosenberg Sat, 01 Aug 2009 20:13:35 -0600 + +cl-xlunit (0.6.2-2) unstable; urgency=low + + * debian/control: Use build-depends, update standards-version + + -- Kevin M. Rosenberg Sun, 09 Sep 2007 19:39:08 -0600 + +cl-xlunit (0.6.2-1) unstable; urgency=low + + * Remove textui invocation on load of tests.lisp + + -- Kevin M. Rosenberg Sun, 7 Mar 2004 18:41:39 -0700 + +cl-xlunit (0.6.1-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Thu, 14 Aug 2003 17:25:21 -0600 + +cl-xlunit (0.6.0-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Sun, 10 Aug 2003 03:32:47 -0600 + +cl-xlunit (0.5.0-1) unstable; urgency=low + + * New usptream + + -- Kevin M. Rosenberg Mon, 4 Aug 2003 13:39:48 -0600 + +cl-xlunit (0.2.0-1) unstable; urgency=low + + * New version + + -- Kevin M. Rosenberg Mon, 4 Aug 2003 05:35:35 -0600 + +cl-xlunit (0.1.0-1) unstable; urgency=low + + * Initial upload + + -- Kevin M. Rosenberg Mon, 4 Aug 2003 03:40:37 -0600 --- cl-xlunit-0.6.3.orig/debian/compat +++ cl-xlunit-0.6.3/debian/compat @@ -0,0 +1 @@ +7 --- cl-xlunit-0.6.3.orig/debian/control +++ cl-xlunit-0.6.3/debian/control @@ -0,0 +1,20 @@ +Source: cl-xlunit +Section: lisp +Priority: optional +Maintainer: Kevin M. Rosenberg +Build-Depends-Indep: dh-lisp +Build-Depends: debhelper (>> 7.0.0) +Standards-Version: 3.8.2.0 +Homepage: http://files.b9.com/xlunit/ +Vcs-Git: git://git.b9.com/xlunit.git +Vcs-Browser: http://git.b9.com/?p=xlunit.git + +Package: cl-xlunit +Architecture: all +Depends: ${misc:Depends} +Description: Common Lisp eXtreme Lisp Unit Testing Package + XLUnit provides a unit testing package for Common Lisp. + It is based on the XPTest package by OnShore development, but is + rewritten to be closer in usage to the JUnit package. Also, it is + designed to be used with significantly less overhead on the + part of the test author compared to XPTest. --- cl-xlunit-0.6.3.orig/debian/copyright +++ cl-xlunit-0.6.3/debian/copyright @@ -0,0 +1,38 @@ +Debian Copyright Section +======================== + +Upstream Source URL: http://files.b9.com/xlunit/ +Upstream Authors: Kevin M. Rosenberg +Debian Maintainer: Kevin M. Rosenberg + + +Upstream Copyright Statement +============================ +Copyright (c) 2003 Kevin M. Rosenberg +Copyright (C) 2002 Canoo Engineering AG + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. 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. +3. Neither the name of the author nor the names of the contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS 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 AUTHORS OR CONTRIBUTORS 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. --- cl-xlunit-0.6.3.orig/debian/rules +++ cl-xlunit-0.6.3/debian/rules @@ -0,0 +1,47 @@ +#!/usr/bin/make -f + +pkg := xlunit +debpkg := cl-xlunit + +clc-source := usr/share/common-lisp/source +clc-systems := usr/share/common-lisp/systems +clc-files := $(clc-source)/$(pkg) + + +build: + +clean: + dh_testdir + dh_testroot + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + dh_install xlunit.asd $(clc-files) + dh_install *.lisp $(clc-files) + +binary-indep: install + dh_testdir + dh_testroot + dh_installdocs + dh_installexamples example.lisp + dh_installchangelogs + dh_lisp + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: + +binary: binary-indep + +build-arch: build +build-indep: build + +.PHONY: build build-arch build-indep clean binary-indep binary-arch binary install --- cl-xlunit-0.6.3.orig/debian/watch +++ cl-xlunit-0.6.3/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://files.b9.com/xlunit/xlunit-(\d+.*)\.tar\.gz