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 B3DE015802F for ; Mon, 13 Mar 2023 08:29:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0716E07C7; Mon, 13 Mar 2023 08:29:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DB8EEE07C7 for ; Mon, 13 Mar 2023 08:29:56 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 27675340D8C for ; Mon, 13 Mar 2023 08:29:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB93D8E6 for ; Mon, 13 Mar 2023 08:29:53 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1678629587.56305cea747ba9eec90aa94b0d774400ffd75f64.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-apps/tootle/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/tootle/tootle-9999.ebuild X-VCS-Directories: gui-apps/tootle/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 56305cea747ba9eec90aa94b0d774400ffd75f64 X-VCS-Branch: master Date: Mon, 13 Mar 2023 08:29:53 +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: e1b4de79-9f60-46ec-9467-de41b6baf034 X-Archives-Hash: e7eb2067b5f3043ca9e8459e1b6df31e commit: 56305cea747ba9eec90aa94b0d774400ffd75f64 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sun Mar 12 13:59:47 2023 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Sun Mar 12 13:59:47 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=56305cea gui-apps/tootle: update EAPI 7 -> 8 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> gui-apps/tootle/tootle-9999.ebuild | 47 +++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 26 deletions(-) diff --git a/gui-apps/tootle/tootle-9999.ebuild b/gui-apps/tootle/tootle-9999.ebuild index 81d0c5f8f..d14985956 100644 --- a/gui-apps/tootle/tootle-9999.ebuild +++ b/gui-apps/tootle/tootle-9999.ebuild @@ -1,50 +1,45 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + inherit git-r3 gnome2-utils meson vala xdg-utils DESCRIPTION="Mastodon client written in GTK3" -HOMEPAGE="https://github.com/bleakgrey/tootle" +HOMEPAGE="https://gitlab.gnome.org/World/tootle" EGIT_REPO_URI="https://gitlab.gnome.org/World/tootle" -LICENSE="GPL-3" +LICENSE="GPL-3" SLOT="0" RDEPEND=" + app-crypt/libsecret + dev-libs/glib:2 + >=dev-libs/granite-0.5.2:= dev-libs/json-glib - >=dev-libs/granite-0.5.2 - gui-libs/libhandy:1.0/0 - net-libs/libsoup + dev-libs/libgee:0.8= + dev-libs/libxml2:2 + gui-libs/gtk:4 + gui-libs/libadwaita:1 + net-libs/libsoup:2.4 " -DEPEND=" - ${RDEPEND} - dev-util/meson - dev-lang/vala - virtual/pkgconfig +DEPEND="${RDEPEND}" +BDEPEND=" + $(vala_depend) + sys-devel/gettext " src_prepare() { - vala_src_prepare + vala_setup default } -src_install() { - meson_src_install - dosym "${EPREFIX}"/usr/bin/{com.github.bleakgrey.,}tootle -} - -pkg_preinst() { - gnome2_gconf_savelist - gnome2_schemas_savelist -} - pkg_postinst() { - xdg_icon_cache_update - gnome2_gconf_install + xdg_pkg_postinst gnome2_schemas_update } pkg_postrm() { - xdg_icon_cache_update + xdg_pkg_postinst + gnome2_schemas_update }