Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: sandbar-0.1
@ 2023-07-12 15:39 dkwo
  2023-07-12 15:44 ` [PR PATCH] [Updated] " dkwo
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: dkwo @ 2023-07-12 15:39 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages sandbar
https://github.com/void-linux/void-packages/pull/44997

New package: sandbar-0.1
- I tested the changes in this PR: yes, been using it for several weeks

```
#!/bin/bash
FIFO="$XDG_RUNTIME_DIR/sandbar-0"
[ -e "$FIFO" ] && rm -f "$FIFO"
mkfifo "$FIFO"
while cat "$FIFO"; do :; done | sandbar -font Terminus:size=32

while true
do
echo "all status $(print_bat) $(print_date)" > $XDG_RUNTIME_DIR/sandbar-0
sleep 1
done
```

- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, x86_64

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

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

From 874dcd43d5ab0e118bb8b28afa58de7e71d3e8fb Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Tue, 30 May 2023 18:48:24 -0400
Subject: [PATCH] New package: sandbar-0.1

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

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
new file mode 100644
index 000000000000..aedda8ab4350
--- /dev/null
+++ b/srcpkgs/sandbar/template
@@ -0,0 +1,17 @@
+# Template file for 'sandbar'
+pkgname=sandbar
+version=0.1
+revision=1
+hostmakedepends="pkg-config"
+makedepends="wayland-protocols pixman-devel fcft-devel wayland-devel"
+short_desc="Bar (similar to dwm) for the river wayland compositor"
+maintainer="dkwo <npiazza@disroot.org>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/kolunmi/sandbar"
+distfiles="https://github.com/kolunmi/sandbar/archive/refs/tags/v${version}.tar.gz"
+checksum=5e875d6aca54c195d1842c124e48a7385eaada67a7160adbc279c6d6fa0d2b48
+
+do_install() {
+	make install
+	vbin sandbar
+}

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

* Re: [PR PATCH] [Updated] New package: sandbar-0.1
  2023-07-12 15:39 [PR PATCH] New package: sandbar-0.1 dkwo
@ 2023-07-12 15:44 ` dkwo
  2023-07-12 15:49 ` dkwo
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: dkwo @ 2023-07-12 15:44 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages sandbar
https://github.com/void-linux/void-packages/pull/44997

New package: sandbar-0.1
- I tested the changes in this PR: yes, been using it for several weeks

```
#!/bin/bash
FIFO="$XDG_RUNTIME_DIR/sandbar-0"
[ -e "$FIFO" ] && rm -f "$FIFO"
mkfifo "$FIFO"
while cat "$FIFO"; do :; done | sandbar -font Terminus:size=32

while true
do
echo "all status $(print_bat) $(print_date)" > $XDG_RUNTIME_DIR/sandbar-0
sleep 1
done
```

- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, x86_64

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

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

From 874dcd43d5ab0e118bb8b28afa58de7e71d3e8fb Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Tue, 30 May 2023 18:48:24 -0400
Subject: [PATCH 1/2] New package: sandbar-0.1

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

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
new file mode 100644
index 000000000000..aedda8ab4350
--- /dev/null
+++ b/srcpkgs/sandbar/template
@@ -0,0 +1,17 @@
+# Template file for 'sandbar'
+pkgname=sandbar
+version=0.1
+revision=1
+hostmakedepends="pkg-config"
+makedepends="wayland-protocols pixman-devel fcft-devel wayland-devel"
+short_desc="Bar (similar to dwm) for the river wayland compositor"
+maintainer="dkwo <npiazza@disroot.org>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/kolunmi/sandbar"
+distfiles="https://github.com/kolunmi/sandbar/archive/refs/tags/v${version}.tar.gz"
+checksum=5e875d6aca54c195d1842c124e48a7385eaada67a7160adbc279c6d6fa0d2b48
+
+do_install() {
+	make install
+	vbin sandbar
+}

From 6596806f59c2b880f8fd8d53b76de9cb93186fca Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Wed, 12 Jul 2023 11:43:51 -0400
Subject: [PATCH 2/2] sandbar: fix cross

---
 srcpkgs/sandbar/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
index aedda8ab4350..e6c2062fc57c 100644
--- a/srcpkgs/sandbar/template
+++ b/srcpkgs/sandbar/template
@@ -2,8 +2,8 @@
 pkgname=sandbar
 version=0.1
 revision=1
-hostmakedepends="pkg-config"
-makedepends="wayland-protocols pixman-devel fcft-devel wayland-devel"
+hostmakedepends="pkg-config wayland-devel"
+makedepends="wayland-protocols pixman-devel fcft-devel"
 short_desc="Bar (similar to dwm) for the river wayland compositor"
 maintainer="dkwo <npiazza@disroot.org>"
 license="GPL-3.0-or-later"

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

* Re: [PR PATCH] [Updated] New package: sandbar-0.1
  2023-07-12 15:39 [PR PATCH] New package: sandbar-0.1 dkwo
  2023-07-12 15:44 ` [PR PATCH] [Updated] " dkwo
@ 2023-07-12 15:49 ` dkwo
  2023-07-12 16:05 ` dkwo
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: dkwo @ 2023-07-12 15:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages sandbar
https://github.com/void-linux/void-packages/pull/44997

New package: sandbar-0.1
- I tested the changes in this PR: yes, been using it for several weeks

```
#!/bin/bash
FIFO="$XDG_RUNTIME_DIR/sandbar-0"
[ -e "$FIFO" ] && rm -f "$FIFO"
mkfifo "$FIFO"
while cat "$FIFO"; do :; done | sandbar -font Terminus:size=32

while true
do
echo "all status $(print_bat) $(print_date)" > $XDG_RUNTIME_DIR/sandbar-0
sleep 1
done
```

- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, x86_64

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

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

From 874dcd43d5ab0e118bb8b28afa58de7e71d3e8fb Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Tue, 30 May 2023 18:48:24 -0400
Subject: [PATCH 1/2] New package: sandbar-0.1

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

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
new file mode 100644
index 000000000000..aedda8ab4350
--- /dev/null
+++ b/srcpkgs/sandbar/template
@@ -0,0 +1,17 @@
+# Template file for 'sandbar'
+pkgname=sandbar
+version=0.1
+revision=1
+hostmakedepends="pkg-config"
+makedepends="wayland-protocols pixman-devel fcft-devel wayland-devel"
+short_desc="Bar (similar to dwm) for the river wayland compositor"
+maintainer="dkwo <npiazza@disroot.org>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/kolunmi/sandbar"
+distfiles="https://github.com/kolunmi/sandbar/archive/refs/tags/v${version}.tar.gz"
+checksum=5e875d6aca54c195d1842c124e48a7385eaada67a7160adbc279c6d6fa0d2b48
+
+do_install() {
+	make install
+	vbin sandbar
+}

From 003cc072e2c21c54aa1b1d4e626225a4c216b7a0 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Wed, 12 Jul 2023 11:43:51 -0400
Subject: [PATCH 2/2] sandbar: try to fix cross

---
 srcpkgs/sandbar/template | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
index aedda8ab4350..ed959be37950 100644
--- a/srcpkgs/sandbar/template
+++ b/srcpkgs/sandbar/template
@@ -2,8 +2,8 @@
 pkgname=sandbar
 version=0.1
 revision=1
-hostmakedepends="pkg-config"
-makedepends="wayland-protocols pixman-devel fcft-devel wayland-devel"
+hostmakedepends="pkg-config wayland-devel"
+makedepends="wayland-protocols pixman-devel fcft-devel"
 short_desc="Bar (similar to dwm) for the river wayland compositor"
 maintainer="dkwo <npiazza@disroot.org>"
 license="GPL-3.0-or-later"
@@ -11,7 +11,10 @@ homepage="https://github.com/kolunmi/sandbar"
 distfiles="https://github.com/kolunmi/sandbar/archive/refs/tags/v${version}.tar.gz"
 checksum=5e875d6aca54c195d1842c124e48a7385eaada67a7160adbc279c6d6fa0d2b48
 
-do_install() {
+do_build() {
 	make install
+}
+
+do_install() {
 	vbin sandbar
 }

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

* Re: [PR PATCH] [Updated] New package: sandbar-0.1
  2023-07-12 15:39 [PR PATCH] New package: sandbar-0.1 dkwo
  2023-07-12 15:44 ` [PR PATCH] [Updated] " dkwo
  2023-07-12 15:49 ` dkwo
@ 2023-07-12 16:05 ` dkwo
  2023-07-12 16:09 ` dkwo
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: dkwo @ 2023-07-12 16:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages sandbar
https://github.com/void-linux/void-packages/pull/44997

New package: sandbar-0.1
- I tested the changes in this PR: yes, been using it for several weeks

```
#!/bin/bash
FIFO="$XDG_RUNTIME_DIR/sandbar-0"
[ -e "$FIFO" ] && rm -f "$FIFO"
mkfifo "$FIFO"
while cat "$FIFO"; do :; done | sandbar -font Terminus:size=32

while true
do
echo "all status $(print_bat) $(print_date)" > $XDG_RUNTIME_DIR/sandbar-0
sleep 1
done
```

- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, x86_64

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

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

From 874dcd43d5ab0e118bb8b28afa58de7e71d3e8fb Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Tue, 30 May 2023 18:48:24 -0400
Subject: [PATCH 1/2] New package: sandbar-0.1

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

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
new file mode 100644
index 000000000000..aedda8ab4350
--- /dev/null
+++ b/srcpkgs/sandbar/template
@@ -0,0 +1,17 @@
+# Template file for 'sandbar'
+pkgname=sandbar
+version=0.1
+revision=1
+hostmakedepends="pkg-config"
+makedepends="wayland-protocols pixman-devel fcft-devel wayland-devel"
+short_desc="Bar (similar to dwm) for the river wayland compositor"
+maintainer="dkwo <npiazza@disroot.org>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/kolunmi/sandbar"
+distfiles="https://github.com/kolunmi/sandbar/archive/refs/tags/v${version}.tar.gz"
+checksum=5e875d6aca54c195d1842c124e48a7385eaada67a7160adbc279c6d6fa0d2b48
+
+do_install() {
+	make install
+	vbin sandbar
+}

From b2773f440c777a26d8ca92b32c9595f2a53b39ca Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Wed, 12 Jul 2023 11:43:51 -0400
Subject: [PATCH 2/2] sandbar: try to fix cross

---
 srcpkgs/sandbar/template | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
index aedda8ab4350..47f39f4a0490 100644
--- a/srcpkgs/sandbar/template
+++ b/srcpkgs/sandbar/template
@@ -2,7 +2,7 @@
 pkgname=sandbar
 version=0.1
 revision=1
-hostmakedepends="pkg-config"
+hostmakedepends="pkg-config wayland-devel"
 makedepends="wayland-protocols pixman-devel fcft-devel wayland-devel"
 short_desc="Bar (similar to dwm) for the river wayland compositor"
 maintainer="dkwo <npiazza@disroot.org>"
@@ -11,7 +11,10 @@ homepage="https://github.com/kolunmi/sandbar"
 distfiles="https://github.com/kolunmi/sandbar/archive/refs/tags/v${version}.tar.gz"
 checksum=5e875d6aca54c195d1842c124e48a7385eaada67a7160adbc279c6d6fa0d2b48
 
-do_install() {
+do_build() {
 	make install
+}
+
+do_install() {
 	vbin sandbar
 }

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

* Re: [PR PATCH] [Updated] New package: sandbar-0.1
  2023-07-12 15:39 [PR PATCH] New package: sandbar-0.1 dkwo
                   ` (2 preceding siblings ...)
  2023-07-12 16:05 ` dkwo
@ 2023-07-12 16:09 ` dkwo
  2023-07-12 17:19 ` icp1994
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: dkwo @ 2023-07-12 16:09 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages sandbar
https://github.com/void-linux/void-packages/pull/44997

New package: sandbar-0.1
- I tested the changes in this PR: yes, been using it for several weeks

```
#!/bin/bash
FIFO="$XDG_RUNTIME_DIR/sandbar-0"
[ -e "$FIFO" ] && rm -f "$FIFO"
mkfifo "$FIFO"
while cat "$FIFO"; do :; done | sandbar -font Terminus:size=32

while true
do
echo "all status $(print_bat) $(print_date)" > $XDG_RUNTIME_DIR/sandbar-0
sleep 1
done
```

- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, x86_64

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

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

From 640b583aa932ba9a90b5551ba41eb9bd4ce37d06 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Tue, 30 May 2023 18:48:24 -0400
Subject: [PATCH] New package: sandbar-0.1

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

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
new file mode 100644
index 000000000000..47f39f4a0490
--- /dev/null
+++ b/srcpkgs/sandbar/template
@@ -0,0 +1,20 @@
+# Template file for 'sandbar'
+pkgname=sandbar
+version=0.1
+revision=1
+hostmakedepends="pkg-config wayland-devel"
+makedepends="wayland-protocols pixman-devel fcft-devel wayland-devel"
+short_desc="Bar (similar to dwm) for the river wayland compositor"
+maintainer="dkwo <npiazza@disroot.org>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/kolunmi/sandbar"
+distfiles="https://github.com/kolunmi/sandbar/archive/refs/tags/v${version}.tar.gz"
+checksum=5e875d6aca54c195d1842c124e48a7385eaada67a7160adbc279c6d6fa0d2b48
+
+do_build() {
+	make install
+}
+
+do_install() {
+	vbin sandbar
+}

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

* Re: New package: sandbar-0.1
  2023-07-12 15:39 [PR PATCH] New package: sandbar-0.1 dkwo
                   ` (3 preceding siblings ...)
  2023-07-12 16:09 ` dkwo
@ 2023-07-12 17:19 ` icp1994
  2023-07-12 18:02 ` [PR PATCH] [Updated] " dkwo
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: icp1994 @ 2023-07-12 17:19 UTC (permalink / raw)
  To: ml

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

New comment by icp1994 on void-packages repository

https://github.com/void-linux/void-packages/pull/44997#issuecomment-1632919292

Comment:
Does `gnu-makefile` build style not work? Maybe it needs `make_use_env=yes`.

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

* Re: [PR PATCH] [Updated] New package: sandbar-0.1
  2023-07-12 15:39 [PR PATCH] New package: sandbar-0.1 dkwo
                   ` (4 preceding siblings ...)
  2023-07-12 17:19 ` icp1994
@ 2023-07-12 18:02 ` dkwo
  2023-07-12 18:05 ` dkwo
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: dkwo @ 2023-07-12 18:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages sandbar
https://github.com/void-linux/void-packages/pull/44997

New package: sandbar-0.1
- I tested the changes in this PR: yes, been using it for several weeks

```
#!/bin/bash
FIFO="$XDG_RUNTIME_DIR/sandbar-0"
[ -e "$FIFO" ] && rm -f "$FIFO"
mkfifo "$FIFO"
while cat "$FIFO"; do :; done | sandbar -font Terminus:size=32

while true
do
echo "all status $(print_bat) $(print_date)" > $XDG_RUNTIME_DIR/sandbar-0
sleep 1
done
```

- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, x86_64

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

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

From a218b3756e2ceb312e732ea5139be2ca089e7944 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Tue, 30 May 2023 18:48:24 -0400
Subject: [PATCH 1/2] New package: sandbar-0.1

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

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
new file mode 100644
index 000000000000..47f39f4a0490
--- /dev/null
+++ b/srcpkgs/sandbar/template
@@ -0,0 +1,20 @@
+# Template file for 'sandbar'
+pkgname=sandbar
+version=0.1
+revision=1
+hostmakedepends="pkg-config wayland-devel"
+makedepends="wayland-protocols pixman-devel fcft-devel wayland-devel"
+short_desc="Bar (similar to dwm) for the river wayland compositor"
+maintainer="dkwo <npiazza@disroot.org>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/kolunmi/sandbar"
+distfiles="https://github.com/kolunmi/sandbar/archive/refs/tags/v${version}.tar.gz"
+checksum=5e875d6aca54c195d1842c124e48a7385eaada67a7160adbc279c6d6fa0d2b48
+
+do_build() {
+	make install
+}
+
+do_install() {
+	vbin sandbar
+}

From 287398abf0b1d0ade1e6d72130b07d31aea6243e Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Wed, 12 Jul 2023 14:02:28 -0400
Subject: [PATCH 2/2] sandbar: use gnu-makefile

---
 srcpkgs/sandbar/template | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
index 47f39f4a0490..f178c379548b 100644
--- a/srcpkgs/sandbar/template
+++ b/srcpkgs/sandbar/template
@@ -2,6 +2,8 @@
 pkgname=sandbar
 version=0.1
 revision=1
+build_style=gnu-makefile
+make_use_env=yes
 hostmakedepends="pkg-config wayland-devel"
 makedepends="wayland-protocols pixman-devel fcft-devel wayland-devel"
 short_desc="Bar (similar to dwm) for the river wayland compositor"
@@ -10,11 +12,3 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/kolunmi/sandbar"
 distfiles="https://github.com/kolunmi/sandbar/archive/refs/tags/v${version}.tar.gz"
 checksum=5e875d6aca54c195d1842c124e48a7385eaada67a7160adbc279c6d6fa0d2b48
-
-do_build() {
-	make install
-}
-
-do_install() {
-	vbin sandbar
-}

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

* Re: New package: sandbar-0.1
  2023-07-12 15:39 [PR PATCH] New package: sandbar-0.1 dkwo
                   ` (5 preceding siblings ...)
  2023-07-12 18:02 ` [PR PATCH] [Updated] " dkwo
@ 2023-07-12 18:05 ` dkwo
  2023-07-13 12:52 ` [PR PATCH] [Updated] " dkwo
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: dkwo @ 2023-07-12 18:05 UTC (permalink / raw)
  To: ml

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

New comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/pull/44997#issuecomment-1632985834

Comment:
Yes, it needs `make_use_env=yes`, thanks!

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

* Re: [PR PATCH] [Updated] New package: sandbar-0.1
  2023-07-12 15:39 [PR PATCH] New package: sandbar-0.1 dkwo
                   ` (6 preceding siblings ...)
  2023-07-12 18:05 ` dkwo
@ 2023-07-13 12:52 ` dkwo
  2023-07-13 13:00 ` dkwo
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: dkwo @ 2023-07-13 12:52 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages sandbar
https://github.com/void-linux/void-packages/pull/44997

New package: sandbar-0.1
- I tested the changes in this PR: yes, been using it for several weeks

```
#!/bin/bash
FIFO="$XDG_RUNTIME_DIR/sandbar-0"
[ -e "$FIFO" ] && rm -f "$FIFO"
mkfifo "$FIFO"
while cat "$FIFO"; do :; done | sandbar -font Terminus:size=32

while true
do
echo "all status $(print_bat) $(print_date)" > $XDG_RUNTIME_DIR/sandbar-0
sleep 1
done
```

- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, x86_64

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

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

From d1780fd99b6a4daceaa71e79988e43dde8762e04 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Tue, 30 May 2023 18:48:24 -0400
Subject: [PATCH] New package: sandbar-0.1

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

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
new file mode 100644
index 000000000000..f178c379548b
--- /dev/null
+++ b/srcpkgs/sandbar/template
@@ -0,0 +1,14 @@
+# Template file for 'sandbar'
+pkgname=sandbar
+version=0.1
+revision=1
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config wayland-devel"
+makedepends="wayland-protocols pixman-devel fcft-devel wayland-devel"
+short_desc="Bar (similar to dwm) for the river wayland compositor"
+maintainer="dkwo <npiazza@disroot.org>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/kolunmi/sandbar"
+distfiles="https://github.com/kolunmi/sandbar/archive/refs/tags/v${version}.tar.gz"
+checksum=5e875d6aca54c195d1842c124e48a7385eaada67a7160adbc279c6d6fa0d2b48

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

* Re: [PR PATCH] [Updated] New package: sandbar-0.1
  2023-07-12 15:39 [PR PATCH] New package: sandbar-0.1 dkwo
                   ` (7 preceding siblings ...)
  2023-07-13 12:52 ` [PR PATCH] [Updated] " dkwo
@ 2023-07-13 13:00 ` dkwo
  2023-07-13 13:03 ` dkwo
  2023-08-09 21:00 ` [PR PATCH] [Merged]: " Duncaen
  10 siblings, 0 replies; 12+ messages in thread
From: dkwo @ 2023-07-13 13:00 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages sandbar
https://github.com/void-linux/void-packages/pull/44997

New package: sandbar-0.1
- I tested the changes in this PR: yes, been using it for several weeks

```
#!/bin/bash
FIFO="$XDG_RUNTIME_DIR/sandbar-0"
[ -e "$FIFO" ] && rm -f "$FIFO"
mkfifo "$FIFO"
while cat "$FIFO"; do :; done | sandbar -font Terminus:size=32

while true
do
echo "all status $(print_bat) $(print_date)" > $XDG_RUNTIME_DIR/sandbar-0
sleep 1
done
```

- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, x86_64

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

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

From a9e800d3820c2afdec6a474880470ab380222431 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Tue, 30 May 2023 18:48:24 -0400
Subject: [PATCH] New package: sandbar-0.1

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

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
new file mode 100644
index 000000000000..6925136d75af
--- /dev/null
+++ b/srcpkgs/sandbar/template
@@ -0,0 +1,14 @@
+# Template file for 'sandbar'
+pkgname=sandbar
+version=0.1
+revision=1
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config wayland-devel"
+makedepends="wayland-protocols pixman-devel fcft-devel"
+short_desc="Bar (similar to dwm) for the river wayland compositor"
+maintainer="dkwo <npiazza@disroot.org>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/kolunmi/sandbar"
+distfiles="https://github.com/kolunmi/sandbar/archive/refs/tags/v${version}.tar.gz"
+checksum=5e875d6aca54c195d1842c124e48a7385eaada67a7160adbc279c6d6fa0d2b48

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

* Re: [PR PATCH] [Updated] New package: sandbar-0.1
  2023-07-12 15:39 [PR PATCH] New package: sandbar-0.1 dkwo
                   ` (8 preceding siblings ...)
  2023-07-13 13:00 ` dkwo
@ 2023-07-13 13:03 ` dkwo
  2023-08-09 21:00 ` [PR PATCH] [Merged]: " Duncaen
  10 siblings, 0 replies; 12+ messages in thread
From: dkwo @ 2023-07-13 13:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages sandbar
https://github.com/void-linux/void-packages/pull/44997

New package: sandbar-0.1
- I tested the changes in this PR: yes, been using it for several weeks

```
#!/bin/bash
FIFO="$XDG_RUNTIME_DIR/sandbar-0"
[ -e "$FIFO" ] && rm -f "$FIFO"
mkfifo "$FIFO"
while cat "$FIFO"; do :; done | sandbar -font Terminus:size=32

while true
do
echo "all status $(print_bat) $(print_date)" > $XDG_RUNTIME_DIR/sandbar-0
sleep 1
done
```

- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, x86_64

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

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

From 6356bd00676ec785803be3a83d54505474c1a1f9 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Tue, 30 May 2023 18:48:24 -0400
Subject: [PATCH] New package: sandbar-0.1

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

diff --git a/srcpkgs/sandbar/template b/srcpkgs/sandbar/template
new file mode 100644
index 000000000000..f178c379548b
--- /dev/null
+++ b/srcpkgs/sandbar/template
@@ -0,0 +1,14 @@
+# Template file for 'sandbar'
+pkgname=sandbar
+version=0.1
+revision=1
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config wayland-devel"
+makedepends="wayland-protocols pixman-devel fcft-devel wayland-devel"
+short_desc="Bar (similar to dwm) for the river wayland compositor"
+maintainer="dkwo <npiazza@disroot.org>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/kolunmi/sandbar"
+distfiles="https://github.com/kolunmi/sandbar/archive/refs/tags/v${version}.tar.gz"
+checksum=5e875d6aca54c195d1842c124e48a7385eaada67a7160adbc279c6d6fa0d2b48

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

* Re: [PR PATCH] [Merged]: New package: sandbar-0.1
  2023-07-12 15:39 [PR PATCH] New package: sandbar-0.1 dkwo
                   ` (9 preceding siblings ...)
  2023-07-13 13:03 ` dkwo
@ 2023-08-09 21:00 ` Duncaen
  10 siblings, 0 replies; 12+ messages in thread
From: Duncaen @ 2023-08-09 21:00 UTC (permalink / raw)
  To: ml

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

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

New package: sandbar-0.1
https://github.com/void-linux/void-packages/pull/44997

Description:
- I tested the changes in this PR: yes, been using it for several weeks

```
#!/bin/bash
FIFO="$XDG_RUNTIME_DIR/sandbar-0"
[ -e "$FIFO" ] && rm -f "$FIFO"
mkfifo "$FIFO"
while cat "$FIFO"; do :; done | sandbar -font Terminus:size=32

while true
do
echo "all status $(print_bat) $(print_date)" > $XDG_RUNTIME_DIR/sandbar-0
sleep 1
done
```

- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, x86_64

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

end of thread, other threads:[~2023-08-09 21:00 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-12 15:39 [PR PATCH] New package: sandbar-0.1 dkwo
2023-07-12 15:44 ` [PR PATCH] [Updated] " dkwo
2023-07-12 15:49 ` dkwo
2023-07-12 16:05 ` dkwo
2023-07-12 16:09 ` dkwo
2023-07-12 17:19 ` icp1994
2023-07-12 18:02 ` [PR PATCH] [Updated] " dkwo
2023-07-12 18:05 ` dkwo
2023-07-13 12:52 ` [PR PATCH] [Updated] " dkwo
2023-07-13 13:00 ` dkwo
2023-07-13 13:03 ` dkwo
2023-08-09 21:00 ` [PR PATCH] [Merged]: " Duncaen

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