Codebase list cl-portable-aserve / d39c165
Add an autopkgtest that loads the ASDF systems on sbcl and clisp Sébastien Villemot 5 years ago
4 changed file(s) with 21 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
1313 * Drop "cl-" prefix in directories under /u/s/common-lisp/source/, for
1414 consistency with other packages
1515 * examples.patch: new patch, fixes location of examples on the filesystem
16 * Add an autopkgtest that loads the ASDF systems on sbcl and clisp
1617
1718 -- Sébastien Villemot <sebastien@debian.org> Wed, 13 Feb 2019 10:41:59 +0100
1819
55 override_dh_install:
66 dh_install
77 find debian/cl-acl-compat/ -name .cvsignore -delete
8 find debian/cl-aserve/ -name .cvsignore -delete
89 find debian/cl-webactions/ -name .cvsignore -delete
910
1011 override_dh_installchangelogs:
0 Test-Command: sbcl --script debian/tests/runtests.lisp
1 Depends: @, sbcl
2 Restrictions: allow-stderr
3
4 # ecl is not supported
5 #Test-Command: ecl -norc -shell debian/tests/runtests.lisp
6 #Depends: @, ecl
7 #Restrictions: allow-stderr
8
9 Test-Command: clisp -norc debian/tests/runtests.lisp
10 Depends: @, clisp
11 Restrictions: allow-stderr
0 (require "asdf")
1
2 (let ((asdf:*user-cache* (uiop:getenv "AUTOPKGTEST_TMP"))) ; Store FASL in some temporary dir
3 (asdf:load-system "acl-compat")
4 (asdf:load-system "htmlgen")
5 (asdf:load-system "aserve")
6 (asdf:load-system "webactions"))