From c2e8610e7584b7859dc5423500f530008e86879d Mon Sep 17 00:00:00 2001 From: xiota Date: Tue, 5 Nov 2024 19:57:46 +0000 Subject: [PATCH] feat(tangram): drop, moved to extra --- tangram/.CI/config | 2 -- tangram/.CI/info | 2 -- tangram/.SRCINFO | 21 --------------------- tangram/PKGBUILD | 43 ------------------------------------------- 4 files changed, 68 deletions(-) delete mode 100644 tangram/.CI/config delete mode 100644 tangram/.CI/info delete mode 100644 tangram/.SRCINFO delete mode 100644 tangram/PKGBUILD diff --git a/tangram/.CI/config b/tangram/.CI/config deleted file mode 100644 index 8471e6a8a..000000000 --- a/tangram/.CI/config +++ /dev/null @@ -1,2 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_SOURCE=aur diff --git a/tangram/.CI/info b/tangram/.CI/info deleted file mode 100644 index db28a1838..000000000 --- a/tangram/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/979 -REQ_REASON=request diff --git a/tangram/.SRCINFO b/tangram/.SRCINFO deleted file mode 100644 index faaba8bc6..000000000 --- a/tangram/.SRCINFO +++ /dev/null @@ -1,21 +0,0 @@ -pkgbase = tangram - pkgdesc = Browser for your pinned tabs - pkgver = 3.1 - pkgrel = 1 - url = https://apps.gnome.org/Tangram - arch = any - license = GPL-3.0-or-later - checkdepends = appstream-glib - makedepends = git - makedepends = blueprint-compiler - makedepends = meson - depends = gjs - depends = libadwaita - depends = webkitgtk-6.0 - optdepends = gst-plugins-bad: May be necessary for some websites - source = git+https://github.com/sonnyp/Tangram.git#tag=v3.1 - source = git+https://github.com/sonnyp/troll.git - sha256sums = b4c98c5d9473a41890fa640cd779a62523fd450df9924b9d149604be45ef26f6 - sha256sums = SKIP - -pkgname = tangram diff --git a/tangram/PKGBUILD b/tangram/PKGBUILD deleted file mode 100644 index 360ca7acd..000000000 --- a/tangram/PKGBUILD +++ /dev/null @@ -1,43 +0,0 @@ -# Maintainer: Mark Wagie -# Contributor: Sonny Piers -pkgname=tangram -pkgver=3.1 -pkgrel=1 -pkgdesc="Browser for your pinned tabs" -arch=('any') -url="https://apps.gnome.org/Tangram" -license=('GPL-3.0-or-later') -depends=('gjs' 'libadwaita' 'webkitgtk-6.0') -makedepends=('git' 'blueprint-compiler' 'meson') -checkdepends=('appstream-glib') -optdepends=('gst-plugins-bad: May be necessary for some websites') -source=("git+https://github.com/sonnyp/Tangram.git#tag=v$pkgver" - 'git+https://github.com/sonnyp/troll.git') -sha256sums=('b4c98c5d9473a41890fa640cd779a62523fd450df9924b9d149604be45ef26f6' - 'SKIP') - -prepare() { - cd Tangram - git submodule init - git config submodule.src/troll.url "$srcdir/troll" - git -c protocol.file.allow=always submodule update - - # use system blueprint-compiler - sed -i 's|../blueprint-compiler/blueprint-compiler.py|/usr/bin/blueprint-compiler|g' src/meson.build -} - -build() { - arch-meson Tangram build - meson compile -C build -} - -check() { - meson test -C build --print-errorlogs || : -} - -package() { - meson install -C build --destdir "$pkgdir" - - # Conflicts with tangram-bin binary - # ln -s /usr/bin/re.sonny.Tangram "$pkgdir/usr/bin/$pkgname" -}