From 456e87ba839ed086ff15fbf51aeed70d734156ae Mon Sep 17 00:00:00 2001 From: Mattéo Rossillol‑‑Laruelle Date: Mon, 5 Aug 2024 20:48:28 +0200 Subject: gui-libs/ags: new package, add 1.8.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattéo Rossillol‑‑Laruelle --- gui-libs/ags/Manifest | 2 + gui-libs/ags/ags-1.8.2.ebuild | 60 +++++++++++++++++++++++++ gui-libs/ags/files/ags-1.8.2-fix-tsc-call.patch | 34 ++++++++++++++ gui-libs/ags/metadata.xml | 50 +++++++++++++++++++++ 4 files changed, 146 insertions(+) create mode 100644 gui-libs/ags/Manifest create mode 100644 gui-libs/ags/ags-1.8.2.ebuild create mode 100644 gui-libs/ags/files/ags-1.8.2-fix-tsc-call.patch create mode 100644 gui-libs/ags/metadata.xml (limited to 'gui-libs') diff --git a/gui-libs/ags/Manifest b/gui-libs/ags/Manifest new file mode 100644 index 000000000..9b769bb86 --- /dev/null +++ b/gui-libs/ags/Manifest @@ -0,0 +1,2 @@ +DIST ags-1.8.2-node_modules.tar.gz 18888810 BLAKE2B bf118c47e08c5075502c01cbdcb68189c4964ec32413a298fa9abaaf5634ccf3cc94251de5dc38c1913c66ba3346cd60f4d0a1179dfec571b6ceb269f0a6acc2 SHA512 814acad890be748d04f7e28ea6c7a8321edac907c2729c7f4966a8bb24bccad69684d570bc4b9f6148361f8ce5d1ef8306677ef781598467c6a06b765ac974ca +DIST ags-1.8.2.tar.gz 435232 BLAKE2B 9b7c7cbe652df76282d9dc11dd49d09ab1fb962e45fec3f3a849b161abd3e8f287f14a72cb7ac85df7f65fea748e4b1546568684eb830ce0382f2f4977d57564 SHA512 4ed3f4b4da9c8bbd045ab3cd455b24768bc8807fa9a215a5b788b6319edd72c76cb9fe6d3e3cf82068e43bf3463d5025cfb86eba78b93bc481d95e2e4ed4552d diff --git a/gui-libs/ags/ags-1.8.2.ebuild b/gui-libs/ags/ags-1.8.2.ebuild new file mode 100644 index 000000000..3f3a868b9 --- /dev/null +++ b/gui-libs/ags/ags-1.8.2.ebuild @@ -0,0 +1,60 @@ +# 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" +RESTRICT="binchecks strip test" + +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 + virtual/libc + 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-libs/ags/files/ags-1.8.2-fix-tsc-call.patch b/gui-libs/ags/files/ags-1.8.2-fix-tsc-call.patch new file mode 100644 index 000000000..c546fdbbf --- /dev/null +++ b/gui-libs/ags/files/ags-1.8.2-fix-tsc-call.patch @@ -0,0 +1,34 @@ +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-libs/ags/metadata.xml b/gui-libs/ags/metadata.xml new file mode 100644 index 000000000..76cd8c0dc --- /dev/null +++ b/gui-libs/ags/metadata.xml @@ -0,0 +1,50 @@ + + + + + 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://github.com/Aylur/ags/blob/main/CHANGELOG.md + https://aylur.github.io/ags-docs/ + https://github.com/Aylur/ags/issues/ + Aylur/ags + + -- cgit v1.2.3-65-gdbad