From 57fe09f8d38e0611f2c5ad366a040f48378631f6 Mon Sep 17 00:00:00 2001 From: nils Date: Sun, 12 Jan 2025 15:15:24 +0100 Subject: [PATCH] nvm --- gui-apps/ags/Manifest | 2 - gui-apps/ags/ags-1.8.2-r3.ebuild | 57 ------------------- .../ags/files/ags-1.8.2-fix-tsc-call.patch | 34 ----------- gui-apps/ags/metadata.xml | 50 ---------------- gui-apps/ags/readme.txt | 1 - 5 files changed, 144 deletions(-) delete mode 100644 gui-apps/ags/Manifest delete mode 100644 gui-apps/ags/ags-1.8.2-r3.ebuild delete mode 100644 gui-apps/ags/files/ags-1.8.2-fix-tsc-call.patch delete mode 100644 gui-apps/ags/metadata.xml delete mode 100644 gui-apps/ags/readme.txt diff --git a/gui-apps/ags/Manifest b/gui-apps/ags/Manifest deleted file mode 100644 index 1bffc2c..0000000 --- a/gui-apps/ags/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST ags-1.8.2-node_modules.tar.gz 18888810 BLAKE2B bf118c47e08c5075502c01cbdcb68189c4964ec32413a298fa9abaaf5634ccf3cc94251de5dc38c1913c66ba3346cd60f4d0a1179dfec571b6ceb269f0a6acc2 SHA256 ac31c171eb218780a6146527a5a9a5081ac06833c53c9d44f8ed0dc01e0e6f2c SHA512 814acad890be748d04f7e28ea6c7a8321edac907c2729c7f4966a8bb24bccad69684d570bc4b9f6148361f8ce5d1ef8306677ef781598467c6a06b765ac974ca -DIST ags-1.8.2.tar.gz 435232 BLAKE2B 9b7c7cbe652df76282d9dc11dd49d09ab1fb962e45fec3f3a849b161abd3e8f287f14a72cb7ac85df7f65fea748e4b1546568684eb830ce0382f2f4977d57564 SHA256 ea0a706bef99578b30d40a2d0474b7a251364bfcf3a18cdc9b1adbc04af54773 SHA512 4ed3f4b4da9c8bbd045ab3cd455b24768bc8807fa9a215a5b788b6319edd72c76cb9fe6d3e3cf82068e43bf3463d5025cfb86eba78b93bc481d95e2e4ed4552d diff --git a/gui-apps/ags/ags-1.8.2-r3.ebuild b/gui-apps/ags/ags-1.8.2-r3.ebuild deleted file mode 100644 index d8af8d8..0000000 --- a/gui-apps/ags/ags-1.8.2-r3.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit meson - -DESCRIPTION="A customizable and extensible shell" -HOMEPAGE="https://aylur.github.io/ags-docs/" - -SRC_URI=" - https://github.com/Aylur/ags/releases/download/v${PV}/ags-v${PV}.tar.gz -> ${P}.tar.gz - https://github.com/Aylur/ags/releases/download/v${PV}/node_modules-v${PV}.tar.gz -> ${P}-node_modules.tar.gz -" - -S="${WORKDIR}/${PN}" -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64" - -DEPEND=" - dev-libs/gjs - dev-libs/glib:2 - dev-libs/libffi:= - dev-libs/libpcre2:= - gui-libs/gtk-layer-shell[introspection] - media-libs/flac:= - media-libs/libogg - media-libs/libpulse - media-libs/libsndfile - media-libs/libvorbis - media-libs/opus - media-sound/lame - media-sound/mpg123-base - net-libs/libasyncns - sys-apps/dbus - sys-libs/pam - sys-libs/zlib - x11-libs/gtk+:3 - x11-libs/libXau - x11-libs/libxcb:= - x11-libs/libXdmcp -" - -BDEPEND=" - dev-lang/typescript - dev-libs/gobject-introspection -" - -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/${P}-fix-tsc-call.patch" ) - -src_prepare() { - default - ln -sr "${WORKDIR}/node_modules" "${S}/node_modules" || die -} diff --git a/gui-apps/ags/files/ags-1.8.2-fix-tsc-call.patch b/gui-apps/ags/files/ags-1.8.2-fix-tsc-call.patch deleted file mode 100644 index c546fdb..0000000 --- a/gui-apps/ags/files/ags-1.8.2-fix-tsc-call.patch +++ /dev/null @@ -1,34 +0,0 @@ -From a756f5266a97e4cdf0550283ec50210de58fbde3 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Matt=C3=A9o=20Rossillol=E2=80=91=E2=80=91Laruelle?= - -Date: Mon, 17 Jun 2024 13:39:13 +0200 -Subject: [PATCH] fix `tsc` call -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -In order to allow the meson build directory to be in another repertory (the -default behavior of the `meson` eclass), `--project` has to be added to the -`tsc` call. - -Signed-off-by: Mattéo Rossillol‑‑Laruelle ---- - src/meson.build | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/meson.build b/src/meson.build -index e25ab8c..a8bbfb3 100644 ---- a/src/meson.build -+++ b/src/meson.build -@@ -6,7 +6,7 @@ typescript = custom_target( - input: files( 'main.ts' ), - build_by_default: true, - build_always_stale: true, -- command: [ tsc, '--outDir', tsc_out ], -+ command: [ tsc, '--outDir', tsc_out, '--project', meson.source_root() ], - output: ['tsc-output'], - ) - --- -2.44.2 - diff --git a/gui-apps/ags/metadata.xml b/gui-apps/ags/metadata.xml deleted file mode 100644 index 0473cdf..0000000 --- a/gui-apps/ags/metadata.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - beatussum@protonmail.com - Mattéo Rossillol‑‑Laruelle - - - This is a library built for dev-libs/gjs to allow - defining x11-libs/gtk+ widgets in a declarative way. - It also provides services and other utilities to interact with - the system so that these widgets can have functionality. - dev-libs/gjs is a JavaScript runtime built on - Firefox's SpiderMonkey JavaScript engine and the GNOME platform - libraries, the same runtime gui-libs/gtk-layer-shell - runs on. - - It was heavily inspired by EWW. - - Currently, only dev-libs/wayland is supported, but - it also works on X11, see #19. - - - Il s'agit d'une bibliothèque construite pour - dev-libs/gjs qui permet de définir des widgets - x11-libs/gtk+ de façon déclarative. Il fournit - également des services et d'autres utilitaires pour interagir - avec le système afin que ces widgets puissent avoir des - fonctionnalités. dev-libs/gjs est un moteur - d'exécution JavaScript construit sur le moteur JavaScript - SpiderMonkey de Firefox et les bibliothèques de la plateforme - GNOME. Il s'exécute en même temps que - gui-libs/gtk-layer-shell. - - Elle a été fortement inspirée par EWW. - - Actuellement, seul dev-libs/wayland est supporté, - mais elle fonctionne également sur X11, voir #19. - - - - Aylur - demstof@gmail.com - - https://raw.githubusercontent.com/Aylur/ags/main/CHANGELOG.md - https://aylur.github.io/ags-docs/ - https://github.com/Aylur/ags/issues/ - Aylur/ags - - diff --git a/gui-apps/ags/readme.txt b/gui-apps/ags/readme.txt deleted file mode 100644 index 48de5ca..0000000 --- a/gui-apps/ags/readme.txt +++ /dev/null @@ -1 +0,0 @@ -These templates are from the Hyprland-overlay: https://github.com/beatussum/hyprland-overlay/tree/main