From 42a6bf63198035a1d4c9363b8c8362b575e3f005 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Tue, 12 Nov 2019 01:37:52 +0000 Subject: [PATCH] removed community/suil --- community/suil/0001-remove-cocoa-check.patch | 28 ----------- community/suil/PKGBUILD | 50 -------------------- 2 files changed, 78 deletions(-) delete mode 100644 community/suil/0001-remove-cocoa-check.patch delete mode 100644 community/suil/PKGBUILD diff --git a/community/suil/0001-remove-cocoa-check.patch b/community/suil/0001-remove-cocoa-check.patch deleted file mode 100644 index 254c52dac..000000000 --- a/community/suil/0001-remove-cocoa-check.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 103b49e10a11cb9ac276639a5c614f2a37aea65d Mon Sep 17 00:00:00 2001 -From: Kevin Mihelich -Date: Sat, 22 Dec 2018 15:09:54 -0700 -Subject: [PATCH] remove cocoa check - -Mis-detects on ARM for whatever reason. ---- - wscript | 4 ---- - 1 file changed, 4 deletions(-) - -diff --git a/wscript b/wscript -index 9ce3e1d..c553717 100644 ---- a/wscript -+++ b/wscript -@@ -88,10 +88,6 @@ def configure(conf): - if not conf.options.no_qt5: - autowaf.check_pkg(conf, 'Qt5Widgets', uselib_store='QT5', - atleast_version='5.1.0', mandatory=False) -- if conf.check_cxx(header_name = 'QMacCocoaViewContainer', -- uselib = 'QT5_COCOA', -- mandatory = False): -- autowaf.define(conf, 'SUIL_WITH_COCOA_IN_QT5', 1) - - conf.check_cc(define_name = 'HAVE_LIBDL', - lib = 'dl', --- -2.21.0 - diff --git a/community/suil/PKGBUILD b/community/suil/PKGBUILD deleted file mode 100644 index 2642bee1a..000000000 --- a/community/suil/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# Maintainer: David Runge -# Contributor: Ray Rashif -# Contributor: speps - -# ALARM: Kevin Mihelich -# - patch to skip qt5 cocoa check, broken on ARM - -pkgname=suil -pkgver=0.10.4 -pkgrel=1 -pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs" -arch=('x86_64') -url="https://drobilla.net/software/suil/" -license=('custom:ISC') -makedepends=('gtk2' 'gtk3' 'lv2' 'python' 'qt5-base') -optdepends=('qt5-base: Qt5 UI wrapping support' - 'gtk2: GTK+ 2.x UI wrapping support' - 'gtk3: GTK+ 3.x UI wrapping support') -source=("https://download.drobilla.net/${pkgname}-${pkgver}.tar.bz2"{,.sig} - '0001-remove-cocoa-check.patch') -sha512sums=('1f5627541b86cbd8417c0b35b04b73340a3b2dbdd7b04314fdfa82baa8a7b0813c9c9914f805fcf233bcc8011b37efe99a06b6c47a3dda9606d6493edcba434f' - 'SKIP' - '49fc53bfccb6bdd297ffb9355c0e72eb2e8fe1f2785614ca072aa1fcbc05a1aba6f62830551911826441cd0fcfbe20c8135a0f3ada9d589b32b43394962ec8c3') -validpgpkeys=('907D226E7E13FA337F014A083672782A9BF368F3') # David Robillard - -prepare() { - cd "${pkgname}-${pkgver}" - # remove local call to ldconfig - sed -i "/ldconfig/d" wscript - patch -p1 -i ../0001-remove-cocoa-check.patch -} - -build() { - cd "${pkgname}-${pkgver}" - python waf configure --prefix=/usr - python waf build -} - -package() { - cd "${pkgname}-${pkgver}" - python waf install --destdir="${pkgdir}" - # license - install -vDm 644 COPYING \ - "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - # docs - install -t "$pkgdir/usr/share/doc/${pkgname}" \ - -vDm 644 {AUTHORS,NEWS,PACKAGING,README.md} -} - -# vim:set ts=2 sw=2 et: