* Re: [PR PATCH] [Updated] furnace: update to 0.6pre9
2023-08-26 9:31 [PR PATCH] furnace: update to 0.6pre9 tranzystorek-io
@ 2023-09-07 9:12 ` tranzystorek-io
2023-09-08 9:02 ` [PR PATCH] [Updated] furnace: update to 0.6pre10 tranzystorek-io
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: tranzystorek-io @ 2023-09-07 9:12 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1259 bytes --]
There is an updated pull request by tranzystorek-io against master on the void-packages repository
https://github.com/tranzystorek-io/void-packages furnace
https://github.com/void-linux/void-packages/pull/45776
furnace: update to 0.6pre9
<!-- 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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
-->
A patch file from https://github.com/void-linux/void-packages/pull/45776.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-furnace-45776.patch --]
[-- Type: text/x-diff, Size: 2925 bytes --]
From 71ed0a754cb4bba0aa3c6a695e57e30031a17cbf Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Sat, 26 Aug 2023 11:28:34 +0200
Subject: [PATCH] furnace: update to 0.6pre10
---
srcpkgs/furnace/patches/fix-portaudio-check.patch | 13 +++++++++++++
srcpkgs/furnace/template | 10 ++++++----
2 files changed, 19 insertions(+), 4 deletions(-)
create mode 100644 srcpkgs/furnace/patches/fix-portaudio-check.patch
diff --git a/srcpkgs/furnace/patches/fix-portaudio-check.patch b/srcpkgs/furnace/patches/fix-portaudio-check.patch
new file mode 100644
index 0000000000000..6996215c1f48a
--- /dev/null
+++ b/srcpkgs/furnace/patches/fix-portaudio-check.patch
@@ -0,0 +1,13 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 8aa144d..eaad235 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -211,7 +211,7 @@ endif()
+ if (WITH_PORTAUDIO)
+ if (SYSTEM_PORTAUDIO)
+ find_package(PkgConfig REQUIRED)
+- pkg_check_modules(PORTAUDIO REQUIRED portaudio)
++ pkg_check_modules(PORTAUDIO REQUIRED portaudio-2.0)
+ list(APPEND DEPENDENCIES_INCLUDE_DIRS ${PORTAUDIO_INCLUDE_DIRS})
+ list(APPEND DEPENDENCIES_COMPILE_OPTIONS ${PORTAUDIO_CFLAGS_OTHER})
+ list(APPEND DEPENDENCIES_LIBRARIES ${PORTAUDIO_LIBRARIES})
diff --git a/srcpkgs/furnace/template b/srcpkgs/furnace/template
index 398a0c1d705a2..aaa1887f76512 100644
--- a/srcpkgs/furnace/template
+++ b/srcpkgs/furnace/template
@@ -1,21 +1,23 @@
# Template file for 'furnace'
pkgname=furnace
-version=0.6pre8
+version=0.6pre10
revision=1
_adpcm_commit="ef7a217154badc3b99978ac481b268c8aab67bd8"
build_wrksrc=${pkgname}-${version}
build_style=cmake
-configure_args="-DSYSTEM_FFTW=ON -DSYSTEM_FMT=ON -DSYSTEM_LIBSNDFILE=ON -DSYSTEM_RTMIDI=ON -DSYSTEM_SDL2=ON -DSYSTEM_ZLIB=ON"
+configure_args="-DSYSTEM_FFTW=ON -DSYSTEM_FMT=ON -DSYSTEM_LIBSNDFILE=ON -DSYSTEM_PORTAUDIO=ON -DSYSTEM_RTMIDI=ON
+ -DSYSTEM_SDL2=ON -DSYSTEM_ZLIB=ON"
hostmakedepends="pkg-config"
-makedepends="fftw-devel fmt-devel jack-devel libsndfile-devel rtmidi-devel zlib-devel SDL2-devel"
+makedepends="fftw-devel fmt-devel jack-devel libsndfile-devel portaudio-devel rtmidi-devel zlib-devel SDL2-devel"
short_desc="Multi-system chiptune tracker compatible with DefleMask modules"
maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
license="GPL-2.0-or-later"
homepage="https://github.com/tildearrow/furnace"
distfiles="https://github.com/tildearrow/furnace/archive/refs/tags/v${version}.tar.gz
https://github.com/superctr/adpcm/archive/${_adpcm_commit}.tar.gz"
-checksum="cf494928d3d51c05f6b24e86fcf7b6cac6cb237b2b9a09583029cd50e0a41c7b
+checksum="9ecc5a2f764f43065e0d2396911a468e6d691745fde2137277939d34f718a078
46da29342d2968ff222ba00e07c646e038b76af2e6c86de037c653059a056251"
+patch_args="-Np1 --directory=${build_wrksrc}"
post_extract() {
mv -T adpcm-${_adpcm_commit} ${pkgname}-${version}/extern/adpcm
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PR PATCH] [Updated] furnace: update to 0.6pre10
2023-08-26 9:31 [PR PATCH] furnace: update to 0.6pre9 tranzystorek-io
2023-09-07 9:12 ` [PR PATCH] [Updated] " tranzystorek-io
@ 2023-09-08 9:02 ` tranzystorek-io
2023-09-10 11:56 ` [PR PATCH] [Updated] furnace: update to 0.6pre11 tranzystorek-io
2023-09-13 8:05 ` [PR PATCH] [Merged]: furnace: update to 0.6pre12 classabbyamp
3 siblings, 0 replies; 5+ messages in thread
From: tranzystorek-io @ 2023-09-08 9:02 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1260 bytes --]
There is an updated pull request by tranzystorek-io against master on the void-packages repository
https://github.com/tranzystorek-io/void-packages furnace
https://github.com/void-linux/void-packages/pull/45776
furnace: update to 0.6pre10
<!-- 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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
-->
A patch file from https://github.com/void-linux/void-packages/pull/45776.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-furnace-45776.patch --]
[-- Type: text/x-diff, Size: 1826 bytes --]
From 996ff5d09eb96ae9786f5e07c91ba71313c0b756 Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Sat, 26 Aug 2023 11:28:34 +0200
Subject: [PATCH] furnace: update to 0.6pre11
---
srcpkgs/furnace/template | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/srcpkgs/furnace/template b/srcpkgs/furnace/template
index 398a0c1d705a2..de4a1a771f831 100644
--- a/srcpkgs/furnace/template
+++ b/srcpkgs/furnace/template
@@ -1,20 +1,21 @@
# Template file for 'furnace'
pkgname=furnace
-version=0.6pre8
+version=0.6pre11
revision=1
_adpcm_commit="ef7a217154badc3b99978ac481b268c8aab67bd8"
build_wrksrc=${pkgname}-${version}
build_style=cmake
-configure_args="-DSYSTEM_FFTW=ON -DSYSTEM_FMT=ON -DSYSTEM_LIBSNDFILE=ON -DSYSTEM_RTMIDI=ON -DSYSTEM_SDL2=ON -DSYSTEM_ZLIB=ON"
+configure_args="-DSYSTEM_FFTW=ON -DSYSTEM_FMT=ON -DSYSTEM_LIBSNDFILE=ON -DSYSTEM_PORTAUDIO=ON -DSYSTEM_RTMIDI=ON
+ -DSYSTEM_SDL2=ON -DSYSTEM_ZLIB=ON"
hostmakedepends="pkg-config"
-makedepends="fftw-devel fmt-devel jack-devel libsndfile-devel rtmidi-devel zlib-devel SDL2-devel"
+makedepends="fftw-devel fmt-devel jack-devel libsndfile-devel portaudio-devel rtmidi-devel zlib-devel SDL2-devel"
short_desc="Multi-system chiptune tracker compatible with DefleMask modules"
maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
license="GPL-2.0-or-later"
homepage="https://github.com/tildearrow/furnace"
distfiles="https://github.com/tildearrow/furnace/archive/refs/tags/v${version}.tar.gz
https://github.com/superctr/adpcm/archive/${_adpcm_commit}.tar.gz"
-checksum="cf494928d3d51c05f6b24e86fcf7b6cac6cb237b2b9a09583029cd50e0a41c7b
+checksum="ace72e3b17860ff30c87f91a310059f25301811b18d6c92f307fd2f7db890f51
46da29342d2968ff222ba00e07c646e038b76af2e6c86de037c653059a056251"
post_extract() {
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PR PATCH] [Updated] furnace: update to 0.6pre11
2023-08-26 9:31 [PR PATCH] furnace: update to 0.6pre9 tranzystorek-io
2023-09-07 9:12 ` [PR PATCH] [Updated] " tranzystorek-io
2023-09-08 9:02 ` [PR PATCH] [Updated] furnace: update to 0.6pre10 tranzystorek-io
@ 2023-09-10 11:56 ` tranzystorek-io
2023-09-13 8:05 ` [PR PATCH] [Merged]: furnace: update to 0.6pre12 classabbyamp
3 siblings, 0 replies; 5+ messages in thread
From: tranzystorek-io @ 2023-09-10 11:56 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1260 bytes --]
There is an updated pull request by tranzystorek-io against master on the void-packages repository
https://github.com/tranzystorek-io/void-packages furnace
https://github.com/void-linux/void-packages/pull/45776
furnace: update to 0.6pre11
<!-- 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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
-->
A patch file from https://github.com/void-linux/void-packages/pull/45776.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-furnace-45776.patch --]
[-- Type: text/x-diff, Size: 1826 bytes --]
From 648b4497d329b77241cff13f82f9ff9e3110b856 Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Sat, 26 Aug 2023 11:28:34 +0200
Subject: [PATCH] furnace: update to 0.6pre12
---
srcpkgs/furnace/template | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/srcpkgs/furnace/template b/srcpkgs/furnace/template
index 398a0c1d705a2..a0a1ff1c18051 100644
--- a/srcpkgs/furnace/template
+++ b/srcpkgs/furnace/template
@@ -1,20 +1,21 @@
# Template file for 'furnace'
pkgname=furnace
-version=0.6pre8
+version=0.6pre12
revision=1
_adpcm_commit="ef7a217154badc3b99978ac481b268c8aab67bd8"
build_wrksrc=${pkgname}-${version}
build_style=cmake
-configure_args="-DSYSTEM_FFTW=ON -DSYSTEM_FMT=ON -DSYSTEM_LIBSNDFILE=ON -DSYSTEM_RTMIDI=ON -DSYSTEM_SDL2=ON -DSYSTEM_ZLIB=ON"
+configure_args="-DSYSTEM_FFTW=ON -DSYSTEM_FMT=ON -DSYSTEM_LIBSNDFILE=ON -DSYSTEM_PORTAUDIO=ON -DSYSTEM_RTMIDI=ON
+ -DSYSTEM_SDL2=ON -DSYSTEM_ZLIB=ON"
hostmakedepends="pkg-config"
-makedepends="fftw-devel fmt-devel jack-devel libsndfile-devel rtmidi-devel zlib-devel SDL2-devel"
+makedepends="fftw-devel fmt-devel jack-devel libsndfile-devel portaudio-devel rtmidi-devel zlib-devel SDL2-devel"
short_desc="Multi-system chiptune tracker compatible with DefleMask modules"
maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
license="GPL-2.0-or-later"
homepage="https://github.com/tildearrow/furnace"
distfiles="https://github.com/tildearrow/furnace/archive/refs/tags/v${version}.tar.gz
https://github.com/superctr/adpcm/archive/${_adpcm_commit}.tar.gz"
-checksum="cf494928d3d51c05f6b24e86fcf7b6cac6cb237b2b9a09583029cd50e0a41c7b
+checksum="305de4f313a063662f00420390a21f04ee397b14d557dfd3f0a3feb173bc62ec
46da29342d2968ff222ba00e07c646e038b76af2e6c86de037c653059a056251"
post_extract() {
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PR PATCH] [Merged]: furnace: update to 0.6pre12
2023-08-26 9:31 [PR PATCH] furnace: update to 0.6pre9 tranzystorek-io
` (2 preceding siblings ...)
2023-09-10 11:56 ` [PR PATCH] [Updated] furnace: update to 0.6pre11 tranzystorek-io
@ 2023-09-13 8:05 ` classabbyamp
3 siblings, 0 replies; 5+ messages in thread
From: classabbyamp @ 2023-09-13 8:05 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1088 bytes --]
There's a merged pull request on the void-packages repository
furnace: update to 0.6pre12
https://github.com/void-linux/void-packages/pull/45776
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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
-->
^ permalink raw reply [flat|nested] 5+ messages in thread