Github messages for voidlinux
 help / color / mirror / Atom feed
From: rantlivelintkale <rantlivelintkale@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] ardour: update to 7.0.
Date: Tue, 01 Nov 2022 19:10:52 +0100	[thread overview]
Message-ID: <20221101181052.H1QzAryoFPDIOPD79_T6q6WzSr18QWOp7EW5mF_3vsY@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-40054@inbox.vuxu.org>

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

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

https://github.com/rantlivelintkale/void-packages update-ardour
https://github.com/void-linux/void-packages/pull/40054

ardour: update to 7.0.
#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl

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

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

From 959e48c6599bd3696e4188d92da02caa6b512ee4 Mon Sep 17 00:00:00 2001
From: Veikka Valtteri Kallinen <valtteri@kallinen.xyz>
Date: Wed, 19 Oct 2022 16:57:16 +0300
Subject: [PATCH] ardour: update to 7.0.

---
 .../patches/7.0-use-bundled-qm-dsp.patch      | 22 ++++++++
 .../ardour/patches/use-bundled-qm-dsp.patch   | 50 -------------------
 srcpkgs/ardour/template                       | 11 ++--
 3 files changed, 30 insertions(+), 53 deletions(-)
 create mode 100644 srcpkgs/ardour/patches/7.0-use-bundled-qm-dsp.patch
 delete mode 100644 srcpkgs/ardour/patches/use-bundled-qm-dsp.patch

diff --git a/srcpkgs/ardour/patches/7.0-use-bundled-qm-dsp.patch b/srcpkgs/ardour/patches/7.0-use-bundled-qm-dsp.patch
new file mode 100644
index 000000000000..0a217840d767
--- /dev/null
+++ b/srcpkgs/ardour/patches/7.0-use-bundled-qm-dsp.patch
@@ -0,0 +1,22 @@
+diff --git i/libs/qm-dsp/wscript w/libs/qm-dsp/wscript
+index a59801bf36..8432c89f0c 100644
+--- i/libs/qm-dsp/wscript
++++ w/libs/qm-dsp/wscript
+@@ -23,6 +23,7 @@ def options(opt):
+     autowaf.set_options(opt)
+ 
+ def configure(conf):
++    return
+     if conf.is_defined('USE_EXTERNAL_LIBS'):
+         conf.check_cxx(header_name="base/Pitch.h", mandatory=True, msg="Checking for qm-dsp headers")
+         conf.check_cxx(lib="qm-dsp", uselib_store="QMDSP", mandatory=True)
+@@ -51,9 +52,6 @@ def configure(conf):
+                            )
+ 
+ def build(bld):
+-    if bld.is_defined('USE_EXTERNAL_LIBS'):
+-        return
+-
+     # Host Library
+     obj = bld(features = 'c cxx cxxstlib')
+     obj.source = '''
diff --git a/srcpkgs/ardour/patches/use-bundled-qm-dsp.patch b/srcpkgs/ardour/patches/use-bundled-qm-dsp.patch
deleted file mode 100644
index 07e6c74963c1..000000000000
--- a/srcpkgs/ardour/patches/use-bundled-qm-dsp.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From 2b5e890480691ce5a6c9f05b55e83a3b9ed8a8b9 Mon Sep 17 00:00:00 2001
-From: q66 <daniel@octaforge.org>
-Date: Mon, 9 Mar 2020 16:33:43 +0100
-Subject: [PATCH] use bundled qm-dsp
-
----
- libs/qm-dsp/wscript | 11 ++---------
- wscript             |  2 --
- 2 files changed, 2 insertions(+), 11 deletions(-)
-
-diff --git libs/qm-dsp/wscript libs/qm-dsp/wscript
-index 92dc9502b1..dbbff16722 100644
---- a/libs/qm-dsp/wscript
-+++ b/libs/qm-dsp/wscript
-@@ -23,17 +23,10 @@ def options(opt):
-     autowaf.set_options(opt)
- 
- def configure(conf):
--    if conf.is_defined('USE_EXTERNAL_LIBS'):
--        conf.check_cxx(header_name="base/Pitch.h", mandatory=True)
--        conf.check_cxx(lib="qm-dsp", uselib_store="QMDSP", mandatory=True)
--    else:
--        conf.load('compiler_cxx')
--        autowaf.configure(conf)
-+    conf.load('compiler_cxx')
-+    autowaf.configure(conf)
- 
- def build(bld):
--    if bld.is_defined('USE_EXTERNAL_LIBS'):
--        return
--
-     # Host Library
-     obj = bld(features = 'c cxx cxxstlib')
-     obj.source = '''
-diff --git wscript wscript
-index 4b5acb0ad7..c0358af37e 100644
---- a/wscript
-+++ b/wscript
-@@ -991,8 +991,6 @@ def configure(conf):
- 
-     if Options.options.use_external_libs:
-         conf.define('USE_EXTERNAL_LIBS', 1)
--        conf.env.append_value(
--            'CXXFLAGS', '-I' + Options.options.qm_dsp_include)
- 
-     if Options.options.boost_include != '':
-         conf.env.append_value('CXXFLAGS', '-I' + Options.options.boost_include)
--- 
-2.25.1
-
diff --git a/srcpkgs/ardour/template b/srcpkgs/ardour/template
index 271e43f046ac..edd3c16fd464 100644
--- a/srcpkgs/ardour/template
+++ b/srcpkgs/ardour/template
@@ -1,7 +1,7 @@
 # Template file for 'ardour'
 pkgname=ardour
-version=6.9
-revision=2
+version=7.0
+revision=1
 build_style=waf3
 configure_args="--cxx11 --no-phone-home --with-backends=jack,alsa,dummy
  --configdir=/etc
@@ -21,7 +21,12 @@ homepage="http://ardour.org"
 
 CXXFLAGS="-fpermissive"
 PATH="/usr/libexec/chroot-git:$PATH"
-conf_files="/etc/ardour6/*"
+conf_files="/etc/ardour7/*"
+
+if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
+	makedepends+=" libatomic-devel"
+	LDFLAGS+=" -latomic"
+fi
 
 case "$XBPS_TARGET_MACHINE" in
 	x86_64*)  configure_args+=" --dist-target=x86_64" ;;

  parent reply	other threads:[~2022-11-01 18:10 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-20  8:15 [PR PATCH] " rantlivelintkale
2022-10-23  1:21 ` classabbyamp
2022-10-24  8:17 ` rantlivelintkale
2022-10-31  9:32 ` rantlivelintkale
2022-10-31 15:26 ` classabbyamp
2022-11-01 18:10 ` rantlivelintkale [this message]
2022-11-01 18:13 ` rantlivelintkale
2022-11-01 20:24 ` [PR PATCH] [Merged]: " classabbyamp

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221101181052.H1QzAryoFPDIOPD79_T6q6WzSr18QWOp7EW5mF_3vsY@z \
    --to=rantlivelintkale@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).