Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx
@ 2023-04-21 10:57 funk443
  2023-04-21 10:58 ` [PR PATCH] [Updated] " funk443
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: funk443 @ 2023-04-21 10:57 UTC (permalink / raw)
  To: ml

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

There is a new pull request by funk443 against master on the void-packages repository

https://github.com/funk443/void-packages stumpwm3-branch
https://github.com/void-linux/void-packages/pull/43563

New package: stumpwm-22.11; New package: common-lisp-clx
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl

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

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

From 371baa5f38d161b509cde5634d22e14a8b0d83ea Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Thu, 20 Apr 2023 23:46:01 +0800
Subject: [PATCH 1/2] New package: common-lisp-clx

---
 srcpkgs/common-lisp-clx/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/common-lisp-clx/template

diff --git a/srcpkgs/common-lisp-clx/template b/srcpkgs/common-lisp-clx/template
new file mode 100644
index 000000000000..2b26bf6d57d5
--- /dev/null
+++ b/srcpkgs/common-lisp-clx/template
@@ -0,0 +1,23 @@
+# Template file for 'common-lisp-clx'
+pkgname=common-lisp-clx
+version=0.7.5
+revision=1
+build_style=fetch
+hostmakedepends="tar coreutils"
+short_desc="X11 client for Common Lisp"
+maintainer="ctoid <funk443@yandex.com>"
+license="MIT"
+homepage="https://github.com/sharplispers/clx"
+distfiles="https://github.com/sharplispers/clx/archive/refs/tags/${version}.tar.gz"
+checksum="94114bc91e3f24054f0aa96f0c98bb500aa505f84fdaeb66ed41baaa39f9e053"
+
+_LIBRARY_DIR=/usr/share/common-lisp/source/clx
+
+do_install() {
+	tar -xzvf ${version}.tar.gz
+	cd clx-${version}
+	head -n 16 clx.lisp | tail -n 13 | cut -d ';' -f4- > COPYING
+	vlicense COPYING
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From b93ef95544cd8a3d3f44de8a9cee1adb6aed427d Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 00:11:27 +0800
Subject: [PATCH 2/2] New package: stumpwm-22.11

---
 srcpkgs/stumpwm/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/stumpwm/template

diff --git a/srcpkgs/stumpwm/template b/srcpkgs/stumpwm/template
new file mode 100644
index 000000000000..0e3b993febcf
--- /dev/null
+++ b/srcpkgs/stumpwm/template
@@ -0,0 +1,26 @@
+# Template file for 'stumpwm'
+pkgname=stumpwm
+version=22.11
+revision=1
+build_style=gnu-configure
+hostmakedepends="sbcl base-devel"
+makedepends="common-lisp-ppcre common-lisp-alexandria common-lisp-clx"
+depends="xorg common-lisp-ppcre common-lisp-alexandria common-lisp-clx"
+short_desc="Stump Window Manager"
+maintainer="ctoid <funk443@yandex.com>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/stumpwm/stumpwm"
+distfiles="https://github.com/stumpwm/stumpwm/archive/refs/tags/${version}.tar.gz"
+checksum="36940f3b2c1ba54219a8d3a784103cfa83f84c652d1dbd7d3b7360c55e5ef026"
+nopie=yes
+nostrip=yes
+
+pre_configure() {
+  export SBCL_HOME=/usr/lib/sbcl
+  autoupdate
+  ./autogen.sh
+}
+
+pre_install() {
+  make_install_args="destdir=$DESTDIR"
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: stumpwm-22.11; New package: common-lisp-clx
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
@ 2023-04-21 10:58 ` funk443
  2023-04-21 14:47 ` [PR REVIEW] " Chocimier
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: funk443 @ 2023-04-21 10:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/funk443/void-packages stumpwm3-branch
https://github.com/void-linux/void-packages/pull/43563

New package: stumpwm-22.11; New package: common-lisp-clx
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl

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

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

From 371baa5f38d161b509cde5634d22e14a8b0d83ea Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Thu, 20 Apr 2023 23:46:01 +0800
Subject: [PATCH 1/2] New package: common-lisp-clx

---
 srcpkgs/common-lisp-clx/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/common-lisp-clx/template

diff --git a/srcpkgs/common-lisp-clx/template b/srcpkgs/common-lisp-clx/template
new file mode 100644
index 000000000000..2b26bf6d57d5
--- /dev/null
+++ b/srcpkgs/common-lisp-clx/template
@@ -0,0 +1,23 @@
+# Template file for 'common-lisp-clx'
+pkgname=common-lisp-clx
+version=0.7.5
+revision=1
+build_style=fetch
+hostmakedepends="tar coreutils"
+short_desc="X11 client for Common Lisp"
+maintainer="ctoid <funk443@yandex.com>"
+license="MIT"
+homepage="https://github.com/sharplispers/clx"
+distfiles="https://github.com/sharplispers/clx/archive/refs/tags/${version}.tar.gz"
+checksum="94114bc91e3f24054f0aa96f0c98bb500aa505f84fdaeb66ed41baaa39f9e053"
+
+_LIBRARY_DIR=/usr/share/common-lisp/source/clx
+
+do_install() {
+	tar -xzvf ${version}.tar.gz
+	cd clx-${version}
+	head -n 16 clx.lisp | tail -n 13 | cut -d ';' -f4- > COPYING
+	vlicense COPYING
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From 3733cafdc9ded7d7a4fd0dce5ccd7f3f25112538 Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 00:11:27 +0800
Subject: [PATCH 2/2] New package: stumpwm-22.11

---
 srcpkgs/stumpwm/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/stumpwm/template

diff --git a/srcpkgs/stumpwm/template b/srcpkgs/stumpwm/template
new file mode 100644
index 000000000000..fa6aeb84ae4b
--- /dev/null
+++ b/srcpkgs/stumpwm/template
@@ -0,0 +1,26 @@
+# Template file for 'stumpwm'
+pkgname=stumpwm
+version=22.11
+revision=1
+build_style=gnu-configure
+hostmakedepends="sbcl base-devel"
+makedepends="common-lisp-ppcre common-lisp-alexandria common-lisp-clx"
+depends="xorg common-lisp-ppcre common-lisp-alexandria common-lisp-clx"
+short_desc="Stump Window Manager"
+maintainer="ctoid <funk443@yandex.com>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/stumpwm/stumpwm"
+distfiles="https://github.com/stumpwm/stumpwm/archive/refs/tags/${version}.tar.gz"
+checksum="36940f3b2c1ba54219a8d3a784103cfa83f84c652d1dbd7d3b7360c55e5ef026"
+nopie=yes
+nostrip=yes
+
+pre_configure() {
+	export SBCL_HOME=/usr/lib/sbcl
+	autoupdate
+	./autogen.sh
+}
+
+pre_install() {
+	make_install_args="destdir=$DESTDIR"
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: stumpwm-22.11; New package: common-lisp-clx
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
  2023-04-21 10:58 ` [PR PATCH] [Updated] " funk443
  2023-04-21 14:47 ` [PR REVIEW] " Chocimier
@ 2023-04-21 14:47 ` Chocimier
  2023-04-21 14:47 ` Chocimier
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Chocimier @ 2023-04-21 14:47 UTC (permalink / raw)
  To: ml

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

New review comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/43563#discussion_r1173864045

Comment:
Remove build_style variable. Then tarball is extracted by convention, so you don't need `tar -xf`, `cd`, and tar in hostmakedepends.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: stumpwm-22.11; New package: common-lisp-clx
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
  2023-04-21 10:58 ` [PR PATCH] [Updated] " funk443
@ 2023-04-21 14:47 ` Chocimier
  2023-04-21 14:47 ` Chocimier
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Chocimier @ 2023-04-21 14:47 UTC (permalink / raw)
  To: ml

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

New review comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/43563#discussion_r1173864390

Comment:
Coreutils are part of build environment by default, please remove.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: stumpwm-22.11; New package: common-lisp-clx
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
                   ` (2 preceding siblings ...)
  2023-04-21 14:47 ` Chocimier
@ 2023-04-21 14:47 ` Chocimier
  2023-04-21 15:01 ` [PR PATCH] [Updated] " funk443
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Chocimier @ 2023-04-21 14:47 UTC (permalink / raw)
  To: ml

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

New review comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/43563#discussion_r1173865894

Comment:
Please add them to this PR so stumpwm builds in CI.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: stumpwm-22.11; New package: common-lisp-clx
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
                   ` (3 preceding siblings ...)
  2023-04-21 14:47 ` Chocimier
@ 2023-04-21 15:01 ` funk443
  2023-04-21 15:01 ` [PR REVIEW] " paper42
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: funk443 @ 2023-04-21 15:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/funk443/void-packages stumpwm3-branch
https://github.com/void-linux/void-packages/pull/43563

New package: stumpwm-22.11; New package: common-lisp-clx
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl

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

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

From c882c7ad17b980297221d935ed123f26de926afa Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:00:39 +0800
Subject: [PATCH 1/4] New package: common-lisp-clx-0.7.5

---
 srcpkgs/common-lisp-clx/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/common-lisp-clx/template

diff --git a/srcpkgs/common-lisp-clx/template b/srcpkgs/common-lisp-clx/template
new file mode 100644
index 000000000000..91e4efd49de8
--- /dev/null
+++ b/srcpkgs/common-lisp-clx/template
@@ -0,0 +1,19 @@
+# Template file for 'common-lisp-clx'
+pkgname=common-lisp-clx
+version=0.7.5
+revision=1
+short_desc="X11 client for Common Lisp"
+maintainer="ctoid <funk443@yandex.com>"
+license="MIT"
+homepage="https://github.com/sharplispers/clx"
+distfiles="https://github.com/sharplispers/clx/archive/refs/tags/${version}.tar.gz"
+checksum="94114bc91e3f24054f0aa96f0c98bb500aa505f84fdaeb66ed41baaa39f9e053"
+
+_LIBRARY_DIR=/usr/share/common-lisp/source/clx
+
+do_install() {
+	head -n 16 clx.lisp | tail -n 13 | cut -d ';' -f4- > COPYING
+	vlicense COPYING
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From ae724c027e42ca5693046449863b7d11c644ccfd Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:00:55 +0800
Subject: [PATCH 2/4] New package: common-lisp-alexandria-1.4

---
 srcpkgs/common-lisp-alexandria/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/common-lisp-alexandria/template

diff --git a/srcpkgs/common-lisp-alexandria/template b/srcpkgs/common-lisp-alexandria/template
new file mode 100644
index 000000000000..169d824d269f
--- /dev/null
+++ b/srcpkgs/common-lisp-alexandria/template
@@ -0,0 +1,17 @@
+# Template file for 'common-lisp-alexandria'
+pkgname=common-lisp-alexandria
+version=1.4
+revision=1
+short_desc="Common Lisp utility library"
+maintainer="ctoid <funk443@yandex.com>"
+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_install() {
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From c44b1380c4136818e67dd301c23fee6d5a896ae3 Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:01:10 +0800
Subject: [PATCH 3/4] New package: common-lisp-ppcre-2.1.1

---
 srcpkgs/common-lisp-ppcre/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/common-lisp-ppcre/template

diff --git a/srcpkgs/common-lisp-ppcre/template b/srcpkgs/common-lisp-ppcre/template
new file mode 100644
index 000000000000..b7b0d8068fab
--- /dev/null
+++ b/srcpkgs/common-lisp-ppcre/template
@@ -0,0 +1,20 @@
+# Template file for 'common-lisp-ppcre'
+pkgname=common-lisp-ppcre
+version=2.1.1
+revision=1
+hostmakedepends="curl"
+short_desc="Common Lisp regular expression library"
+maintainer="ctoid <funk443@yandex.com>"
+license="BSD-2-Clause"
+homepage="https://edicl.github.io/cl-ppcre/"
+distfiles="https://github.com/edicl/cl-ppcre/archive/refs/tags/v${version}.tar.gz"
+checksum="89631179b71648d9e6c565a928f6896a9d5742aa2083b9c1b705fe0b45d85def"
+
+_LIBRARY_DIR=/usr/share/common-lisp/source/cl-ppcre
+
+do_install() {
+	curl -O "https://raw.githubusercontent.com/edicl/cl-ppcre/master/LICENSE"
+	vlicense LICENSE
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From 097f49e3d903fc1a480b6012006f35a7b3a5f44a Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:01:23 +0800
Subject: [PATCH 4/4] New package: stumpwm-22.11

---
 srcpkgs/stumpwm/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/stumpwm/template

diff --git a/srcpkgs/stumpwm/template b/srcpkgs/stumpwm/template
new file mode 100644
index 000000000000..fa6aeb84ae4b
--- /dev/null
+++ b/srcpkgs/stumpwm/template
@@ -0,0 +1,26 @@
+# Template file for 'stumpwm'
+pkgname=stumpwm
+version=22.11
+revision=1
+build_style=gnu-configure
+hostmakedepends="sbcl base-devel"
+makedepends="common-lisp-ppcre common-lisp-alexandria common-lisp-clx"
+depends="xorg common-lisp-ppcre common-lisp-alexandria common-lisp-clx"
+short_desc="Stump Window Manager"
+maintainer="ctoid <funk443@yandex.com>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/stumpwm/stumpwm"
+distfiles="https://github.com/stumpwm/stumpwm/archive/refs/tags/${version}.tar.gz"
+checksum="36940f3b2c1ba54219a8d3a784103cfa83f84c652d1dbd7d3b7360c55e5ef026"
+nopie=yes
+nostrip=yes
+
+pre_configure() {
+	export SBCL_HOME=/usr/lib/sbcl
+	autoupdate
+	./autogen.sh
+}
+
+pre_install() {
+	make_install_args="destdir=$DESTDIR"
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: stumpwm-22.11; New package: common-lisp-clx
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
                   ` (4 preceding siblings ...)
  2023-04-21 15:01 ` [PR PATCH] [Updated] " funk443
@ 2023-04-21 15:01 ` paper42
  2023-04-21 15:02 ` [PR PATCH] [Updated] " funk443
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: paper42 @ 2023-04-21 15:01 UTC (permalink / raw)
  To: ml

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

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/43563#discussion_r1173880741

Comment:
remove xorg from dependencies, this is left to the user

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: stumpwm-22.11; New package: common-lisp-clx
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
                   ` (5 preceding siblings ...)
  2023-04-21 15:01 ` [PR REVIEW] " paper42
@ 2023-04-21 15:02 ` funk443
  2023-04-21 15:46 ` [PR PATCH] [Updated] New package: stumpwm-22.11; New package: common-lisp-clx; New package: common-lisp-alexandria; New package: common-lisp-ppcre funk443
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: funk443 @ 2023-04-21 15:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/funk443/void-packages stumpwm3-branch
https://github.com/void-linux/void-packages/pull/43563

New package: stumpwm-22.11; New package: common-lisp-clx
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl

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

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

From c882c7ad17b980297221d935ed123f26de926afa Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:00:39 +0800
Subject: [PATCH 1/4] New package: common-lisp-clx-0.7.5

---
 srcpkgs/common-lisp-clx/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/common-lisp-clx/template

diff --git a/srcpkgs/common-lisp-clx/template b/srcpkgs/common-lisp-clx/template
new file mode 100644
index 000000000000..91e4efd49de8
--- /dev/null
+++ b/srcpkgs/common-lisp-clx/template
@@ -0,0 +1,19 @@
+# Template file for 'common-lisp-clx'
+pkgname=common-lisp-clx
+version=0.7.5
+revision=1
+short_desc="X11 client for Common Lisp"
+maintainer="ctoid <funk443@yandex.com>"
+license="MIT"
+homepage="https://github.com/sharplispers/clx"
+distfiles="https://github.com/sharplispers/clx/archive/refs/tags/${version}.tar.gz"
+checksum="94114bc91e3f24054f0aa96f0c98bb500aa505f84fdaeb66ed41baaa39f9e053"
+
+_LIBRARY_DIR=/usr/share/common-lisp/source/clx
+
+do_install() {
+	head -n 16 clx.lisp | tail -n 13 | cut -d ';' -f4- > COPYING
+	vlicense COPYING
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From ae724c027e42ca5693046449863b7d11c644ccfd Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:00:55 +0800
Subject: [PATCH 2/4] New package: common-lisp-alexandria-1.4

---
 srcpkgs/common-lisp-alexandria/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/common-lisp-alexandria/template

diff --git a/srcpkgs/common-lisp-alexandria/template b/srcpkgs/common-lisp-alexandria/template
new file mode 100644
index 000000000000..169d824d269f
--- /dev/null
+++ b/srcpkgs/common-lisp-alexandria/template
@@ -0,0 +1,17 @@
+# Template file for 'common-lisp-alexandria'
+pkgname=common-lisp-alexandria
+version=1.4
+revision=1
+short_desc="Common Lisp utility library"
+maintainer="ctoid <funk443@yandex.com>"
+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_install() {
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From c44b1380c4136818e67dd301c23fee6d5a896ae3 Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:01:10 +0800
Subject: [PATCH 3/4] New package: common-lisp-ppcre-2.1.1

---
 srcpkgs/common-lisp-ppcre/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/common-lisp-ppcre/template

diff --git a/srcpkgs/common-lisp-ppcre/template b/srcpkgs/common-lisp-ppcre/template
new file mode 100644
index 000000000000..b7b0d8068fab
--- /dev/null
+++ b/srcpkgs/common-lisp-ppcre/template
@@ -0,0 +1,20 @@
+# Template file for 'common-lisp-ppcre'
+pkgname=common-lisp-ppcre
+version=2.1.1
+revision=1
+hostmakedepends="curl"
+short_desc="Common Lisp regular expression library"
+maintainer="ctoid <funk443@yandex.com>"
+license="BSD-2-Clause"
+homepage="https://edicl.github.io/cl-ppcre/"
+distfiles="https://github.com/edicl/cl-ppcre/archive/refs/tags/v${version}.tar.gz"
+checksum="89631179b71648d9e6c565a928f6896a9d5742aa2083b9c1b705fe0b45d85def"
+
+_LIBRARY_DIR=/usr/share/common-lisp/source/cl-ppcre
+
+do_install() {
+	curl -O "https://raw.githubusercontent.com/edicl/cl-ppcre/master/LICENSE"
+	vlicense LICENSE
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From f8ef808e5b82ba9abad9bfb4cc2160286545d93c Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:01:23 +0800
Subject: [PATCH 4/4] New package: stumpwm-22.11

---
 srcpkgs/stumpwm/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/stumpwm/template

diff --git a/srcpkgs/stumpwm/template b/srcpkgs/stumpwm/template
new file mode 100644
index 000000000000..e5263cef3b9c
--- /dev/null
+++ b/srcpkgs/stumpwm/template
@@ -0,0 +1,26 @@
+# Template file for 'stumpwm'
+pkgname=stumpwm
+version=22.11
+revision=1
+build_style=gnu-configure
+hostmakedepends="sbcl base-devel"
+makedepends="common-lisp-ppcre common-lisp-alexandria common-lisp-clx"
+depends="common-lisp-ppcre common-lisp-alexandria common-lisp-clx"
+short_desc="Stump Window Manager"
+maintainer="ctoid <funk443@yandex.com>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/stumpwm/stumpwm"
+distfiles="https://github.com/stumpwm/stumpwm/archive/refs/tags/${version}.tar.gz"
+checksum="36940f3b2c1ba54219a8d3a784103cfa83f84c652d1dbd7d3b7360c55e5ef026"
+nopie=yes
+nostrip=yes
+
+pre_configure() {
+	export SBCL_HOME=/usr/lib/sbcl
+	autoupdate
+	./autogen.sh
+}
+
+pre_install() {
+	make_install_args="destdir=$DESTDIR"
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: stumpwm-22.11; New package: common-lisp-clx; New package: common-lisp-alexandria; New package: common-lisp-ppcre
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
                   ` (6 preceding siblings ...)
  2023-04-21 15:02 ` [PR PATCH] [Updated] " funk443
@ 2023-04-21 15:46 ` funk443
  2023-04-21 15:49 ` [PR PATCH] [Updated] New package: stumpwm-22.11 funk443
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: funk443 @ 2023-04-21 15:46 UTC (permalink / raw)
  To: ml

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

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

https://github.com/funk443/void-packages stumpwm3-branch
https://github.com/void-linux/void-packages/pull/43563

New package: stumpwm-22.11; New package: common-lisp-clx; New package: common-lisp-alexandria; New package: common-lisp-ppcre
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl

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

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

From c882c7ad17b980297221d935ed123f26de926afa Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:00:39 +0800
Subject: [PATCH 1/4] New package: common-lisp-clx-0.7.5

---
 srcpkgs/common-lisp-clx/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/common-lisp-clx/template

diff --git a/srcpkgs/common-lisp-clx/template b/srcpkgs/common-lisp-clx/template
new file mode 100644
index 000000000000..91e4efd49de8
--- /dev/null
+++ b/srcpkgs/common-lisp-clx/template
@@ -0,0 +1,19 @@
+# Template file for 'common-lisp-clx'
+pkgname=common-lisp-clx
+version=0.7.5
+revision=1
+short_desc="X11 client for Common Lisp"
+maintainer="ctoid <funk443@yandex.com>"
+license="MIT"
+homepage="https://github.com/sharplispers/clx"
+distfiles="https://github.com/sharplispers/clx/archive/refs/tags/${version}.tar.gz"
+checksum="94114bc91e3f24054f0aa96f0c98bb500aa505f84fdaeb66ed41baaa39f9e053"
+
+_LIBRARY_DIR=/usr/share/common-lisp/source/clx
+
+do_install() {
+	head -n 16 clx.lisp | tail -n 13 | cut -d ';' -f4- > COPYING
+	vlicense COPYING
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From ae724c027e42ca5693046449863b7d11c644ccfd Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:00:55 +0800
Subject: [PATCH 2/4] New package: common-lisp-alexandria-1.4

---
 srcpkgs/common-lisp-alexandria/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/common-lisp-alexandria/template

diff --git a/srcpkgs/common-lisp-alexandria/template b/srcpkgs/common-lisp-alexandria/template
new file mode 100644
index 000000000000..169d824d269f
--- /dev/null
+++ b/srcpkgs/common-lisp-alexandria/template
@@ -0,0 +1,17 @@
+# Template file for 'common-lisp-alexandria'
+pkgname=common-lisp-alexandria
+version=1.4
+revision=1
+short_desc="Common Lisp utility library"
+maintainer="ctoid <funk443@yandex.com>"
+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_install() {
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From c44b1380c4136818e67dd301c23fee6d5a896ae3 Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:01:10 +0800
Subject: [PATCH 3/4] New package: common-lisp-ppcre-2.1.1

---
 srcpkgs/common-lisp-ppcre/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/common-lisp-ppcre/template

diff --git a/srcpkgs/common-lisp-ppcre/template b/srcpkgs/common-lisp-ppcre/template
new file mode 100644
index 000000000000..b7b0d8068fab
--- /dev/null
+++ b/srcpkgs/common-lisp-ppcre/template
@@ -0,0 +1,20 @@
+# Template file for 'common-lisp-ppcre'
+pkgname=common-lisp-ppcre
+version=2.1.1
+revision=1
+hostmakedepends="curl"
+short_desc="Common Lisp regular expression library"
+maintainer="ctoid <funk443@yandex.com>"
+license="BSD-2-Clause"
+homepage="https://edicl.github.io/cl-ppcre/"
+distfiles="https://github.com/edicl/cl-ppcre/archive/refs/tags/v${version}.tar.gz"
+checksum="89631179b71648d9e6c565a928f6896a9d5742aa2083b9c1b705fe0b45d85def"
+
+_LIBRARY_DIR=/usr/share/common-lisp/source/cl-ppcre
+
+do_install() {
+	curl -O "https://raw.githubusercontent.com/edicl/cl-ppcre/master/LICENSE"
+	vlicense LICENSE
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From 1d22d761af988ee69c71e24e4fcdfbf9d9101663 Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:01:23 +0800
Subject: [PATCH 4/4] New package: stumpwm-22.11

---
 srcpkgs/stumpwm/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/stumpwm/template

diff --git a/srcpkgs/stumpwm/template b/srcpkgs/stumpwm/template
new file mode 100644
index 000000000000..9bf78ee46ca5
--- /dev/null
+++ b/srcpkgs/stumpwm/template
@@ -0,0 +1,31 @@
+# Template file for 'stumpwm'
+pkgname=stumpwm
+version=22.11
+revision=1
+build_style=gnu-configure
+hostmakedepends="sbcl base-devel"
+makedepends="common-lisp-ppcre common-lisp-alexandria common-lisp-clx"
+depends="common-lisp-ppcre common-lisp-alexandria common-lisp-clx"
+short_desc="Stump Window Manager"
+maintainer="ctoid <funk443@yandex.com>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/stumpwm/stumpwm"
+distfiles="https://github.com/stumpwm/stumpwm/archive/refs/tags/${version}.tar.gz"
+checksum="36940f3b2c1ba54219a8d3a784103cfa83f84c652d1dbd7d3b7360c55e5ef026"
+nopie=yes
+nostrip=yes
+nocross=yes
+
+pre_configure() {
+	export SBCL_HOME=/usr/lib/sbcl
+	autoupdate
+	./autogen.sh
+}
+
+pre_build() {
+	ls /usr/share/common-lisp/source/
+}
+
+pre_install() {
+	make_install_args="destdir=$DESTDIR"
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: stumpwm-22.11
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
                   ` (7 preceding siblings ...)
  2023-04-21 15:46 ` [PR PATCH] [Updated] New package: stumpwm-22.11; New package: common-lisp-clx; New package: common-lisp-alexandria; New package: common-lisp-ppcre funk443
@ 2023-04-21 15:49 ` funk443
  2023-04-26 20:54 ` [PR REVIEW] " Chocimier
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: funk443 @ 2023-04-21 15:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/funk443/void-packages stumpwm3-branch
https://github.com/void-linux/void-packages/pull/43563

New package: stumpwm-22.11
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl

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

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

From c882c7ad17b980297221d935ed123f26de926afa Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:00:39 +0800
Subject: [PATCH 1/4] New package: common-lisp-clx-0.7.5

---
 srcpkgs/common-lisp-clx/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/common-lisp-clx/template

diff --git a/srcpkgs/common-lisp-clx/template b/srcpkgs/common-lisp-clx/template
new file mode 100644
index 000000000000..91e4efd49de8
--- /dev/null
+++ b/srcpkgs/common-lisp-clx/template
@@ -0,0 +1,19 @@
+# Template file for 'common-lisp-clx'
+pkgname=common-lisp-clx
+version=0.7.5
+revision=1
+short_desc="X11 client for Common Lisp"
+maintainer="ctoid <funk443@yandex.com>"
+license="MIT"
+homepage="https://github.com/sharplispers/clx"
+distfiles="https://github.com/sharplispers/clx/archive/refs/tags/${version}.tar.gz"
+checksum="94114bc91e3f24054f0aa96f0c98bb500aa505f84fdaeb66ed41baaa39f9e053"
+
+_LIBRARY_DIR=/usr/share/common-lisp/source/clx
+
+do_install() {
+	head -n 16 clx.lisp | tail -n 13 | cut -d ';' -f4- > COPYING
+	vlicense COPYING
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From ae724c027e42ca5693046449863b7d11c644ccfd Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:00:55 +0800
Subject: [PATCH 2/4] New package: common-lisp-alexandria-1.4

---
 srcpkgs/common-lisp-alexandria/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/common-lisp-alexandria/template

diff --git a/srcpkgs/common-lisp-alexandria/template b/srcpkgs/common-lisp-alexandria/template
new file mode 100644
index 000000000000..169d824d269f
--- /dev/null
+++ b/srcpkgs/common-lisp-alexandria/template
@@ -0,0 +1,17 @@
+# Template file for 'common-lisp-alexandria'
+pkgname=common-lisp-alexandria
+version=1.4
+revision=1
+short_desc="Common Lisp utility library"
+maintainer="ctoid <funk443@yandex.com>"
+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_install() {
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From c44b1380c4136818e67dd301c23fee6d5a896ae3 Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:01:10 +0800
Subject: [PATCH 3/4] New package: common-lisp-ppcre-2.1.1

---
 srcpkgs/common-lisp-ppcre/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/common-lisp-ppcre/template

diff --git a/srcpkgs/common-lisp-ppcre/template b/srcpkgs/common-lisp-ppcre/template
new file mode 100644
index 000000000000..b7b0d8068fab
--- /dev/null
+++ b/srcpkgs/common-lisp-ppcre/template
@@ -0,0 +1,20 @@
+# Template file for 'common-lisp-ppcre'
+pkgname=common-lisp-ppcre
+version=2.1.1
+revision=1
+hostmakedepends="curl"
+short_desc="Common Lisp regular expression library"
+maintainer="ctoid <funk443@yandex.com>"
+license="BSD-2-Clause"
+homepage="https://edicl.github.io/cl-ppcre/"
+distfiles="https://github.com/edicl/cl-ppcre/archive/refs/tags/v${version}.tar.gz"
+checksum="89631179b71648d9e6c565a928f6896a9d5742aa2083b9c1b705fe0b45d85def"
+
+_LIBRARY_DIR=/usr/share/common-lisp/source/cl-ppcre
+
+do_install() {
+	curl -O "https://raw.githubusercontent.com/edicl/cl-ppcre/master/LICENSE"
+	vlicense LICENSE
+	vmkdir $_LIBRARY_DIR
+	vcopy * $_LIBRARY_DIR
+}

From c31b306effd42ea3373a75b98c3ba99285a5c839 Mon Sep 17 00:00:00 2001
From: ctoid <funk443@yandex.com>
Date: Fri, 21 Apr 2023 23:01:23 +0800
Subject: [PATCH 4/4] New package: stumpwm-22.11

---
 srcpkgs/stumpwm/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/stumpwm/template

diff --git a/srcpkgs/stumpwm/template b/srcpkgs/stumpwm/template
new file mode 100644
index 000000000000..2daee15f3da9
--- /dev/null
+++ b/srcpkgs/stumpwm/template
@@ -0,0 +1,31 @@
+# Template file for 'stumpwm'
+pkgname=stumpwm
+version=22.11
+revision=1
+build_style=gnu-configure
+hostmakedepends="sbcl base-devel"
+makedepends="common-lisp-ppcre common-lisp-alexandria common-lisp-clx"
+depends="common-lisp-ppcre common-lisp-alexandria common-lisp-clx"
+short_desc="Stump Window Manager"
+maintainer="ctoid <funk443@yandex.com>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/stumpwm/stumpwm"
+distfiles="https://github.com/stumpwm/stumpwm/archive/refs/tags/${version}.tar.gz"
+checksum="36940f3b2c1ba54219a8d3a784103cfa83f84c652d1dbd7d3b7360c55e5ef026"
+nopie=yes
+nostrip=yes
+nocross="SBCL seems won't be able to find libraries while cross-compiling"
+
+pre_configure() {
+	export SBCL_HOME=/usr/lib/sbcl
+	autoupdate
+	./autogen.sh
+}
+
+pre_build() {
+	ls /usr/share/common-lisp/source/
+}
+
+pre_install() {
+	make_install_args="destdir=$DESTDIR"
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: stumpwm-22.11
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
                   ` (10 preceding siblings ...)
  2023-04-26 20:54 ` Chocimier
@ 2023-04-26 20:54 ` Chocimier
  2023-04-27  1:52 ` funk443
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Chocimier @ 2023-04-26 20:54 UTC (permalink / raw)
  To: ml

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

New review comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/43563#discussion_r1178387662

Comment:
More of lack of cross compilation by sbcl in general.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: stumpwm-22.11
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
                   ` (9 preceding siblings ...)
  2023-04-26 20:54 ` [PR REVIEW] " Chocimier
@ 2023-04-26 20:54 ` Chocimier
  2023-04-26 20:54 ` Chocimier
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Chocimier @ 2023-04-26 20:54 UTC (permalink / raw)
  To: ml

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

New review comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/43563#discussion_r1178386069

Comment:
Please extract license from comment, or move to distfiles with a note to use copy from tarball on nearest update.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: stumpwm-22.11
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
                   ` (8 preceding siblings ...)
  2023-04-21 15:49 ` [PR PATCH] [Updated] New package: stumpwm-22.11 funk443
@ 2023-04-26 20:54 ` Chocimier
  2023-04-26 20:54 ` Chocimier
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Chocimier @ 2023-04-26 20:54 UTC (permalink / raw)
  To: ml

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

New review comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/43563#discussion_r1178387051

Comment:
Other distros add libraries as runtime dependencies, but do anything breaks without them?

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: stumpwm-22.11
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
                   ` (11 preceding siblings ...)
  2023-04-26 20:54 ` Chocimier
@ 2023-04-27  1:52 ` funk443
  2023-04-27  1:57 ` funk443
  2023-07-05  6:17 ` [PR PATCH] [Closed]: " funk443
  14 siblings, 0 replies; 16+ messages in thread
From: funk443 @ 2023-04-27  1:52 UTC (permalink / raw)
  To: ml

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

New review comment by funk443 on void-packages repository

https://github.com/void-linux/void-packages/pull/43563#discussion_r1178547667

Comment:
Do you mean the libs in makedepends?

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: stumpwm-22.11
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
                   ` (12 preceding siblings ...)
  2023-04-27  1:52 ` funk443
@ 2023-04-27  1:57 ` funk443
  2023-07-05  6:17 ` [PR PATCH] [Closed]: " funk443
  14 siblings, 0 replies; 16+ messages in thread
From: funk443 @ 2023-04-27  1:57 UTC (permalink / raw)
  To: ml

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

New review comment by funk443 on void-packages repository

https://github.com/void-linux/void-packages/pull/43563#discussion_r1178549788

Comment:
What do you mean?

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Closed]: New package: stumpwm-22.11
  2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
                   ` (13 preceding siblings ...)
  2023-04-27  1:57 ` funk443
@ 2023-07-05  6:17 ` funk443
  14 siblings, 0 replies; 16+ messages in thread
From: funk443 @ 2023-07-05  6:17 UTC (permalink / raw)
  To: ml

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

There's a closed pull request on the void-packages repository

New package: stumpwm-22.11
https://github.com/void-linux/void-packages/pull/43563

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2023-07-05  6:17 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-21 10:57 [PR PATCH] New package: stumpwm-22.11; New package: common-lisp-clx funk443
2023-04-21 10:58 ` [PR PATCH] [Updated] " funk443
2023-04-21 14:47 ` [PR REVIEW] " Chocimier
2023-04-21 14:47 ` Chocimier
2023-04-21 14:47 ` Chocimier
2023-04-21 15:01 ` [PR PATCH] [Updated] " funk443
2023-04-21 15:01 ` [PR REVIEW] " paper42
2023-04-21 15:02 ` [PR PATCH] [Updated] " funk443
2023-04-21 15:46 ` [PR PATCH] [Updated] New package: stumpwm-22.11; New package: common-lisp-clx; New package: common-lisp-alexandria; New package: common-lisp-ppcre funk443
2023-04-21 15:49 ` [PR PATCH] [Updated] New package: stumpwm-22.11 funk443
2023-04-26 20:54 ` [PR REVIEW] " Chocimier
2023-04-26 20:54 ` Chocimier
2023-04-26 20:54 ` Chocimier
2023-04-27  1:52 ` funk443
2023-04-27  1:57 ` funk443
2023-07-05  6:17 ` [PR PATCH] [Closed]: " funk443

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).