Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] ardour: update to 6.6.
@ 2021-02-28 14:45 tibequadorian
  2021-02-28 20:42 ` [PR REVIEW] " ericonr
                   ` (41 more replies)
  0 siblings, 42 replies; 43+ messages in thread
From: tibequadorian @ 2021-02-28 14:45 UTC (permalink / raw)
  To: ml

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

There is a new 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: 3396 bytes --]

From be5c7189c15f34ddfc0f0661df731e5d1d8579f4 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                       | 20 ++++++++++---------
 2 files changed, 11 insertions(+), 22 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..47a2ef8c646 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,14 +28,19 @@ case "$XBPS_TARGET_MACHINE" in
 	*)        broken="Don't know build target" ;;
 esac
 
+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" \
-		644 usr/share/applications
+	 644 usr/share/applications
 	for size in 16 22 32 48 256 512; do
 		vinstall gtk2_ardour/resources/Ardour-icon_${size}px.png 644 \
-			usr/share/icons/hicolor/${size}x${size}/apps \
-			ardour${version%%.*}.png
+		 usr/share/icons/hicolor/${size}x${size}/apps \
+		 ardour${version%%.*}.png
 	done
 	vman ardour.1
 }

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

end of thread, other threads:[~2021-03-09  6:36 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-28 14:45 [PR PATCH] ardour: update to 6.6 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 ` [PR PATCH] [Updated] " tibequadorian
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

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