Github messages for voidlinux
 help / color / mirror / Atom feed
From: MIvanchev <MIvanchev@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] [WIP] New package: stumpwm-23.11
Date: Thu, 21 Mar 2024 18:35:41 +0100	[thread overview]
Message-ID: <20240321173541.3A40420CB1@inbox.vuxu.org> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-49434@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 676 bytes --]

There is an updated pull request by MIvanchev against master on the void-packages repository

https://github.com/MIvanchev/void-packages stumpwm
https://github.com/void-linux/void-packages/pull/49434

[WIP] New package: stumpwm-23.11
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (X86_64-GLIBC)


A patch file from https://github.com/void-linux/void-packages/pull/49434.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-stumpwm-49434.patch --]
[-- Type: text/x-diff, Size: 5118 bytes --]

From 83a191c771c1ce8a9ccd98172d17567344af7bfc Mon Sep 17 00:00:00 2001
From: Mihail Ivanchev <contact@ivanchev.net>
Date: Thu, 21 Mar 2024 15:40:54 +0100
Subject: [PATCH 1/2] New package: cl-alexandria-1.4

---
 srcpkgs/cl-alexandria/patches/run-tests.patch | 13 +++++++
 srcpkgs/cl-alexandria/template                | 35 +++++++++++++++++++
 2 files changed, 48 insertions(+)
 create mode 100644 srcpkgs/cl-alexandria/patches/run-tests.patch
 create mode 100644 srcpkgs/cl-alexandria/template

diff --git a/srcpkgs/cl-alexandria/patches/run-tests.patch b/srcpkgs/cl-alexandria/patches/run-tests.patch
new file mode 100644
index 00000000000000..65299e3fc44b49
--- /dev/null
+++ b/srcpkgs/cl-alexandria/patches/run-tests.patch
@@ -0,0 +1,13 @@
+diff --git a/alexandria-tests.asd b/alexandria-tests.asd
+index 6b785d3..fa0bb88 100644
+--- a/alexandria-tests.asd
++++ b/alexandria-tests.asd
+@@ -8,5 +8,6 @@
+   :perform (test-op (o c)
+              (flet ((run-tests (&rest args)
+                       (apply (intern (string '#:run-tests) '#:alexandria-tests) args)))
+-               (run-tests :compiled nil)
+-               (run-tests :compiled t))))
++               (unless (and (run-tests :compiled nil)
++                            (run-tests :compiled t))
++                 (error "Some tests failed.")))))
diff --git a/srcpkgs/cl-alexandria/template b/srcpkgs/cl-alexandria/template
new file mode 100644
index 00000000000000..6cf89e11fa7476
--- /dev/null
+++ b/srcpkgs/cl-alexandria/template
@@ -0,0 +1,35 @@
+# Template file for 'cl-alexandria'
+pkgname=cl-alexandria
+version=1.4
+revision=1
+makedepends="texlive texinfo sbcl tar"
+short_desc="Common Lisp utility library"
+maintainer="Mihail Ivanchev <contact@ivanchev.net>"
+license="Public Domain"
+homepage="https://alexandria.common-lisp.dev/"
+distfiles="https://gitlab.common-lisp.net/alexandria/alexandria/-/archive/v${version}/alexandria-v${version}.tar.gz"
+checksum=0512aec38d054a20daa66e9983cf8a98151582d7e2307e49e8c1b4a61bbb779a
+
+_LIBRARY_DIR=usr/share/common-lisp/source/alexandria
+
+do_check() {
+	sbcl --non-interactive \
+		--eval '(require "asdf")' \
+		--eval "(push #p\"${wrksrc}/\" asdf:*central-registry*)" \
+		--eval '(asdf:test-system "alexandria-tests")'
+}
+
+do_build() {
+	make -C doc html info pdf
+}
+
+do_install() {
+	vmkdir $_LIBRARY_DIR
+	vcopy alexandria-1 $_LIBRARY_DIR
+	vcopy alexandria-2 $_LIBRARY_DIR
+	vcopy alexandria.asd $_LIBRARY_DIR
+	vinstall doc/alexandria.info 644 /usr/share/info
+	vdoc doc/alexandria.pdf
+	vdoc doc/alexandria.html
+	vlicense LICENCE
+}

From ce0cf53a7afaebffac463e52c6acb7ff062927b4 Mon Sep 17 00:00:00 2001
From: Mihail Ivanchev <contact@ivanchev.net>
Date: Thu, 21 Mar 2024 18:18:58 +0100
Subject: [PATCH 2/2] New package:
 cl-trivial-gray-streams-20240217.a7ead683666849762ea657dac9137d693c5a492a9

---
 srcpkgs/cl-trivial-gray-streams/template | 52 ++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
 create mode 100644 srcpkgs/cl-trivial-gray-streams/template

diff --git a/srcpkgs/cl-trivial-gray-streams/template b/srcpkgs/cl-trivial-gray-streams/template
new file mode 100644
index 00000000000000..a95c0f73691f4f
--- /dev/null
+++ b/srcpkgs/cl-trivial-gray-streams/template
@@ -0,0 +1,52 @@
+# Template file for 'cl-trivial-gray-streams'
+pkgname=cl-trivial-gray-streams
+#
+# NOTE: trivial-gray-streams doesn't tag versions so we use the date as a
+# version and the last commit for that date UTC.
+#
+# According to this discsion:
+#
+# https://github.com/trivial-gray-streams/trivial-gray-streams/issues/15
+#
+# every push to master is a release.
+#
+_src_date=20240217
+_src_hash=a7ead683666849762ea657dac9137d693c5a4929
+version=20240217
+revision=1
+checkdepends="sbcl"
+short_desc="Portability library for CL gray streams"
+maintainer="Mihail Ivanchev <contact@ivanchev.net>"
+license="MIT"
+homepage="https://github.com/trivial-gray-streams/trivial-gray-streams.git"
+distfiles="https://github.com/trivial-gray-streams/trivial-gray-streams/archive/${_src_hash}.tar.gz"
+checksum=0b3734561620a27f42e7960312282d732ff6313278db18aa376450a15a8ce8e6
+
+if [ "$version" != "${_src_date}" ]; then
+	echo "Version not equal to ${_src_date}, must be " 2>&1
+	echo "updated manually." 2>&1
+	exit 1
+fi
+
+_LIBRARY_DIR=usr/share/common-lisp/source/trivial-gray-streams
+
+do_check() {
+	# According to the author, the failure in stream-advance-to-column
+	# currently happens across all LISP implementations and is expected.
+	# See: https://github.com/trivial-gray-streams/trivial-gray-streams/issues/16
+	sbcl --non-interactive \
+	     --eval '(require "asdf")' \
+	     --eval "(push #p\"${wrksrc}/\" asdf:*central-registry*)" \
+	     --eval '(asdf:load-system "trivial-gray-streams-test")' \
+	     --eval '(in-package :trivial-gray-streams-test)' \
+	     --eval '(when (not (equal (list "stream-advance-to-column")
+	                               (failed-test-names (run-tests))))
+	               (uiop:quit 1))'
+}
+
+do_install() {
+	vmkdir $_LIBRARY_DIR
+	vcopy *.lisp $_LIBRARY_DIR
+	vcopy trivial-gray-streams.asd $_LIBRARY_DIR
+	vlicense COPYING
+}

  parent reply	other threads:[~2024-03-21 17:35 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-21 17:11 [PR PATCH] " MIvanchev
2024-03-21 17:19 ` [PR PATCH] [Updated] " MIvanchev
2024-03-21 17:35 ` MIvanchev [this message]
2024-03-21 17:37 ` MIvanchev
2024-03-21 17:47 ` MIvanchev
2024-03-21 18:03 ` MIvanchev
2024-03-22 16:04 ` MIvanchev
2024-03-22 16:08 ` MIvanchev
2024-03-22 21:34 ` MIvanchev
2024-03-22 21:38 ` MIvanchev
2024-03-23  8:46 ` MIvanchev
2024-03-23  8:54 ` MIvanchev
2024-03-23  8:57 ` MIvanchev
2024-03-23  9:04 ` MIvanchev
2024-03-23  9:09 ` MIvanchev
2024-03-23  9:21 ` MIvanchev
2024-03-23  9:27 ` MIvanchev
2024-03-23  9:27 ` MIvanchev
2024-03-23  9:45 ` MIvanchev
2024-03-23  9:57 ` MIvanchev
2024-03-23 10:05 ` MIvanchev
2024-03-23 16:12 ` MIvanchev
2024-03-23 18:32 ` MIvanchev
2024-05-12 16:50 ` [PR PATCH] [Updated] " MIvanchev
2024-05-12 16:52 ` MIvanchev
2024-05-12 17:08 ` MIvanchev
2024-05-13 11:33 ` MIvanchev
2024-05-13 11:38 ` MIvanchev
2024-05-14 10:03 ` MIvanchev
2024-05-14 10:32 ` MIvanchev
2024-05-14 10:38 ` MIvanchev
2024-05-14 15:22 ` MIvanchev

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240321173541.3A40420CB1@inbox.vuxu.org \
    --to=mivanchev@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).