Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] soju: update to 0.6.1, adopt.
@ 2023-04-24 21:41 classabbyamp
  2023-04-24 22:23 ` [PR PATCH] [Updated] " classabbyamp
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: classabbyamp @ 2023-04-24 21:41 UTC (permalink / raw)
  To: ml

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

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

https://github.com/classabbyamp/void-packages update/soju-0.6.1
https://github.com/void-linux/void-packages/pull/43602

soju: update to 0.6.1, adopt.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **NO**t yet

@flupe, can I adopt this from you?


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/soju-0.6.1-43602.patch --]
[-- Type: text/x-diff, Size: 1661 bytes --]

From 6492232253c89338c0f342248bd4ca61fa456aa0 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Mon, 24 Apr 2023 17:40:07 -0400
Subject: [PATCH] soju: update to 0.6.1, adopt.

---
 srcpkgs/soju/template | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/srcpkgs/soju/template b/srcpkgs/soju/template
index 97a72ffa4653..70c4d46bedcb 100644
--- a/srcpkgs/soju/template
+++ b/srcpkgs/soju/template
@@ -1,7 +1,7 @@
 # Template file for 'soju'
 pkgname=soju
-version=0.6.0
-revision=2
+version=0.6.1
+revision=1
 build_style=go
 go_import_path="git.sr.ht/~emersion/soju"
 go_package="./cmd/..."
@@ -9,21 +9,21 @@ go_build_tags="libsqlite3"
 hostmakedepends="scdoc"
 makedepends="sqlite-devel"
 short_desc="User-friendly IRC bouncer"
-maintainer="flupe <lucas@escot.me>"
+maintainer="classabbyamp <void@placeviolette.net>"
 license="AGPL-3.0-or-later"
 homepage="https://soju.im"
-changelog="https://git.sr.ht/~emersion/soju/refs/v${version}"
+changelog="https://git.sr.ht/~emersion/soju/refs"
 distfiles="https://git.sr.ht/~emersion/soju/refs/download/v${version}/soju-${version}.tar.gz"
-checksum=11275b6edf53ae811011b4e9c3f325e901c31986e46c390c841c3add114cb9aa
+checksum=336ec8bb2482ec811261bb6c19bd71613fa20e65bb98aedfbceb16969bb7038b
 conf_files="/etc/soju/config"
 system_accounts="_soju"
 make_dirs="/var/db/soju 0750 _soju _soju
  /var/log/soju 0750 _soju _soju"
 
 post_install() {
-	for f in soju.1 sojuctl.1; do
-		scdoc <doc/$f.scd >doc/$f
-		vman doc/$f
+	for f in doc/*.?.scd; do
+		scdoc <$f >"${f%.scd}"
+		vman "${f%.scd}"
 	done
 	vlicense LICENSE
 	vinstall $FILESDIR/config 644 etc/soju

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

* Re: [PR PATCH] [Updated] soju: update to 0.6.1, adopt.
  2023-04-24 21:41 [PR PATCH] soju: update to 0.6.1, adopt classabbyamp
@ 2023-04-24 22:23 ` classabbyamp
  2023-04-25  2:27 ` classabbyamp
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: classabbyamp @ 2023-04-24 22:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/classabbyamp/void-packages update/soju-0.6.1
https://github.com/void-linux/void-packages/pull/43602

soju: update to 0.6.1, adopt.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

@flupe, can I adopt this from you?

repo available for testing: https://devspace.voidlinux.org/abby/updates/soju-0.6.1/


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/soju-0.6.1-43602.patch --]
[-- Type: text/x-diff, Size: 2059 bytes --]

From e7e28ec00a80b56bc77e5e1af41e746c409b503d Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Mon, 24 Apr 2023 17:40:07 -0400
Subject: [PATCH] soju: update to 0.6.1, adopt.

add CAP_NET_BIND_SERVICE so soju can run identd on :113 if desired
---
 srcpkgs/soju/INSTALL  |  5 +++++
 srcpkgs/soju/template | 16 ++++++++--------
 2 files changed, 13 insertions(+), 8 deletions(-)
 create mode 100644 srcpkgs/soju/INSTALL

diff --git a/srcpkgs/soju/INSTALL b/srcpkgs/soju/INSTALL
new file mode 100644
index 000000000000..fc30b212dcd7
--- /dev/null
+++ b/srcpkgs/soju/INSTALL
@@ -0,0 +1,5 @@
+case "${ACTION}" in
+post)
+	setcap CAP_NET_BIND_SERVICE=+ep usr/bin/soju
+	;;
+esac
diff --git a/srcpkgs/soju/template b/srcpkgs/soju/template
index 97a72ffa4653..70c4d46bedcb 100644
--- a/srcpkgs/soju/template
+++ b/srcpkgs/soju/template
@@ -1,7 +1,7 @@
 # Template file for 'soju'
 pkgname=soju
-version=0.6.0
-revision=2
+version=0.6.1
+revision=1
 build_style=go
 go_import_path="git.sr.ht/~emersion/soju"
 go_package="./cmd/..."
@@ -9,21 +9,21 @@ go_build_tags="libsqlite3"
 hostmakedepends="scdoc"
 makedepends="sqlite-devel"
 short_desc="User-friendly IRC bouncer"
-maintainer="flupe <lucas@escot.me>"
+maintainer="classabbyamp <void@placeviolette.net>"
 license="AGPL-3.0-or-later"
 homepage="https://soju.im"
-changelog="https://git.sr.ht/~emersion/soju/refs/v${version}"
+changelog="https://git.sr.ht/~emersion/soju/refs"
 distfiles="https://git.sr.ht/~emersion/soju/refs/download/v${version}/soju-${version}.tar.gz"
-checksum=11275b6edf53ae811011b4e9c3f325e901c31986e46c390c841c3add114cb9aa
+checksum=336ec8bb2482ec811261bb6c19bd71613fa20e65bb98aedfbceb16969bb7038b
 conf_files="/etc/soju/config"
 system_accounts="_soju"
 make_dirs="/var/db/soju 0750 _soju _soju
  /var/log/soju 0750 _soju _soju"
 
 post_install() {
-	for f in soju.1 sojuctl.1; do
-		scdoc <doc/$f.scd >doc/$f
-		vman doc/$f
+	for f in doc/*.?.scd; do
+		scdoc <$f >"${f%.scd}"
+		vman "${f%.scd}"
 	done
 	vlicense LICENSE
 	vinstall $FILESDIR/config 644 etc/soju

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

* Re: [PR PATCH] [Updated] soju: update to 0.6.1, adopt.
  2023-04-24 21:41 [PR PATCH] soju: update to 0.6.1, adopt classabbyamp
  2023-04-24 22:23 ` [PR PATCH] [Updated] " classabbyamp
@ 2023-04-25  2:27 ` classabbyamp
  2023-04-25 10:11 ` flupe
  2023-04-25 15:29 ` [PR PATCH] [Merged]: " classabbyamp
  3 siblings, 0 replies; 5+ messages in thread
From: classabbyamp @ 2023-04-25  2:27 UTC (permalink / raw)
  To: ml

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

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

https://github.com/classabbyamp/void-packages update/soju-0.6.1
https://github.com/void-linux/void-packages/pull/43602

soju: update to 0.6.1, adopt.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

@flupe, can I adopt this from you?

repo available for testing: https://devspace.voidlinux.org/abby/updates/soju-0.6.1/


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/soju-0.6.1-43602.patch --]
[-- Type: text/x-diff, Size: 2059 bytes --]

From 74d6f1abf28762850597eddf8c42b96ca3329124 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Mon, 24 Apr 2023 17:40:07 -0400
Subject: [PATCH] soju: update to 0.6.1, adopt.

add CAP_NET_BIND_SERVICE so soju can run identd on :113 if desired
---
 srcpkgs/soju/INSTALL  |  5 +++++
 srcpkgs/soju/template | 16 ++++++++--------
 2 files changed, 13 insertions(+), 8 deletions(-)
 create mode 100644 srcpkgs/soju/INSTALL

diff --git a/srcpkgs/soju/INSTALL b/srcpkgs/soju/INSTALL
new file mode 100644
index 000000000000..fc30b212dcd7
--- /dev/null
+++ b/srcpkgs/soju/INSTALL
@@ -0,0 +1,5 @@
+case "${ACTION}" in
+post)
+	setcap CAP_NET_BIND_SERVICE=+ep usr/bin/soju
+	;;
+esac
diff --git a/srcpkgs/soju/template b/srcpkgs/soju/template
index 97a72ffa4653..70c4d46bedcb 100644
--- a/srcpkgs/soju/template
+++ b/srcpkgs/soju/template
@@ -1,7 +1,7 @@
 # Template file for 'soju'
 pkgname=soju
-version=0.6.0
-revision=2
+version=0.6.1
+revision=1
 build_style=go
 go_import_path="git.sr.ht/~emersion/soju"
 go_package="./cmd/..."
@@ -9,21 +9,21 @@ go_build_tags="libsqlite3"
 hostmakedepends="scdoc"
 makedepends="sqlite-devel"
 short_desc="User-friendly IRC bouncer"
-maintainer="flupe <lucas@escot.me>"
+maintainer="classabbyamp <void@placeviolette.net>"
 license="AGPL-3.0-or-later"
 homepage="https://soju.im"
-changelog="https://git.sr.ht/~emersion/soju/refs/v${version}"
+changelog="https://git.sr.ht/~emersion/soju/refs"
 distfiles="https://git.sr.ht/~emersion/soju/refs/download/v${version}/soju-${version}.tar.gz"
-checksum=11275b6edf53ae811011b4e9c3f325e901c31986e46c390c841c3add114cb9aa
+checksum=336ec8bb2482ec811261bb6c19bd71613fa20e65bb98aedfbceb16969bb7038b
 conf_files="/etc/soju/config"
 system_accounts="_soju"
 make_dirs="/var/db/soju 0750 _soju _soju
  /var/log/soju 0750 _soju _soju"
 
 post_install() {
-	for f in soju.1 sojuctl.1; do
-		scdoc <doc/$f.scd >doc/$f
-		vman doc/$f
+	for f in doc/*.?.scd; do
+		scdoc <$f >"${f%.scd}"
+		vman "${f%.scd}"
 	done
 	vlicense LICENSE
 	vinstall $FILESDIR/config 644 etc/soju

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

* Re: soju: update to 0.6.1, adopt.
  2023-04-24 21:41 [PR PATCH] soju: update to 0.6.1, adopt classabbyamp
  2023-04-24 22:23 ` [PR PATCH] [Updated] " classabbyamp
  2023-04-25  2:27 ` classabbyamp
@ 2023-04-25 10:11 ` flupe
  2023-04-25 15:29 ` [PR PATCH] [Merged]: " classabbyamp
  3 siblings, 0 replies; 5+ messages in thread
From: flupe @ 2023-04-25 10:11 UTC (permalink / raw)
  To: ml

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

New comment by flupe on void-packages repository

https://github.com/void-linux/void-packages/pull/43602#issuecomment-1521529749

Comment:
Definitely, thanks for taking care of it!

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

* Re: [PR PATCH] [Merged]: soju: update to 0.6.1, adopt.
  2023-04-24 21:41 [PR PATCH] soju: update to 0.6.1, adopt classabbyamp
                   ` (2 preceding siblings ...)
  2023-04-25 10:11 ` flupe
@ 2023-04-25 15:29 ` classabbyamp
  3 siblings, 0 replies; 5+ messages in thread
From: classabbyamp @ 2023-04-25 15:29 UTC (permalink / raw)
  To: ml

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

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

soju: update to 0.6.1, adopt.
https://github.com/void-linux/void-packages/pull/43602

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

#### Testing the changes
- I tested the changes in this PR: **YES**

@flupe, can I adopt this from you?

repo available for testing: https://devspace.voidlinux.org/abby/updates/soju-0.6.1/


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

end of thread, other threads:[~2023-04-25 15:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-24 21:41 [PR PATCH] soju: update to 0.6.1, adopt classabbyamp
2023-04-24 22:23 ` [PR PATCH] [Updated] " classabbyamp
2023-04-25  2:27 ` classabbyamp
2023-04-25 10:11 ` flupe
2023-04-25 15:29 ` [PR PATCH] [Merged]: " classabbyamp

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