George Rawlinson pushed to branch main at Arch Linux / Packaging / Packages / 
cl-rt


Commits:
c38ea7f3 by George Rawlinson at 2026-01-13T19:16:07+00:00
nvchecker: manually update

- - - - -
6eebf738 by George Rawlinson at 2026-01-13T19:18:34+00:00
reuse: simplify conf

- - - - -
8017cd02 by George Rawlinson at 2026-01-13T19:19:34+00:00
upgpkg: 1990.12.19.r19.ga6a7503-4

Upstream is gone, so the source has been mirrored.

Updates source/url.

- - - - -


4 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD
- REUSE.toml


Changes:

=====================================
.SRCINFO
=====================================
@@ -1,16 +1,19 @@
 pkgbase = cl-rt
        pkgdesc = Common Lisp regression tester from MIT
        pkgver = 1990.12.19.r19.ga6a7503
-       pkgrel = 3
-       url = http://git.kpe.io/?p=rt.git
+       pkgrel = 4
+       url = https://github.com/grawlinson/cl-rt
        arch = any
        license = MIT
+       checkdepends = sbcl
        makedepends = git
        depends = common-lisp
        depends = cl-asdf
-       source = 
cl-rt::git+http://git.kpe.io/rt.git#commit=a6a7503a0b47953bc7579c90f02a6dba1f6e4c5a
+       source = 
cl-rt::git+https://github.com/grawlinson/cl-rt#commit=a6a7503a0b47953bc7579c90f02a6dba1f6e4c5a
        source = run-tests.lisp
-       b2sums = SKIP
+       sha512sums = 
a18c12710d35b347cc4b5b451b644582c21eb660ef3f2921ae834999a5d42b5ab46e293dc9e1a53dcbea0317a036c18099bb5fa1e3daad07b4e0e85b346801f3
+       sha512sums = 
f950cc21504be904a27f1c353a63d4e20ba5c44c266c369da5d846ea48fe1707168374adbc1abac68f1037c5a2cd9aa759af2584998f51ea09fe424aa948859b
+       b2sums = 
bdefa62d340b65b8a295c47ae52e17b28e29ec3bd723e13e7371ae17e273d1ea3f4dc0580a0c18d51373ff19291f919e6d71b54a38f38c55b3ab5a47c3ea3b5e
        b2sums = 
2a9602fe10824973ee233b4a11a4d0bce91189e324afe350fb14389e03f5b742231c98a6a0e4aea2c2bd43cd22bd91db63f6d7a41aa6c71d235f06afa8e49434
 
 pkgname = cl-rt


=====================================
.nvchecker.toml
=====================================
@@ -0,0 +1,3 @@
+[cl-rt]
+# upstream is gone
+source = "manual"


=====================================
PKGBUILD
=====================================
@@ -3,31 +3,27 @@
 pkgname=cl-rt
 _pkgname="${pkgname#cl-}"
 pkgver=1990.12.19.r19.ga6a7503
-pkgrel=3
+pkgrel=4
 pkgdesc='Common Lisp regression tester from MIT'
-arch=('any')
-url='http://git.kpe.io/?p=rt.git'
-license=('MIT')
-depends=('common-lisp' 'cl-asdf')
-makedepends=('git')
-#checkdepends=('sbcl')
-_commit='a6a7503a0b47953bc7579c90f02a6dba1f6e4c5a'
+arch=(any)
+url='https://github.com/grawlinson/cl-rt'
+license=(MIT)
+depends=(common-lisp cl-asdf)
+makedepends=(git)
+checkdepends=(sbcl)
+_commit=a6a7503a0b47953bc7579c90f02a6dba1f6e4c5a
 source=(
-  "$pkgname::git+http://git.kpe.io/rt.git#commit=$_commit";
-  'run-tests.lisp'
+  "$pkgname::git+https://github.com/grawlinson/cl-rt#commit=$_commit";
+  run-tests.lisp
 )
-b2sums=('SKIP'
+sha512sums=('a18c12710d35b347cc4b5b451b644582c21eb660ef3f2921ae834999a5d42b5ab46e293dc9e1a53dcbea0317a036c18099bb5fa1e3daad07b4e0e85b346801f3'
+            
'f950cc21504be904a27f1c353a63d4e20ba5c44c266c369da5d846ea48fe1707168374adbc1abac68f1037c5a2cd9aa759af2584998f51ea09fe424aa948859b')
+b2sums=('bdefa62d340b65b8a295c47ae52e17b28e29ec3bd723e13e7371ae17e273d1ea3f4dc0580a0c18d51373ff19291f919e6d71b54a38f38c55b3ab5a47c3ea3b5e'
         
'2a9602fe10824973ee233b4a11a4d0bce91189e324afe350fb14389e03f5b742231c98a6a0e4aea2c2bd43cd22bd91db63f6d7a41aa6c71d235f06afa8e49434')
 
 pkgver() {
   cd "$pkgname"
 
-  # first known commit to receive latest version
-  local _pkgver=1990.12.19
-  local _pkgcommit='17ebaf0bbb7e594f0397286aac4b89ae6ebe61d3'
-
-  git tag "$_pkgver" "$_pkgcommit"
-
   git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
 }
 


=====================================
REUSE.toml
=====================================
@@ -7,16 +7,7 @@ path = [
     "keys/**",
     ".SRCINFO",
     ".nvchecker.toml",
-    "*.install",
-    "*.sysusers",
-    "*.tmpfiles",
-    "*.logrotate",
-    "*.pam",
-    "*.service",
-    "*.socket",
-    "*.timer",
-    "*.desktop",
-    "*.hook",
+    "run-tests.lisp",
 ]
 SPDX-FileCopyrightText = "Arch Linux contributors"
 SPDX-License-Identifier = "0BSD"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cl-rt/-/compare/1b1148f6f9360eeaebc6ab7f6dd871e4ef011f98...8017cd02b5bbaab061a445ece81f6ba37f496c98

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cl-rt/-/compare/1b1148f6f9360eeaebc6ab7f6dd871e4ef011f98...8017cd02b5bbaab061a445ece81f6ba37f496c98
You're receiving this email because of your account on gitlab.archlinux.org.


Reply via email to