[med-svn] [Git][med-team/cl-umlisp][master] 10 commits: d/watch: version=5 + fix
Andreas Tille (@tille)
gitlab at salsa.debian.org
Mon Jun 1 20:35:36 BST 2026
Andreas Tille pushed to branch master at Debian Med / cl-umlisp
Commits:
610936d8 by Andreas Tille at 2026-06-01T21:12:15+02:00
d/watch: version=5 + fix
- - - - -
633767fe by Andreas Tille at 2026-06-01T21:12:56+02:00
Use webarchive as Homepage
- - - - -
65d069b4 by Andreas Tille at 2026-06-01T21:14:37+02:00
d/copyright: DEP5
- - - - -
0f0a7245 by Andreas Tille at 2026-06-01T21:19:42+02:00
debhelper-compat (= 13)
- - - - -
9f1f158b by Andreas Tille at 2026-06-01T21:21:54+02:00
Move dh-lisp from Build-Depends-Indep to Build-Depends to pass build source job
- - - - -
c599d634 by Andreas Tille at 2026-06-01T21:23:39+02:00
Silence lintian about insecure URI
- - - - -
28affe65 by Andreas Tille at 2026-06-01T21:31:53+02:00
Short dh
- - - - -
4802db90 by Andreas Tille at 2026-06-01T21:32:38+02:00
Standards-Version: 4.7.4 (Removed Priotity field)
- - - - -
2bdb2b54 by Andreas Tille at 2026-06-01T21:33:23+02:00
Upload to unstable
- - - - -
ee44d246 by Andreas Tille at 2026-06-01T21:35:19+02:00
Add salsa-ci.yml
- - - - -
8 changed files:
- debian/changelog
- − debian/compat
- debian/control
- debian/copyright
- debian/rules
- + debian/salsa-ci.yml
- + debian/source/lintian-overrides
- debian/watch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,8 +1,17 @@
-cl-umlisp (1:2007ac.2-7) UNRELEASED; urgency=medium
+cl-umlisp (1:2007ac.2-7) unstable; urgency=medium
* Maintain in Debian Med team
-
- -- Andreas Tille <tille at debian.org> Mon, 01 Jun 2026 17:10:45 +0200
+ * d/watch: version=5 + fix
+ * Use webarchive as Homepage
+ * d/copyright: DEP5
+ * debhelper-compat (= 13)
+ * Move dh-lisp from Build-Depends-Indep to Build-Depends to pass build
+ source job
+ * Silence lintian about insecure URI
+ * Short dh
+ * Standards-Version: 4.7.4 (Removed Priotity field)
+
+ -- Andreas Tille <tille at debian.org> Mon, 01 Jun 2026 21:32:44 +0200
cl-umlisp (1:2007ac.2-6.1) unstable; urgency=medium
=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-7
=====================================
debian/control
=====================================
@@ -1,16 +1,15 @@
Source: cl-umlisp
Section: contrib/lisp
-Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
Uploaders:
Kevin M. Rosenberg <kmr at debian.org>,
Andreas Tille <tille at debian.org>
-Build-Depends-Indep: dh-lisp
-Build-Depends: debhelper (>= 7.0.0)
-Standards-Version: 3.9.1.0
-Homepage: http://files.b9.com/umlisp/
+Build-Depends: debhelper-compat (= 13),
+ dh-lisp
+Standards-Version: 4.7.4
Vcs-Browser: https://salsa.debian.org/med-team/cl-umlisp
Vcs-Git: https://salsa.debian.org/med-team/cl-umlisp.git
+Homepage: https://web.archive.org/web/20150403095348/http://files.b9.com/umlisp/
Package: cl-umlisp
Architecture: all
=====================================
debian/copyright
=====================================
@@ -1,18 +1,18 @@
-This package was debianized by Kevin M. Rosenberg <kmr at debian.org> on
-Sat, 5 Oct 2002 12:52:28 -0600.
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: umlisp
+Source: https://web.archive.org/web/20150403095348/http://files.b9.com/umlisp/
-It was downloaded from http://files.b9.com/umlisp
+Files: *
+Copyright: 2000-2002 Kevin M. Rosenberg <kevin at rosenberg.net>
+License: GPL
-Upstream Author: Kevin M. Rosenberg <kevin at rosenberg.net>
+Files: debian/*
+Copyright: 2002-2011 Kevin M. Rosenberg <kmr at debian.org>
+License: GPL
-
-UMLisp is Copyright (C) 2000-2002 by Kevin M. Rosenberg. UMLisp is
-open-source software governed by the GNU General Public License. This
-license is located in the file /usr/share/common-licenses/GPL of your
-Debian filesystem.
-
-This code is distributed in the hope that it will be useful, but
-without any warranty; without even the implied warranty of
-merchantability or fitness for a particular purpose. See the GNU
-General Public License for more details.
+License: GPL
+ UMLisp is Copyright (C) 2000-2002 by Kevin M. Rosenberg. UMLisp is
+ open-source software governed by the GNU General Public License. This
+ license is located in the file /usr/share/common-licenses/GPL of your
+ Debian filesystem.
=====================================
debian/rules
=====================================
@@ -1,46 +1,19 @@
#!/usr/bin/make -f
-pkg := umlisp
-debpkg := cl-umlisp
+pkg := umlisp
+debpkg := cl-$(pkg)
-clc-source := usr/share/common-lisp/source
-clc-systems := usr/share/common-lisp/systems
-clc-files := $(clc-source)/$(pkg)
+clc-source := usr/share/common-lisp/source
+clc-systems := usr/share/common-lisp/systems
+clc-files := $(clc-source)/$(pkg)
+%:
+ dh $@ --with lisp
-build:
+override_dh_auto_build:
+override_dh_auto_test:
+ # pass
-clean:
- dh_testdir
- dh_testroot
- dh_clean
-
-install: build
- dh_testdir
- dh_testroot
- dh_prep
- dh_installdirs
+override_dh_install:
dh_install $(pkg).asd $(clc-files)
dh_install *.lisp $(clc-files)
-
-binary-indep: install
- dh_testdir
- dh_testroot
- dh_installdocs
- 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
=====================================
debian/salsa-ci.yml
=====================================
@@ -0,0 +1,3 @@
+---
+include:
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml
=====================================
debian/source/lintian-overrides
=====================================
@@ -0,0 +1 @@
+cl-umlisp source: debian-watch-uses-insecure-uri http://files.b9.com/umlisp/ [debian/watch:4]
=====================================
debian/watch
=====================================
@@ -1,2 +1,4 @@
-version=3
-http://files.b9.com/umlisp/umlisp-(\d.*)\.tar\.gz
+Version: 5
+
+Source: https://web.archive.org/web/20150403095348/http://files.b9.com/umlisp/
+Matching-Pattern: umlisp- at ANY_VERSION@@ARCHIVE_EXT@
View it on GitLab: https://salsa.debian.org/med-team/cl-umlisp/-/compare/1fd38676e9b05b6e4f90e096eb9b2f3136d5242f...ee44d246449ce31e8cf8b41594f4c9a2eb24f0ea
--
View it on GitLab: https://salsa.debian.org/med-team/cl-umlisp/-/compare/1fd38676e9b05b6e4f90e096eb9b2f3136d5242f...ee44d246449ce31e8cf8b41594f4c9a2eb24f0ea
You're receiving this email because of your account on salsa.debian.org. Manage all notifications: https://salsa.debian.org/-/profile/notifications | Help: https://salsa.debian.org/help
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20260601/def29519/attachment-0001.htm>
More information about the debian-med-commit
mailing list