Github messages for voidlinux
 help / color / mirror / Atom feed
From: tibequadorian <tibequadorian@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] ardour: update to 6.6.
Date: Mon, 01 Mar 2021 07:11:56 +0100	[thread overview]
Message-ID: <20210301061156.keOcCNOSLECGEVuTE3HrVvX6wI63q4V3T65v4yMaL58@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-29120@inbox.vuxu.org>

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

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

https://github.com/tibequadorian/void-packages ardour
https://github.com/void-linux/void-packages/pull/29120

ardour: update to 6.6.
adopt package
fetch source from github mirror because upstream deletes older source archives

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/29120.patch is attached

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

From e4a69664ece646bd4ff86fdeb0fa1c083749f058 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Sun, 28 Feb 2021 15:07:24 +0100
Subject: [PATCH] ardour: update to 6.6.

adopt package
fetch source from github mirror because upstream deletes older source archives
---
 .../patches/fix-musl-platform-detection.patch    | 13 -------------
 srcpkgs/ardour/template                          | 16 ++++++++++------
 2 files changed, 10 insertions(+), 19 deletions(-)
 delete mode 100644 srcpkgs/ardour/patches/fix-musl-platform-detection.patch

diff --git a/srcpkgs/ardour/patches/fix-musl-platform-detection.patch b/srcpkgs/ardour/patches/fix-musl-platform-detection.patch
deleted file mode 100644
index 8f2d29cc423..00000000000
--- a/srcpkgs/ardour/patches/fix-musl-platform-detection.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-On musl libc only __linux__ is defined
-
---- libs/vst3/pluginterfaces/base/fplatform.h
-+++ libs/vst3/pluginterfaces/base/fplatform.h
-@@ -86,7 +86,7 @@
- //-----------------------------------------------------------------------------
- // LINUX
- //-----------------------------------------------------------------------------
--#elif __gnu_linux__
-+#elif __linux__
- 	#define SMTG_OS_LINUX	1
- 	#define SMTG_OS_MACOS	0
- 	#define SMTG_OS_WINDOWS	0
diff --git a/srcpkgs/ardour/template b/srcpkgs/ardour/template
index 7fb37a36769..a62f41544dc 100644
--- a/srcpkgs/ardour/template
+++ b/srcpkgs/ardour/template
@@ -1,12 +1,11 @@
 # Template file for 'ardour'
 pkgname=ardour
-version=6.5.0
+version=6.6
 revision=1
-wrksrc="Ardour-${version}"
 build_style=waf3
 configure_args="--cxx11 --no-phone-home --with-backends=jack,alsa,dummy
  --libjack=weak --optimize --docs --use-external-libs --freedesktop"
-hostmakedepends="python3 graphviz doxygen pkg-config clang perl
+hostmakedepends="git python3 graphviz doxygen pkg-config clang perl
  itstool gettext tar readline-devel"
 makedepends="boost-devel liblrdf-devel liblo-devel lilv-devel suil-devel
  taglib-devel aubio-devel rubberband-devel alsa-lib-devel libsndfile-devel
@@ -15,11 +14,9 @@ makedepends="boost-devel liblrdf-devel liblo-devel lilv-devel suil-devel
  libltc-devel glibmm-devel"
 depends="desktop-file-utils"
 short_desc="Professional-grade digital audio workstation"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="tibequadorian <tibequadorian@posteo.de>"
 license="GPL-2.0-or-later"
 homepage="http://ardour.org"
-distfiles="https://community.ardour.org/src/Ardour-${version}.tar.bz2"
-checksum=ac981ec7565fa8a171116bc2fbeb3198a01aad4b7d7c846f965e074a8a162bdb
 
 case "$XBPS_TARGET_MACHINE" in
 	x86_64*)  configure_args+=" --dist-target=x86_64" ;;
@@ -31,6 +28,13 @@ case "$XBPS_TARGET_MACHINE" in
 	*)        broken="Don't know build target" ;;
 esac
 
+# Upstream deletes older release tarballs from their site and
+# GitHub tarballs are empty: https://tracker.ardour.org/view.php?id=7328
+do_fetch() {
+	git clone --branch ${version} --depth=1 \
+		git://github.com/Ardour/ardour ${pkgname}-${version}
+}
+
 post_install() {
 	vinstall build/gtk2_ardour/ardour.xml 644 usr/share/mime/packages
 	vinstall "build/gtk2_ardour/ardour${version%%.*}.desktop" \

  parent reply	other threads:[~2021-03-01  6:12 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-28 14:45 [PR PATCH] " tibequadorian
2021-02-28 20:42 ` [PR REVIEW] " ericonr
2021-02-28 20:42 ` ericonr
2021-02-28 22:09 ` prez
2021-02-28 22:10 ` prez
2021-03-01  5:48 ` [PR REVIEW] " tibequadorian
2021-03-01  5:49 ` tibequadorian
2021-03-01  5:53 ` [PR PATCH] [Updated] " tibequadorian
2021-03-01  6:07 ` tibequadorian
2021-03-01  6:11 ` tibequadorian [this message]
2021-03-01 13:08 ` prez
2021-03-01 13:09 ` prez
2021-03-01 13:11 ` tibequadorian
2021-03-01 13:11 ` tibequadorian
2021-03-01 13:12 ` tibequadorian
2021-03-01 13:14 ` prez
2021-03-01 14:33 ` tibequadorian
2021-03-01 14:33 ` [PR PATCH] [Closed]: " tibequadorian
2021-03-01 14:33 ` tibequadorian
2021-03-01 15:51 ` [PR PATCH] [Updated] " tibequadorian
2021-03-01 15:52 ` tibequadorian
2021-03-01 16:00 ` tibequadorian
2021-03-01 16:01 ` [PR PATCH] [Updated] " tibequadorian
2021-03-08  4:12 ` [PR REVIEW] " ericonr
2021-03-08  9:01 ` tibequadorian
2021-03-08  9:04 ` tibequadorian
2021-03-08  9:05 ` tibequadorian
2021-03-08  9:09 ` tibequadorian
2021-03-08  9:17 ` tibequadorian
2021-03-08  9:44 ` [PR PATCH] [Updated] " tibequadorian
2021-03-08  9:47 ` tibequadorian
2021-03-08  9:54 ` tibequadorian
2021-03-08  9:55 ` [PR REVIEW] " tibequadorian
2021-03-08  9:57 ` [PR PATCH] [Updated] " tibequadorian
2021-03-08 10:01 ` tibequadorian
2021-03-08 10:04 ` [PR REVIEW] " tibequadorian
2021-03-08 10:08 ` tibequadorian
2021-03-08 10:40 ` tibequadorian
2021-03-08 15:38 ` ericonr
2021-03-08 15:40 ` [PR PATCH] [Updated] " tibequadorian
2021-03-08 15:41 ` tibequadorian
2021-03-08 15:56 ` [PR REVIEW] " tibequadorian
2021-03-09  6:36 ` [PR PATCH] [Merged]: " ericonr

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=20210301061156.keOcCNOSLECGEVuTE3HrVvX6wI63q4V3T65v4yMaL58@z \
    --to=tibequadorian@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).