From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8C00215800A for ; Wed, 23 Aug 2023 17:33:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3E582BC013; Wed, 23 Aug 2023 17:33:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BEBE12BC013 for ; Wed, 23 Aug 2023 17:33:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EB74C3412C8 for ; Wed, 23 Aug 2023 17:33:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5CB1F1074 for ; Wed, 23 Aug 2023 17:33:02 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1692640573.e1cee52645fcbafd445af60bb0481871591bbfb8.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-sound/g4music/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-sound/g4music/Manifest media-sound/g4music/g4music-3.2.ebuild media-sound/g4music/metadata.xml X-VCS-Directories: media-sound/g4music/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: e1cee52645fcbafd445af60bb0481871591bbfb8 X-VCS-Branch: master Date: Wed, 23 Aug 2023 17:33:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: da9bff72-2051-4689-a0c8-2cf45de4047b X-Archives-Hash: f3cc0a90c4c828aea2b68f4724329189 commit: e1cee52645fcbafd445af60bb0481871591bbfb8 Author: Konstantin Tutsch konstantintutsch de> AuthorDate: Mon Aug 21 17:53:42 2023 +0000 Commit: David Roman gmail com> CommitDate: Mon Aug 21 17:56:13 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e1cee526 media-sound/g4music: new package, add 3.2 Signed-off-by: Konstantin Tutsch konstantintutsch.de> media-sound/g4music/Manifest | 1 + media-sound/g4music/g4music-3.2.ebuild | 39 ++++++++++++++++++++++++++++++++++ media-sound/g4music/metadata.xml | 11 ++++++++++ 3 files changed, 51 insertions(+) diff --git a/media-sound/g4music/Manifest b/media-sound/g4music/Manifest new file mode 100644 index 0000000000..ed27351efc --- /dev/null +++ b/media-sound/g4music/Manifest @@ -0,0 +1 @@ +DIST g4music-v3.2.tar.gz 3284896 BLAKE2B 4c6aec9fbb3d67ffb64ee336dc7e6ac056d23ef1e9c916326438a66e7168d965d863187abcd19bf2c5bc089ef090d4357b8aca72e4a097df8cb0769dcd46f820 SHA512 92273096f37a6f69b02af70a09d6541ac12a0d2c5724c4f4aa120e6a5d482acf75bf70b4aa84c4b4afb1a14b716b282ea321a956f771c2c8fb863faad06307e9 diff --git a/media-sound/g4music/g4music-3.2.ebuild b/media-sound/g4music/g4music-3.2.ebuild new file mode 100644 index 0000000000..a589bcdf55 --- /dev/null +++ b/media-sound/g4music/g4music-3.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson xdg gnome2-utils vala + +DESCRIPTION="A GTK4 music player" +HOMEPAGE="https://gitlab.gnome.org/neithern/g4music" +SRC_URI="https://gitlab.gnome.org/neithern/g4music/-/archive/v${PV}/g4music-v${PV}.tar.gz" +S="${WORKDIR}/g4music-v${PV}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +IDEPEND=">=gui-libs/gtk-4.6 +>=gui-libs/libadwaita-1 +>=media-libs/gstreamer-1.20.6[introspection] +>=dev-lang/vala-0.56.8" +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="$(vala_depend)" + +src_prepare() { + default + vala_setup + xdg_environment_reset +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/media-sound/g4music/metadata.xml b/media-sound/g4music/metadata.xml new file mode 100644 index 0000000000..68898ff820 --- /dev/null +++ b/media-sound/g4music/metadata.xml @@ -0,0 +1,11 @@ + + + + + mail@konstantintutsch.de + Konstantin Tutsch + + + https://gitlab.gnome.org/neithern/g4music + +