git » suil.git » commit 9226153

Upgrade to 0.10.18.

author David Runge
2022-10-25 08:49:48 UTC
committer David Runge
2022-10-25 08:49:48 UTC
parent 101b3ceca079c013ea32bfc4cc99d4539c404158

Upgrade to 0.10.18.

Remove now included patch.

PKGBUILD +8 -18
suil-0.10.16-fix_gtk_linking.patch +0 -57

diff --git a/PKGBUILD b/PKGBUILD
index 3d7422b..a90d087 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,24 +4,19 @@
 
 pkgbase=suil
 pkgname=(suil suil-docs)
-pkgver=0.10.16
-pkgrel=3
+pkgver=0.10.18
+pkgrel=1
 pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs"
 arch=(x86_64)
 url="https://drobilla.net/software/suil.html"
 license=(ISC)
 makedepends=(doxygen gtk2 gtk3 lv2 meson python-sphinx python-sphinx-lv2-theme qt5-base qt5-x11extras)
 options=(debug)
-source=(
-  https://download.drobilla.net/$pkgname-$pkgver.tar.xz{,.sig}
-  $pkgbase-0.10.16-fix_gtk_linking.patch
-)
-sha512sums=('9b1dac07b017934a93f70d514ec477785683e7ed5949b62a2c4ad139c1e84265399f54d3140dcf0e542d20a0919286aacb52103c91e2f6fc7ebd707db2d98ac4'
-            'SKIP'
-            '79fbfe748714c430026d499bf9e7f46cc686e52dcb325d9a9c04206ad0324f7100453a54f7b5ca9eb2562aa0f36215666077346775ef3db8dbe88c361dc2fedf')
-b2sums=('614217013b39215f4b6d9414451a55fbca42dd038c6bc961d3769660707bf2da45432c97628edef8dacb8630437bcb304d10616ced2fd9cf9a6a4d094f196f6c'
-        'SKIP'
-        'e9d70fc61783acaf40670ce37ab68c57e244dd570ca1e2b9949f301eb31ad0203530f7e5230bc9904d58cde54bd86413052cd0fe2a24f3f68b70004cebf04f34')
+source=(https://download.drobilla.net/$pkgname-$pkgver.tar.xz{,.sig})
+sha512sums=('2c4630ef37f13c0e344eadfc8fdcfe70538abdabad1ad0865c43f9f5947fdbc3bdf56bb90e7a58f20d3e641ab9b7a7a670799920aca04374d7c992c52b93f8f3'
+            'SKIP')
+b2sums=('739a25fa46227f0316a25efe0741f303698869f41322d525670589ad01f951bc52155a638f15b20ce715e14cb42a01fb022f60426c44abe05d988c679d27f604'
+        'SKIP')
 validpgpkeys=('907D226E7E13FA337F014A083672782A9BF368F3') # David Robillard <d@drobilla.net>
 
 _pick() {
@@ -34,11 +29,6 @@ _pick() {
   done
 }
 
-prepare() {
-  # fix issues with opening lv2 plugins multiple times: https://gitlab.com/lv2/suil/-/issues/7
-  patch -Np1 -d $pkgname-$pkgver -i ../$pkgbase-0.10.16-fix_gtk_linking.patch
-}
-
 build() {
   arch-meson $pkgname-$pkgver build -D cocoa=disabled
   meson compile -C build
@@ -66,7 +56,7 @@ package_suil() {
     _pick $pkgname-docs usr/share/doc
   )
   install -vDm 644 $pkgname-$pkgver/COPYING -t "$pkgdir/usr/share/licenses/$pkgname/"
-  install -vDm 644 $pkgname-$pkgver/{AUTHORS,NEWS,PACKAGING,README.md} -t "$pkgdir/usr/share/doc/$pkgname/"
+  install -vDm 644 $pkgname-$pkgver/{AUTHORS,NEWS,README.md} -t "$pkgdir/usr/share/doc/$pkgname/"
 }
 
 package_suil-docs() {
diff --git a/suil-0.10.16-fix_gtk_linking.patch b/suil-0.10.16-fix_gtk_linking.patch
deleted file mode 100644
index 14dbfcd..0000000
--- a/suil-0.10.16-fix_gtk_linking.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-diff --git a/meson.build b/meson.build
-index b19e5e0..c72af31 100644
---- a/meson.build
-+++ b/meson.build
-@@ -43,6 +43,9 @@ subdir('meson/suppressions')
- suil_abs_module_dir = get_option('prefix') / suil_module_dir
- platform_defines = ['-DSUIL_MODULE_DIR="@0@"'.format(suil_abs_module_dir)]
- 
-+nodelete_c_link_args = cc.get_supported_link_arguments(['-Wl,-z,nodelete'])
-+nodelete_cpp_link_args = cpp.get_supported_link_arguments(['-Wl,-z,nodelete'])
-+
- ################
- # Dependencies #
- ################
-@@ -220,6 +223,7 @@ if gtk2_dep.found() and qt5_dep.found()
-     include_directories: include_dirs,
-     install: true,
-     install_dir: suil_module_dir,
-+    link_args: nodelete_cpp_link_args,
-   )
- endif
- 
-@@ -233,6 +237,7 @@ if gtk2_dep.found() and gtk2_x11_dep.found() and x11_dep.found()
-     include_directories: include_dirs,
-     install: true,
-     install_dir: suil_module_dir,
-+    link_args: nodelete_c_link_args,
-   )
- endif
- 
-@@ -246,6 +251,7 @@ if gtk3_dep.found() and gtk3_x11_dep.found() and x11_dep.found()
-     include_directories: include_dirs,
-     install: true,
-     install_dir: suil_module_dir,
-+    link_args: nodelete_c_link_args,
-   )
- endif
- 
-@@ -259,6 +265,7 @@ if gtk3_dep.found() and gtk3_x11_dep.found() and qt5_dep.found()
-     include_directories: include_dirs,
-     install: true,
-     install_dir: suil_module_dir,
-+    link_args: nodelete_cpp_link_args,
-   )
- endif
- 
-@@ -285,6 +292,7 @@ if gtk2_dep.found() and host_machine.system() == 'windows'
-     include_directories: include_dirs,
-     install: true,
-     install_dir: suil_module_dir,
-+    link_args: nodelete_cpp_link_args,
-   )
- endif
- 
--- 
-GitLab
-