diff -Nru cl-rss-0.9.1/debian/changelog cl-rss-0.9.1.1/debian/changelog --- cl-rss-0.9.1/debian/changelog 2015-06-18 23:43:38.000000000 +0000 +++ cl-rss-0.9.1.1/debian/changelog 2020-09-29 14:39:24.000000000 +0000 @@ -1,3 +1,10 @@ +cl-rss (0.9.1.1-1) unstable; urgency=low + + * Remove non-functional test-op from upstream + * (require 'rss) tested and working (closes: 916549) + + -- Kevin M. Rosenberg Tue, 29 Sep 2020 08:39:24 -0600 + cl-rss (0.9.1-1) unstable; urgency=low * New upstream diff -Nru cl-rss-0.9.1/debian/compat cl-rss-0.9.1.1/debian/compat --- cl-rss-0.9.1/debian/compat 2009-08-02 07:01:54.000000000 +0000 +++ cl-rss-0.9.1.1/debian/compat 2020-09-29 14:39:24.000000000 +0000 @@ -1 +1 @@ -7 +11 diff -Nru cl-rss-0.9.1/debian/control cl-rss-0.9.1.1/debian/control --- cl-rss-0.9.1/debian/control 2015-06-19 00:21:28.000000000 +0000 +++ cl-rss-0.9.1.1/debian/control 2020-09-29 14:39:24.000000000 +0000 @@ -3,11 +3,11 @@ Priority: optional Maintainer: Kevin M. Rosenberg Build-Depends-Indep: dh-lisp -Build-Depends: debhelper (>> 7.0.0) -Standards-Version: 3.9.5.0 -Homepage: http://files.b9.com/cl-rss/ -Vcs-Git: git://git.b9.com/cl-rss.git -Vcs-Browser: http://git.b9.com/?p=cl-rss.git +Build-Depends: debhelper (>> 11.0.0) +Standards-Version: 4.5.0.3 +Homepage: http://files.kpe.io/cl-rss/ +Vcs-Git: git://git.kpe.io/cl-rss.git +Vcs-Browser: http://git.kpe.io/?p=cl-rss.git Package: cl-rss Architecture: all diff -Nru cl-rss-0.9.1/debian/copyright cl-rss-0.9.1.1/debian/copyright --- cl-rss-0.9.1/debian/copyright 2007-09-04 06:27:42.000000000 +0000 +++ cl-rss-0.9.1.1/debian/copyright 2015-08-29 06:12:34.000000000 +0000 @@ -1,7 +1,7 @@ Debian Copyright Section ======================== -Upstream Source URL: http://files.b9.com/cl-rss/ +Upstream Source URL: http://files.kpe.io/cl-rss/ Upstream Authors: Kevin M. Rosenberg Debian Maintainer: Kevin M. Rosenberg diff -Nru cl-rss-0.9.1/debian/rules cl-rss-0.9.1.1/debian/rules --- cl-rss-0.9.1/debian/rules 2012-09-04 23:14:12.000000000 +0000 +++ cl-rss-0.9.1.1/debian/rules 2020-09-29 14:39:24.000000000 +0000 @@ -7,9 +7,8 @@ clc-systems := usr/share/common-lisp/systems clc-files := $(clc-source)/$(pkg) - +build: build-indep build-arch build-indep: - build-arch: clean: diff -Nru cl-rss-0.9.1/debian/watch cl-rss-0.9.1.1/debian/watch --- cl-rss-0.9.1/debian/watch 2009-08-02 07:04:03.000000000 +0000 +++ cl-rss-0.9.1.1/debian/watch 2015-08-29 06:12:34.000000000 +0000 @@ -1,2 +1,2 @@ version=3 -http://files.b9.com/cl-rss/cl-rss-([\d\.]*)\.tar\.gz +http://files.kpe.io/cl-rss/cl-rss-([\d\.]*)\.tar\.gz diff -Nru cl-rss-0.9.1/rss.asd cl-rss-0.9.1.1/rss.asd --- cl-rss-0.9.1/rss.asd 2012-09-04 22:10:03.000000000 +0000 +++ cl-rss-0.9.1.1/rss.asd 2020-09-29 14:40:03.000000000 +0000 @@ -20,7 +20,7 @@ :maintainer "Kevin M. Rosenberg " :licence "BSD" :description "Remote Site Summary" - :version "0.9.0" + :version "0.9.1.1" :properties ((#:author-email . "kevin@rosenberg.net") ((#:albert #:output-dir) . "albert-docs/") @@ -33,20 +33,4 @@ :depends-on (kmrcl xmls #-allegro aserve) :components ((:file "package") - (:file "main") - )) - -(defmethod perform ((o test-op) (c (eql (find-system 'rss)))) - (operate 'load-op 'rss-tests) - (operate 'test-op 'rss-tests :force t)) - -(defsystem rss-tests - :depends-on (rss ptester) - :components ((:file "tests"))) - -(defmethod perform ((o test-op) (c (eql (find-system 'rss-tests)))) - (operate 'load-op 'rss-tests) - (or (funcall (intern (symbol-name '#:do-tests) - (find-package '#:rss-tests))) - (error "test-op failed"))) - + (:file "main")))