Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] stalonetray: update to 0.8.5.
@ 2023-09-18  0:40 dexgs
  2023-09-18  0:43 ` [PR PATCH] [Updated] " dexgs
  2023-09-22 22:00 ` [PR PATCH] [Merged]: " Duncaen
  0 siblings, 2 replies; 3+ messages in thread
From: dexgs @ 2023-09-18  0:40 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dexgs/void-packages stalonetray
https://github.com/void-linux/void-packages/pull/46110

stalonetray: update to 0.8.5.
<!-- 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**|**NO**
-->

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


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

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

From 2b5e7f1bbde203829d8cdc9ff9f0a397dff2d38d Mon Sep 17 00:00:00 2001
From: Dexter Gaon-Shatford <dexter.gaonshatford@gmail.com>
Date: Sun, 17 Sep 2023 20:39:16 -0400
Subject: [PATCH] stalonetray: update to 0.8.5.

---
 ...r-share-xsl-docbook-for-DOCBOOK_ROOT.patch | 26 +++++++++++++++++++
 srcpkgs/stalonetray/template                  | 19 ++++++++++----
 2 files changed, 40 insertions(+), 5 deletions(-)
 create mode 100644 srcpkgs/stalonetray/patches/0001-Check-usr-share-xsl-docbook-for-DOCBOOK_ROOT.patch

diff --git a/srcpkgs/stalonetray/patches/0001-Check-usr-share-xsl-docbook-for-DOCBOOK_ROOT.patch b/srcpkgs/stalonetray/patches/0001-Check-usr-share-xsl-docbook-for-DOCBOOK_ROOT.patch
new file mode 100644
index 0000000000000..1a946bc395d18
--- /dev/null
+++ b/srcpkgs/stalonetray/patches/0001-Check-usr-share-xsl-docbook-for-DOCBOOK_ROOT.patch
@@ -0,0 +1,26 @@
+From 7a17bd7fd9500890c01976d89f49b4ffa3b130ba Mon Sep 17 00:00:00 2001
+From: Dexter Gaon-Shatford <dexter@gaonshatford.ca>
+Date: Thu, 31 Aug 2023 16:22:33 -0400
+Subject: [PATCH] Check /usr/share/xsl/docbook for DOCBOOK_ROOT
+
+Fixes compilation on Void Linux where docbook-xsl is installed at
+/usr/share/xsl/docbook
+---
+ configure.ac | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/configure.ac b/configure.ac
+index 986f41a..29b6f21 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -177,6 +177,7 @@ AC_DEFUN([AX_CHECK_DOCBOOK], [
+         /usr/share/sgml/docbook/stylesheet/xsl/nwalsh \
+         /usr/share/xml/docbook/stylesheet/docbook-xs \
+         /usr/share/sgml/docbook/xsl-stylesheets/ \
++        /usr/share/xsl/docbook \
+         /usr/local/share/xsl/docbook \
+     ; do
+         if test -d "$i"; then
+-- 
+2.42.0
+
diff --git a/srcpkgs/stalonetray/template b/srcpkgs/stalonetray/template
index 9e2f06365c46e..39c1ce9f889bd 100644
--- a/srcpkgs/stalonetray/template
+++ b/srcpkgs/stalonetray/template
@@ -1,16 +1,25 @@
 # Template file for 'stalonetray'
 pkgname=stalonetray
-version=0.8.3
-revision=3
+version=0.8.5
+revision=1
 build_style=gnu-configure
+hostmakedepends="automake docbook-xsl libxslt"
 makedepends="libSM-devel libXpm-devel"
 short_desc="Standalone system tray (notification area)"
 maintainer="Thomas Adam <thomas.adam22@gmail.com>"
 license="GPL-2.0-only"
-homepage="http://stalonetray.sourceforge.net/"
+homepage="https://github.com/kolbusa/stalonetray"
 distfiles="${SOURCEFORGE_SITE}/stalonetray/${version}/stalonetray-${version}.tar.gz"
-checksum=f47468a4ecabf93d22774e3fb5e1aba76e8e8d2d76e878975c7c43b65a8353e3
+distfiles="https://github.com/kolbusa/stalonetray/archive/v${version}.tar.gz"
+checksum=b66ef676d4fcffbcb0980adc7842786e7050381e06ab2c99275f04cc98d39497
+
+pre_configure() {
+	aclocal
+	autoheader
+	autoconf
+	automake --add-missing
+}
 
 post_install() {
-	vdoc README
+	vdoc README.md
 }

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

* Re: [PR PATCH] [Updated] stalonetray: update to 0.8.5.
  2023-09-18  0:40 [PR PATCH] stalonetray: update to 0.8.5 dexgs
@ 2023-09-18  0:43 ` dexgs
  2023-09-22 22:00 ` [PR PATCH] [Merged]: " Duncaen
  1 sibling, 0 replies; 3+ messages in thread
From: dexgs @ 2023-09-18  0:43 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dexgs/void-packages stalonetray
https://github.com/void-linux/void-packages/pull/46110

stalonetray: update to 0.8.5.
<!-- 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**|**NO**
-->

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


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

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

From fd5204fa3247e50a4cc0b4c4159e76e99b82c9ff Mon Sep 17 00:00:00 2001
From: Dexter Gaon-Shatford <dexter.gaonshatford@gmail.com>
Date: Sun, 17 Sep 2023 20:39:16 -0400
Subject: [PATCH] stalonetray: update to 0.8.5.

---
 ...r-share-xsl-docbook-for-DOCBOOK_ROOT.patch | 26 +++++++++++++++++++
 srcpkgs/stalonetray/template                  | 20 +++++++++-----
 2 files changed, 40 insertions(+), 6 deletions(-)
 create mode 100644 srcpkgs/stalonetray/patches/0001-Check-usr-share-xsl-docbook-for-DOCBOOK_ROOT.patch

diff --git a/srcpkgs/stalonetray/patches/0001-Check-usr-share-xsl-docbook-for-DOCBOOK_ROOT.patch b/srcpkgs/stalonetray/patches/0001-Check-usr-share-xsl-docbook-for-DOCBOOK_ROOT.patch
new file mode 100644
index 0000000000000..1a946bc395d18
--- /dev/null
+++ b/srcpkgs/stalonetray/patches/0001-Check-usr-share-xsl-docbook-for-DOCBOOK_ROOT.patch
@@ -0,0 +1,26 @@
+From 7a17bd7fd9500890c01976d89f49b4ffa3b130ba Mon Sep 17 00:00:00 2001
+From: Dexter Gaon-Shatford <dexter@gaonshatford.ca>
+Date: Thu, 31 Aug 2023 16:22:33 -0400
+Subject: [PATCH] Check /usr/share/xsl/docbook for DOCBOOK_ROOT
+
+Fixes compilation on Void Linux where docbook-xsl is installed at
+/usr/share/xsl/docbook
+---
+ configure.ac | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/configure.ac b/configure.ac
+index 986f41a..29b6f21 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -177,6 +177,7 @@ AC_DEFUN([AX_CHECK_DOCBOOK], [
+         /usr/share/sgml/docbook/stylesheet/xsl/nwalsh \
+         /usr/share/xml/docbook/stylesheet/docbook-xs \
+         /usr/share/sgml/docbook/xsl-stylesheets/ \
++        /usr/share/xsl/docbook \
+         /usr/local/share/xsl/docbook \
+     ; do
+         if test -d "$i"; then
+-- 
+2.42.0
+
diff --git a/srcpkgs/stalonetray/template b/srcpkgs/stalonetray/template
index 9e2f06365c46e..f27391a6cca24 100644
--- a/srcpkgs/stalonetray/template
+++ b/srcpkgs/stalonetray/template
@@ -1,16 +1,24 @@
 # Template file for 'stalonetray'
 pkgname=stalonetray
-version=0.8.3
-revision=3
+version=0.8.5
+revision=1
 build_style=gnu-configure
+hostmakedepends="automake docbook-xsl libxslt"
 makedepends="libSM-devel libXpm-devel"
 short_desc="Standalone system tray (notification area)"
 maintainer="Thomas Adam <thomas.adam22@gmail.com>"
 license="GPL-2.0-only"
-homepage="http://stalonetray.sourceforge.net/"
-distfiles="${SOURCEFORGE_SITE}/stalonetray/${version}/stalonetray-${version}.tar.gz"
-checksum=f47468a4ecabf93d22774e3fb5e1aba76e8e8d2d76e878975c7c43b65a8353e3
+homepage="https://github.com/kolbusa/stalonetray"
+distfiles="https://github.com/kolbusa/stalonetray/archive/v${version}.tar.gz"
+checksum=b66ef676d4fcffbcb0980adc7842786e7050381e06ab2c99275f04cc98d39497
+
+pre_configure() {
+	aclocal
+	autoheader
+	autoconf
+	automake --add-missing
+}
 
 post_install() {
-	vdoc README
+	vdoc README.md
 }

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

* Re: [PR PATCH] [Merged]: stalonetray: update to 0.8.5.
  2023-09-18  0:40 [PR PATCH] stalonetray: update to 0.8.5 dexgs
  2023-09-18  0:43 ` [PR PATCH] [Updated] " dexgs
@ 2023-09-22 22:00 ` Duncaen
  1 sibling, 0 replies; 3+ messages in thread
From: Duncaen @ 2023-09-22 22:00 UTC (permalink / raw)
  To: ml

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

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

stalonetray: update to 0.8.5.
https://github.com/void-linux/void-packages/pull/46110

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

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


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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-18  0:40 [PR PATCH] stalonetray: update to 0.8.5 dexgs
2023-09-18  0:43 ` [PR PATCH] [Updated] " dexgs
2023-09-22 22: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).