Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] libvisual: update to 0.4.2.
@ 2023-05-17  9:56 Piraty
  2023-05-17  9:58 ` [PR PATCH] [Updated] " Piraty
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Piraty @ 2023-05-17  9:56 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Piraty/void-packages libvisual-0.4.2
https://github.com/void-linux/void-packages/pull/43912

libvisual: update to 0.4.2.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

------

ping @hartwork

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

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

From d78d9cc3b4ba293c57bffa3cde4be872c48291f7 Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Mon, 15 May 2023 12:07:46 +0200
Subject: [PATCH 1/2] libvisual: update to 0.4.2.

---
 srcpkgs/libvisual/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libvisual/template b/srcpkgs/libvisual/template
index d49a38c58b7c..ef95a6551adb 100644
--- a/srcpkgs/libvisual/template
+++ b/srcpkgs/libvisual/template
@@ -1,16 +1,16 @@
 # Template file for 'libvisual'
 pkgname=libvisual
-version=0.4.1
+version=0.4.2
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config SDL-devel"
 makedepends="SDL-devel"
 short_desc="Abstraction library for audio visualisation plugins"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Piraty <mail@piraty.dev>"
 license="LGPL-2.1-or-later"
-homepage="http://sourceforge.net/projects/libvisual/"
-distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.gz"
-checksum=aa12877417f76d3642d9f4c723302380d833175639d63a55641d01928a5ddb7d
+homepage="http://libvisual.org"
+distfiles="https://github.com/Libvisual/libvisual/releases/download/libvisual-${version}/libvisual-${version}.tar.bz2"
+checksum="2aa5967c5c9522c8d7ab9bd9246c77a582c1aaf4f2b3f06493dbe3066f00380a"
 
 pre_configure() {
 	vsed -e 's,-L$(libdir),,' -i libvisual/Makefile.in

From eac9262cbe665ba123f0652ecb9ceb23108bccb0 Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Wed, 17 May 2023 09:21:09 +0200
Subject: [PATCH 2/2] libvisual-plugins: remove package

---
 ...configure.ac-Fix-use-of-m4-variables.patch | 37 +++++++++++++++++++
 srcpkgs/libvisual-plugins/template            | 18 +++++++++
 2 files changed, 55 insertions(+)
 create mode 100644 srcpkgs/libvisual-plugins/patches/0001-Plugins-configure.ac-Fix-use-of-m4-variables.patch
 create mode 100644 srcpkgs/libvisual-plugins/template

diff --git a/srcpkgs/libvisual-plugins/patches/0001-Plugins-configure.ac-Fix-use-of-m4-variables.patch b/srcpkgs/libvisual-plugins/patches/0001-Plugins-configure.ac-Fix-use-of-m4-variables.patch
new file mode 100644
index 000000000000..cf47e272472e
--- /dev/null
+++ b/srcpkgs/libvisual-plugins/patches/0001-Plugins-configure.ac-Fix-use-of-m4-variables.patch
@@ -0,0 +1,37 @@
+From 10a43aa829e6856dace7553b7f544ffea4f2f1dd Mon Sep 17 00:00:00 2001
+From: Sebastian Pipping <sebastian@pipping.org>
+Date: Mon, 3 Apr 2023 01:42:54 +0200
+Subject: [PATCH] Plugins: configure.ac: Fix use of m4 variables
+
+These are m4 variables and hence are expanded by m4, not shell:
+- gst_required_version
+- gtk_required_version
+---
+ configure.ac | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 7491f6e8..7fb2d98d 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -154,7 +154,7 @@ if test "$ENABLE_PLUGIN_GDKPIXBUF" = "yes"; then
+   if test "$HAVE_GTK" = "yes"; then
+     build_actor_plugins="$build_actor_plugins gdkpixbuf"
+   else
+-    AC_MSG_WARN([*** GTK+ >= ${gtk_required_version} is not found.
++    AC_MSG_WARN([*** GTK+ >= gtk_required_version is not found.
+ 	  	The libvisual GdkPixbuf image loader plugin won't be built.
+ 		GdkPixbuf is included within gtk+-3.0 and newer, which can be
+ 		downloaded at https://www.gtk.org/])
+@@ -175,7 +175,7 @@ if test "$ENABLE_GSTREAMER_PLUGIN" = "yes"; then
+   if test "$HAVE_GSTREAMER" = "yes"; then
+     build_actor_plugins="$build_actor_plugins gstreamer"
+   else
+-    AC_MSG_WARN([*** GStreamer >= ${gst_required_version} is not found.
++    AC_MSG_WARN([*** GStreamer >= gst_required_version is not found.
+ 	  	The libvisual GStreamer viewer plugin won't be build.
+ 		GStreamer can be downloaded from https://gstreamer.freedesktop.org/])
+   fi
+-- 
+2.40.1
+
diff --git a/srcpkgs/libvisual-plugins/template b/srcpkgs/libvisual-plugins/template
new file mode 100644
index 000000000000..572315221073
--- /dev/null
+++ b/srcpkgs/libvisual-plugins/template
@@ -0,0 +1,18 @@
+# Template file for 'libvisual-plugins'
+pkgname=libvisual-plugins
+version=0.4.2
+revision=1
+build_style=gnu-configure
+hostmakedepends="automake flex gettext-devel libtool pkg-config"
+makedepends="SDL-devel libvisual-devel"
+short_desc="Collection of visualization plugins for use with libvisual"
+maintainer="Piraty <mail@piraty.dev>"
+license="GPL-2.0-only"
+homepage="http://libvisual.org"
+distfiles="https://github.com/Libvisual/libvisual/releases/download/libvisual-plugins-${version}/libvisual-plugins-${version}.tar.bz2"
+checksum="a1dd04eb3d311d68b4f43a5c707df7aba7a98a9cab820c58395a7f5d7d6d0157"
+
+pre_configure() {
+	# due to patched configure.ac
+	autoreconf -vfi
+}

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

* Re: [PR PATCH] [Updated] libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
@ 2023-05-17  9:58 ` Piraty
  2023-05-17 10:02 ` Piraty
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Piraty @ 2023-05-17  9:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Piraty/void-packages libvisual-0.4.2
https://github.com/void-linux/void-packages/pull/43912

libvisual: update to 0.4.2.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

------

ping @hartwork

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

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

From d78d9cc3b4ba293c57bffa3cde4be872c48291f7 Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Mon, 15 May 2023 12:07:46 +0200
Subject: [PATCH 1/2] libvisual: update to 0.4.2.

---
 srcpkgs/libvisual/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libvisual/template b/srcpkgs/libvisual/template
index d49a38c58b7c..ef95a6551adb 100644
--- a/srcpkgs/libvisual/template
+++ b/srcpkgs/libvisual/template
@@ -1,16 +1,16 @@
 # Template file for 'libvisual'
 pkgname=libvisual
-version=0.4.1
+version=0.4.2
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config SDL-devel"
 makedepends="SDL-devel"
 short_desc="Abstraction library for audio visualisation plugins"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Piraty <mail@piraty.dev>"
 license="LGPL-2.1-or-later"
-homepage="http://sourceforge.net/projects/libvisual/"
-distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.gz"
-checksum=aa12877417f76d3642d9f4c723302380d833175639d63a55641d01928a5ddb7d
+homepage="http://libvisual.org"
+distfiles="https://github.com/Libvisual/libvisual/releases/download/libvisual-${version}/libvisual-${version}.tar.bz2"
+checksum="2aa5967c5c9522c8d7ab9bd9246c77a582c1aaf4f2b3f06493dbe3066f00380a"
 
 pre_configure() {
 	vsed -e 's,-L$(libdir),,' -i libvisual/Makefile.in

From 119fca4a833041f7bde16a02471035270ae03ce5 Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Wed, 17 May 2023 09:21:09 +0200
Subject: [PATCH 2/2] New package: libvisual-plugins

---
 ...configure.ac-Fix-use-of-m4-variables.patch | 37 +++++++++++++++++++
 srcpkgs/libvisual-plugins/template            | 18 +++++++++
 2 files changed, 55 insertions(+)
 create mode 100644 srcpkgs/libvisual-plugins/patches/0001-Plugins-configure.ac-Fix-use-of-m4-variables.patch
 create mode 100644 srcpkgs/libvisual-plugins/template

diff --git a/srcpkgs/libvisual-plugins/patches/0001-Plugins-configure.ac-Fix-use-of-m4-variables.patch b/srcpkgs/libvisual-plugins/patches/0001-Plugins-configure.ac-Fix-use-of-m4-variables.patch
new file mode 100644
index 000000000000..cf47e272472e
--- /dev/null
+++ b/srcpkgs/libvisual-plugins/patches/0001-Plugins-configure.ac-Fix-use-of-m4-variables.patch
@@ -0,0 +1,37 @@
+From 10a43aa829e6856dace7553b7f544ffea4f2f1dd Mon Sep 17 00:00:00 2001
+From: Sebastian Pipping <sebastian@pipping.org>
+Date: Mon, 3 Apr 2023 01:42:54 +0200
+Subject: [PATCH] Plugins: configure.ac: Fix use of m4 variables
+
+These are m4 variables and hence are expanded by m4, not shell:
+- gst_required_version
+- gtk_required_version
+---
+ configure.ac | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 7491f6e8..7fb2d98d 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -154,7 +154,7 @@ if test "$ENABLE_PLUGIN_GDKPIXBUF" = "yes"; then
+   if test "$HAVE_GTK" = "yes"; then
+     build_actor_plugins="$build_actor_plugins gdkpixbuf"
+   else
+-    AC_MSG_WARN([*** GTK+ >= ${gtk_required_version} is not found.
++    AC_MSG_WARN([*** GTK+ >= gtk_required_version is not found.
+ 	  	The libvisual GdkPixbuf image loader plugin won't be built.
+ 		GdkPixbuf is included within gtk+-3.0 and newer, which can be
+ 		downloaded at https://www.gtk.org/])
+@@ -175,7 +175,7 @@ if test "$ENABLE_GSTREAMER_PLUGIN" = "yes"; then
+   if test "$HAVE_GSTREAMER" = "yes"; then
+     build_actor_plugins="$build_actor_plugins gstreamer"
+   else
+-    AC_MSG_WARN([*** GStreamer >= ${gst_required_version} is not found.
++    AC_MSG_WARN([*** GStreamer >= gst_required_version is not found.
+ 	  	The libvisual GStreamer viewer plugin won't be build.
+ 		GStreamer can be downloaded from https://gstreamer.freedesktop.org/])
+   fi
+-- 
+2.40.1
+
diff --git a/srcpkgs/libvisual-plugins/template b/srcpkgs/libvisual-plugins/template
new file mode 100644
index 000000000000..572315221073
--- /dev/null
+++ b/srcpkgs/libvisual-plugins/template
@@ -0,0 +1,18 @@
+# Template file for 'libvisual-plugins'
+pkgname=libvisual-plugins
+version=0.4.2
+revision=1
+build_style=gnu-configure
+hostmakedepends="automake flex gettext-devel libtool pkg-config"
+makedepends="SDL-devel libvisual-devel"
+short_desc="Collection of visualization plugins for use with libvisual"
+maintainer="Piraty <mail@piraty.dev>"
+license="GPL-2.0-only"
+homepage="http://libvisual.org"
+distfiles="https://github.com/Libvisual/libvisual/releases/download/libvisual-plugins-${version}/libvisual-plugins-${version}.tar.bz2"
+checksum="a1dd04eb3d311d68b4f43a5c707df7aba7a98a9cab820c58395a7f5d7d6d0157"
+
+pre_configure() {
+	# due to patched configure.ac
+	autoreconf -vfi
+}

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

* Re: [PR PATCH] [Updated] libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
  2023-05-17  9:58 ` [PR PATCH] [Updated] " Piraty
@ 2023-05-17 10:02 ` Piraty
  2023-08-16  1:44 ` github-actions
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Piraty @ 2023-05-17 10:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Piraty/void-packages libvisual-0.4.2
https://github.com/void-linux/void-packages/pull/43912

libvisual: update to 0.4.2.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

------

ping @hartwork

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

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

From d78d9cc3b4ba293c57bffa3cde4be872c48291f7 Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Mon, 15 May 2023 12:07:46 +0200
Subject: [PATCH 1/2] libvisual: update to 0.4.2.

---
 srcpkgs/libvisual/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libvisual/template b/srcpkgs/libvisual/template
index d49a38c58b7c..ef95a6551adb 100644
--- a/srcpkgs/libvisual/template
+++ b/srcpkgs/libvisual/template
@@ -1,16 +1,16 @@
 # Template file for 'libvisual'
 pkgname=libvisual
-version=0.4.1
+version=0.4.2
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config SDL-devel"
 makedepends="SDL-devel"
 short_desc="Abstraction library for audio visualisation plugins"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Piraty <mail@piraty.dev>"
 license="LGPL-2.1-or-later"
-homepage="http://sourceforge.net/projects/libvisual/"
-distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.gz"
-checksum=aa12877417f76d3642d9f4c723302380d833175639d63a55641d01928a5ddb7d
+homepage="http://libvisual.org"
+distfiles="https://github.com/Libvisual/libvisual/releases/download/libvisual-${version}/libvisual-${version}.tar.bz2"
+checksum="2aa5967c5c9522c8d7ab9bd9246c77a582c1aaf4f2b3f06493dbe3066f00380a"
 
 pre_configure() {
 	vsed -e 's,-L$(libdir),,' -i libvisual/Makefile.in

From f1e32653f6306c5bf92172a84b086ae06e3b044e Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Wed, 17 May 2023 12:01:57 +0200
Subject: [PATCH 2/2] New package: libvisual-plugins-0.4.2

---
 ...configure.ac-Fix-use-of-m4-variables.patch | 37 +++++++++++++++++++
 srcpkgs/libvisual-plugins/template            | 18 +++++++++
 2 files changed, 55 insertions(+)
 create mode 100644 srcpkgs/libvisual-plugins/patches/0001-Plugins-configure.ac-Fix-use-of-m4-variables.patch
 create mode 100644 srcpkgs/libvisual-plugins/template

diff --git a/srcpkgs/libvisual-plugins/patches/0001-Plugins-configure.ac-Fix-use-of-m4-variables.patch b/srcpkgs/libvisual-plugins/patches/0001-Plugins-configure.ac-Fix-use-of-m4-variables.patch
new file mode 100644
index 000000000000..cf47e272472e
--- /dev/null
+++ b/srcpkgs/libvisual-plugins/patches/0001-Plugins-configure.ac-Fix-use-of-m4-variables.patch
@@ -0,0 +1,37 @@
+From 10a43aa829e6856dace7553b7f544ffea4f2f1dd Mon Sep 17 00:00:00 2001
+From: Sebastian Pipping <sebastian@pipping.org>
+Date: Mon, 3 Apr 2023 01:42:54 +0200
+Subject: [PATCH] Plugins: configure.ac: Fix use of m4 variables
+
+These are m4 variables and hence are expanded by m4, not shell:
+- gst_required_version
+- gtk_required_version
+---
+ configure.ac | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 7491f6e8..7fb2d98d 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -154,7 +154,7 @@ if test "$ENABLE_PLUGIN_GDKPIXBUF" = "yes"; then
+   if test "$HAVE_GTK" = "yes"; then
+     build_actor_plugins="$build_actor_plugins gdkpixbuf"
+   else
+-    AC_MSG_WARN([*** GTK+ >= ${gtk_required_version} is not found.
++    AC_MSG_WARN([*** GTK+ >= gtk_required_version is not found.
+ 	  	The libvisual GdkPixbuf image loader plugin won't be built.
+ 		GdkPixbuf is included within gtk+-3.0 and newer, which can be
+ 		downloaded at https://www.gtk.org/])
+@@ -175,7 +175,7 @@ if test "$ENABLE_GSTREAMER_PLUGIN" = "yes"; then
+   if test "$HAVE_GSTREAMER" = "yes"; then
+     build_actor_plugins="$build_actor_plugins gstreamer"
+   else
+-    AC_MSG_WARN([*** GStreamer >= ${gst_required_version} is not found.
++    AC_MSG_WARN([*** GStreamer >= gst_required_version is not found.
+ 	  	The libvisual GStreamer viewer plugin won't be build.
+ 		GStreamer can be downloaded from https://gstreamer.freedesktop.org/])
+   fi
+-- 
+2.40.1
+
diff --git a/srcpkgs/libvisual-plugins/template b/srcpkgs/libvisual-plugins/template
new file mode 100644
index 000000000000..572315221073
--- /dev/null
+++ b/srcpkgs/libvisual-plugins/template
@@ -0,0 +1,18 @@
+# Template file for 'libvisual-plugins'
+pkgname=libvisual-plugins
+version=0.4.2
+revision=1
+build_style=gnu-configure
+hostmakedepends="automake flex gettext-devel libtool pkg-config"
+makedepends="SDL-devel libvisual-devel"
+short_desc="Collection of visualization plugins for use with libvisual"
+maintainer="Piraty <mail@piraty.dev>"
+license="GPL-2.0-only"
+homepage="http://libvisual.org"
+distfiles="https://github.com/Libvisual/libvisual/releases/download/libvisual-plugins-${version}/libvisual-plugins-${version}.tar.bz2"
+checksum="a1dd04eb3d311d68b4f43a5c707df7aba7a98a9cab820c58395a7f5d7d6d0157"
+
+pre_configure() {
+	# due to patched configure.ac
+	autoreconf -vfi
+}

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

* Re: libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
  2023-05-17  9:58 ` [PR PATCH] [Updated] " Piraty
  2023-05-17 10:02 ` Piraty
@ 2023-08-16  1:44 ` github-actions
  2023-08-17 12:17 ` hartwork
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: github-actions @ 2023-08-16  1:44 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/43912#issuecomment-1679845428

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
                   ` (2 preceding siblings ...)
  2023-08-16  1:44 ` github-actions
@ 2023-08-17 12:17 ` hartwork
  2023-08-18 23:05 ` [PR PATCH] [Updated] " Piraty
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: hartwork @ 2023-08-17 12:17 UTC (permalink / raw)
  To: ml

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

New comment by hartwork on void-packages repository

https://github.com/void-linux/void-packages/pull/43912#issuecomment-1682183917

Comment:
> Hi @Piraty cool!
> 
> Regarding details:
> 
>  * The patch applies to configure error output so if you make sure to note take the error path by (1) use of the right flags and (2) the dependencies being around and recent enough, the patch could in theory be dropped again (if you like).
> 
>  * Some dependencies are still missing on plugins, e.g. Alsa, portaudio, pulseaudio, glu, mesa, jack, bison (rather than flex). https://github.com/Homebrew/homebrew-core/pull/126424/files may be good to compare too, though I notice that plugins should not need SDL there either…

@Piraty any thoughts?

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

* Re: [PR PATCH] [Updated] libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
                   ` (3 preceding siblings ...)
  2023-08-17 12:17 ` hartwork
@ 2023-08-18 23:05 ` Piraty
  2023-08-18 23:24 ` Piraty
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Piraty @ 2023-08-18 23:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Piraty/void-packages libvisual-0.4.2
https://github.com/void-linux/void-packages/pull/43912

libvisual: update to 0.4.2.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

------

ping @hartwork

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

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

From cc930d33b5ba0a525452fa9149c5188e115d7a30 Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Mon, 15 May 2023 12:07:46 +0200
Subject: [PATCH 1/2] libvisual: update to 0.4.2.

---
 srcpkgs/libvisual/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libvisual/template b/srcpkgs/libvisual/template
index d49a38c58b7cc..ef95a6551adb8 100644
--- a/srcpkgs/libvisual/template
+++ b/srcpkgs/libvisual/template
@@ -1,16 +1,16 @@
 # Template file for 'libvisual'
 pkgname=libvisual
-version=0.4.1
+version=0.4.2
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config SDL-devel"
 makedepends="SDL-devel"
 short_desc="Abstraction library for audio visualisation plugins"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Piraty <mail@piraty.dev>"
 license="LGPL-2.1-or-later"
-homepage="http://sourceforge.net/projects/libvisual/"
-distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.gz"
-checksum=aa12877417f76d3642d9f4c723302380d833175639d63a55641d01928a5ddb7d
+homepage="http://libvisual.org"
+distfiles="https://github.com/Libvisual/libvisual/releases/download/libvisual-${version}/libvisual-${version}.tar.bz2"
+checksum="2aa5967c5c9522c8d7ab9bd9246c77a582c1aaf4f2b3f06493dbe3066f00380a"
 
 pre_configure() {
 	vsed -e 's,-L$(libdir),,' -i libvisual/Makefile.in

From aaeb1f1ea01582900c3537f8c3777a206c676806 Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Wed, 17 May 2023 12:01:57 +0200
Subject: [PATCH 2/2] New package: libvisual-plugins-0.4.2

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

diff --git a/srcpkgs/libvisual-plugins/template b/srcpkgs/libvisual-plugins/template
new file mode 100644
index 0000000000000..7ab2f770e25aa
--- /dev/null
+++ b/srcpkgs/libvisual-plugins/template
@@ -0,0 +1,14 @@
+# Template file for 'libvisual-plugins'
+pkgname=libvisual-plugins
+version=0.4.2
+revision=1
+build_style=gnu-configure
+hostmakedepends="automake bison gettext-devel libtool pkg-config"
+makedepends="libvisual-devel alsa-lib-devel gtk+3-devel glu-devel
+ gstreamer1-devel jack-devel portaudio-devel pulseaudio-devel"
+short_desc="Collection of visualization plugins for use with libvisual"
+maintainer="Piraty <mail@piraty.dev>"
+license="GPL-2.0-only"
+homepage="http://libvisual.org"
+distfiles="https://github.com/Libvisual/libvisual/releases/download/libvisual-plugins-${version}/libvisual-plugins-${version}.tar.bz2"
+checksum="a1dd04eb3d311d68b4f43a5c707df7aba7a98a9cab820c58395a7f5d7d6d0157"

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

* Re: [PR PATCH] [Updated] libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
                   ` (4 preceding siblings ...)
  2023-08-18 23:05 ` [PR PATCH] [Updated] " Piraty
@ 2023-08-18 23:24 ` Piraty
  2023-08-18 23:24 ` Piraty
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Piraty @ 2023-08-18 23:24 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Piraty/void-packages libvisual-0.4.2
https://github.com/void-linux/void-packages/pull/43912

libvisual: update to 0.4.2.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

------

ping @hartwork

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

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

From cc930d33b5ba0a525452fa9149c5188e115d7a30 Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Mon, 15 May 2023 12:07:46 +0200
Subject: [PATCH 1/2] libvisual: update to 0.4.2.

---
 srcpkgs/libvisual/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libvisual/template b/srcpkgs/libvisual/template
index d49a38c58b7cc..ef95a6551adb8 100644
--- a/srcpkgs/libvisual/template
+++ b/srcpkgs/libvisual/template
@@ -1,16 +1,16 @@
 # Template file for 'libvisual'
 pkgname=libvisual
-version=0.4.1
+version=0.4.2
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config SDL-devel"
 makedepends="SDL-devel"
 short_desc="Abstraction library for audio visualisation plugins"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Piraty <mail@piraty.dev>"
 license="LGPL-2.1-or-later"
-homepage="http://sourceforge.net/projects/libvisual/"
-distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.gz"
-checksum=aa12877417f76d3642d9f4c723302380d833175639d63a55641d01928a5ddb7d
+homepage="http://libvisual.org"
+distfiles="https://github.com/Libvisual/libvisual/releases/download/libvisual-${version}/libvisual-${version}.tar.bz2"
+checksum="2aa5967c5c9522c8d7ab9bd9246c77a582c1aaf4f2b3f06493dbe3066f00380a"
 
 pre_configure() {
 	vsed -e 's,-L$(libdir),,' -i libvisual/Makefile.in

From 5642f3a256173c1af6b5b0b021c01e85c3618c23 Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Wed, 17 May 2023 12:01:57 +0200
Subject: [PATCH 2/2] New package: libvisual-plugins-0.4.2

---
 srcpkgs/libvisual-plugins/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/libvisual-plugins/template

diff --git a/srcpkgs/libvisual-plugins/template b/srcpkgs/libvisual-plugins/template
new file mode 100644
index 0000000000000..bb6124303dfc9
--- /dev/null
+++ b/srcpkgs/libvisual-plugins/template
@@ -0,0 +1,19 @@
+# Template file for 'libvisual-plugins'
+pkgname=libvisual-plugins
+version=0.4.2
+revision=1
+build_style=gnu-configure
+hostmakedepends="automake bison gettext-devel libtool pkg-config"
+makedepends="libvisual-devel alsa-lib-devel gtk+3-devel glu-devel
+ gstreamer1-devel jack-devel portaudio-devel pulseaudio-devel"
+short_desc="Collection of visualization plugins for use with libvisual"
+maintainer="Piraty <mail@piraty.dev>"
+license="GPL-2.0-only"
+homepage="http://libvisual.org"
+distfiles="https://github.com/Libvisual/libvisual/releases/download/libvisual-plugins-${version}/libvisual-plugins-${version}.tar.bz2"
+checksum="a1dd04eb3d311d68b4f43a5c707df7aba7a98a9cab820c58395a7f5d7d6d0157"
+
+pre_configure() {
+	# due to buggy libtool script
+	autoreconf -vfi
+}

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

* Re: libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
                   ` (5 preceding siblings ...)
  2023-08-18 23:24 ` Piraty
@ 2023-08-18 23:24 ` Piraty
  2023-11-17  1:46 ` github-actions
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Piraty @ 2023-08-18 23:24 UTC (permalink / raw)
  To: ml

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

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/43912#issuecomment-1684545237

Comment:
i applied your suggestions.

omitting `autoreconf` yields
```
libtool: Version mismatch error.  This is libtool 2.4.6 Debian-2.4.6-15build2, but the
libtool: definition of this LT_INIT comes from libtool 2.4.7.
libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6 Debian-2.4.6-15build2
libtool: and run autoconf again.
```

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

* Re: libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
                   ` (6 preceding siblings ...)
  2023-08-18 23:24 ` Piraty
@ 2023-11-17  1:46 ` github-actions
  2023-11-17 13:33 ` hartwork
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: github-actions @ 2023-11-17  1:46 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/43912#issuecomment-1815616781

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
                   ` (7 preceding siblings ...)
  2023-11-17  1:46 ` github-actions
@ 2023-11-17 13:33 ` hartwork
  2023-11-19  9:15 ` [PR PATCH] [Updated] " Piraty
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: hartwork @ 2023-11-17 13:33 UTC (permalink / raw)
  To: ml

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

New comment by hartwork on void-packages repository

https://github.com/void-linux/void-packages/pull/43912#issuecomment-1816441174

Comment:
@Piraty what does it take to get this merged?

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

* Re: [PR PATCH] [Updated] libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
                   ` (8 preceding siblings ...)
  2023-11-17 13:33 ` hartwork
@ 2023-11-19  9:15 ` Piraty
  2023-11-19  9:17 ` Piraty
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Piraty @ 2023-11-19  9:15 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Piraty/void-packages libvisual-0.4.2
https://github.com/void-linux/void-packages/pull/43912

libvisual: update to 0.4.2.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

------

ping @hartwork

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

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

From c78da16bc1fe33866273f6f50c97c1e868a1ceea Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Mon, 15 May 2023 12:07:46 +0200
Subject: [PATCH 1/2] libvisual: update to 0.4.2.

---
 srcpkgs/libvisual/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libvisual/template b/srcpkgs/libvisual/template
index d49a38c58b7cc..ef95a6551adb8 100644
--- a/srcpkgs/libvisual/template
+++ b/srcpkgs/libvisual/template
@@ -1,16 +1,16 @@
 # Template file for 'libvisual'
 pkgname=libvisual
-version=0.4.1
+version=0.4.2
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config SDL-devel"
 makedepends="SDL-devel"
 short_desc="Abstraction library for audio visualisation plugins"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Piraty <mail@piraty.dev>"
 license="LGPL-2.1-or-later"
-homepage="http://sourceforge.net/projects/libvisual/"
-distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.gz"
-checksum=aa12877417f76d3642d9f4c723302380d833175639d63a55641d01928a5ddb7d
+homepage="http://libvisual.org"
+distfiles="https://github.com/Libvisual/libvisual/releases/download/libvisual-${version}/libvisual-${version}.tar.bz2"
+checksum="2aa5967c5c9522c8d7ab9bd9246c77a582c1aaf4f2b3f06493dbe3066f00380a"
 
 pre_configure() {
 	vsed -e 's,-L$(libdir),,' -i libvisual/Makefile.in

From ca64a1f19bfb5094e29b0318fbb5fc0e856bfbac Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Wed, 17 May 2023 12:01:57 +0200
Subject: [PATCH 2/2] New package: libvisual-plugins-0.4.2

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

diff --git a/srcpkgs/libvisual-plugins/template b/srcpkgs/libvisual-plugins/template
new file mode 100644
index 0000000000000..7ab2f770e25aa
--- /dev/null
+++ b/srcpkgs/libvisual-plugins/template
@@ -0,0 +1,14 @@
+# Template file for 'libvisual-plugins'
+pkgname=libvisual-plugins
+version=0.4.2
+revision=1
+build_style=gnu-configure
+hostmakedepends="automake bison gettext-devel libtool pkg-config"
+makedepends="libvisual-devel alsa-lib-devel gtk+3-devel glu-devel
+ gstreamer1-devel jack-devel portaudio-devel pulseaudio-devel"
+short_desc="Collection of visualization plugins for use with libvisual"
+maintainer="Piraty <mail@piraty.dev>"
+license="GPL-2.0-only"
+homepage="http://libvisual.org"
+distfiles="https://github.com/Libvisual/libvisual/releases/download/libvisual-plugins-${version}/libvisual-plugins-${version}.tar.bz2"
+checksum="a1dd04eb3d311d68b4f43a5c707df7aba7a98a9cab820c58395a7f5d7d6d0157"

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

* Re: libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
                   ` (9 preceding siblings ...)
  2023-11-19  9:15 ` [PR PATCH] [Updated] " Piraty
@ 2023-11-19  9:17 ` Piraty
  2023-11-20 23:39 ` [PR PATCH] [Merged]: " Piraty
  2023-11-21  0:43 ` hartwork
  12 siblings, 0 replies; 14+ messages in thread
From: Piraty @ 2023-11-19  9:17 UTC (permalink / raw)
  To: ml

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

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/43912#issuecomment-1817796681

Comment:
nothing more than this gentle notification i guess.
i fixed some stuff and rebased. i'll merge if it looks good to you.

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

* Re: [PR PATCH] [Merged]: libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
                   ` (10 preceding siblings ...)
  2023-11-19  9:17 ` Piraty
@ 2023-11-20 23:39 ` Piraty
  2023-11-21  0:43 ` hartwork
  12 siblings, 0 replies; 14+ messages in thread
From: Piraty @ 2023-11-20 23:39 UTC (permalink / raw)
  To: ml

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

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

libvisual: update to 0.4.2.
https://github.com/void-linux/void-packages/pull/43912

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

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

------

ping @hartwork

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

* Re: libvisual: update to 0.4.2.
  2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
                   ` (11 preceding siblings ...)
  2023-11-20 23:39 ` [PR PATCH] [Merged]: " Piraty
@ 2023-11-21  0:43 ` hartwork
  12 siblings, 0 replies; 14+ messages in thread
From: hartwork @ 2023-11-21  0:43 UTC (permalink / raw)
  To: ml

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

New comment by hartwork on void-packages repository

https://github.com/void-linux/void-packages/pull/43912#issuecomment-1820035222

Comment:
@Piraty thanks a lot! :+1: :+1: 

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

end of thread, other threads:[~2023-11-21  0:43 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-17  9:56 [PR PATCH] libvisual: update to 0.4.2 Piraty
2023-05-17  9:58 ` [PR PATCH] [Updated] " Piraty
2023-05-17 10:02 ` Piraty
2023-08-16  1:44 ` github-actions
2023-08-17 12:17 ` hartwork
2023-08-18 23:05 ` [PR PATCH] [Updated] " Piraty
2023-08-18 23:24 ` Piraty
2023-08-18 23:24 ` Piraty
2023-11-17  1:46 ` github-actions
2023-11-17 13:33 ` hartwork
2023-11-19  9:15 ` [PR PATCH] [Updated] " Piraty
2023-11-19  9:17 ` Piraty
2023-11-20 23:39 ` [PR PATCH] [Merged]: " Piraty
2023-11-21  0:43 ` hartwork

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