diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-11-20 08:48:52 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-11-20 09:02:59 +0100 |
commit | 1c270fd290a03c47c699429c7da35d406d5c316f (patch) | |
tree | 644471703369047e0e11f83c86767b6753ac1410 /main/jack | |
parent | 1a0e902ede2d1b8c6d2a5ce997cb5ea671e1bc60 (diff) | |
download | aports-1c270fd290a03c47c699429c7da35d406d5c316f.tar.bz2 aports-1c270fd290a03c47c699429c7da35d406d5c316f.tar.xz |
main/jack: upgrade to 1.9.14
Diffstat (limited to 'main/jack')
-rw-r--r-- | main/jack/APKBUILD | 12 | ||||
-rw-r--r-- | main/jack/python3.patch | 111 |
2 files changed, 4 insertions, 119 deletions
diff --git a/main/jack/APKBUILD b/main/jack/APKBUILD index 84e687d611..320325cba4 100644 --- a/main/jack/APKBUILD +++ b/main/jack/APKBUILD @@ -1,8 +1,8 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=jack _realname=jack2 -pkgver=1.9.13 -pkgrel=1 +pkgver=1.9.14 +pkgrel=0 pkgdesc="The Jack Audio Connection Kit" url="http://www.jackaudio.org" arch="all" @@ -12,7 +12,6 @@ makedepends="$depends_dev alsa-lib-dev dbus-dev expat-dev libsamplerate-dev subpackages="$pkgname-dev $pkgname-doc $pkgname-dbus $pkgname-example-clients:_clients" source="$pkgname-$pkgver.tar.gz::https://github.com/jackaudio/jack2/archive/v$pkgver.tar.gz fix-execinfo.patch - python3.patch " builddir="$srcdir"/$_realname-$pkgver @@ -22,7 +21,6 @@ prepare() { } build() { - cd "$builddir" ./waf configure \ -j1 \ --prefix=/usr \ @@ -36,7 +34,6 @@ build() { } package() { - cd "$builddir" ./waf --destdir="$pkgdir" install } @@ -53,6 +50,5 @@ _clients() { mv "$pkgdir"/usr/bin/*_* "$subpkgdir"/usr/bin/ } -sha512sums="8c578df723f2c0c91e854abf73a35249784c833264c42c340f0e56744bf931bda75ebd941532c80cecc67e2d469becc27498e546b73cc4581379b8ceee1f49c1 jack-1.9.13.tar.gz -b5abec7e67485d1c13f399b5961539177dd35d21c5dd95e0aa767adb0f5b1e588e9ca2f9b29cc4d66fc039311ff7eacc4cf21f6700ef0a2c8de99b63cb00f84d fix-execinfo.patch -4f1b85cbdd9cd67b108321c846bf42b5500300fc2ff167be92f1af6973f2d97f7e4914d062137a2f8ac064ac6041845b3746fb25701520d3dd90d5f3c470cb04 python3.patch" +sha512sums="ca9738fd5aadcb7e125f98a358437905959afebe0b792cab316fc31410e89ea3aefdb85154792a9d0a80fa988aa7eff379ff5c7ac6c4bfa1d57ad3d7de7b5fdd jack-1.9.14.tar.gz +b5abec7e67485d1c13f399b5961539177dd35d21c5dd95e0aa767adb0f5b1e588e9ca2f9b29cc4d66fc039311ff7eacc4cf21f6700ef0a2c8de99b63cb00f84d fix-execinfo.patch" diff --git a/main/jack/python3.patch b/main/jack/python3.patch deleted file mode 100644 index 32a76e3ae6..0000000000 --- a/main/jack/python3.patch +++ /dev/null @@ -1,111 +0,0 @@ -diff --git a/common/wscript b/common/wscript -index afc251a2..70503788 100644 ---- a/common/wscript -+++ b/common/wscript -@@ -1,4 +1,4 @@ --#! /usr/bin/env python -+#! /usr/bin/python3 - # encoding: utf-8 - - import re -diff --git a/compat/alloca/wscript b/compat/alloca/wscript -index 36798973..9e740f1c 100644 ---- a/compat/alloca/wscript -+++ b/compat/alloca/wscript -@@ -1,4 +1,4 @@ --#!/usr/bin/env python -+#!/usr/bin/python3 - # encoding: utf-8 - # - # Copyright (C) 2018 Karl Linden <karl.j.linden@gmail.com> -diff --git a/compat/wscript b/compat/wscript -index e3ec8d33..25eb2a3f 100644 ---- a/compat/wscript -+++ b/compat/wscript -@@ -1,4 +1,4 @@ --#!/usr/bin/env python -+#!/usr/bin/python3 - # encoding: utf-8 - # - # Copyright (C) 2018 Karl Linden <karl.j.linden@gmail.com> -diff --git a/dbus/wscript b/dbus/wscript -index 535d4121..fa40b4f1 100644 ---- a/dbus/wscript -+++ b/dbus/wscript -@@ -1,4 +1,4 @@ --#! /usr/bin/env python -+#! /usr/bin/python3 - # encoding: utf-8 - - import os.path -diff --git a/example-clients/jack_control b/example-clients/jack_control -index 61ac40c1..54277543 100755 ---- a/example-clients/jack_control -+++ b/example-clients/jack_control -@@ -1,4 +1,4 @@ --#!/usr/bin/env python -+#!/usr/bin/python3 - - from __future__ import print_function - name_base = 'org.jackaudio' -diff --git a/example-clients/wscript b/example-clients/wscript -index 6163d222..a8857aa7 100644 ---- a/example-clients/wscript -+++ b/example-clients/wscript -@@ -1,4 +1,4 @@ --#! /usr/bin/env python -+#! /usr/bin/python3 - # encoding: utf-8 - - example_programs = { -diff --git a/man/wscript b/man/wscript -index 9e4d3043..def57078 100644 ---- a/man/wscript -+++ b/man/wscript -@@ -1,4 +1,4 @@ --#! /usr/bin/env python -+#! /usr/bin/python3 - # encoding: utf-8 - - import re -diff --git a/systemd/wscript b/systemd/wscript -index fc8b8f15..d10bdf96 100644 ---- a/systemd/wscript -+++ b/systemd/wscript -@@ -1,4 +1,4 @@ --#! /usr/bin/env python -+#! /usr/bin/python3 - # encoding: utf-8 - - -diff --git a/tests/wscript b/tests/wscript -index 756fd3bb..96a63bc9 100644 ---- a/tests/wscript -+++ b/tests/wscript -@@ -1,4 +1,4 @@ --#! /usr/bin/env python -+#! /usr/bin/python3 - # encoding: utf-8 - - test_programs = { -diff --git a/waf b/waf -index a2efc852..845fba5e 100755 ---- a/waf -+++ b/waf -@@ -1,4 +1,4 @@ --#!/usr/bin/env python -+#!/usr/bin/python3 - # encoding: latin-1 - # Thomas Nagy, 2005-2018 - # -diff --git a/wscript b/wscript -index 5e8485e6..7e48f750 100644 ---- a/wscript -+++ b/wscript -@@ -1,4 +1,4 @@ --#! /usr/bin/env python -+#! /usr/bin/python3 - # encoding: utf-8 - from __future__ import print_function - - |