Gentoo Archives: gentoo-commits

From: Yuan Liao <liaoyuan@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gnome-extra/extension-manager/
Date: Tue, 29 Nov 2022 22:12:05
Message-Id: 1669759265.0afb6487a6cd683f6c7f655407cc9fdb3d595c99.liaoyuan@gentoo
1 commit: 0afb6487a6cd683f6c7f655407cc9fdb3d595c99
2 Author: Yuan Liao <liaoyuan <AT> gmail <DOT> com>
3 AuthorDate: Tue Nov 29 22:01:05 2022 +0000
4 Commit: Yuan Liao <liaoyuan <AT> gmail <DOT> com>
5 CommitDate: Tue Nov 29 22:01:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0afb6487
7
8 gnome-extra/extension-manager: Drop 0.3.2
9
10 Signed-off-by: Yuan Liao <liaoyuan <AT> gmail.com>
11
12 gnome-extra/extension-manager/Manifest | 1 -
13 .../extension-manager-0.3.2.ebuild | 76 ----------------------
14 2 files changed, 77 deletions(-)
15
16 diff --git a/gnome-extra/extension-manager/Manifest b/gnome-extra/extension-manager/Manifest
17 index c195a73a5..6a853f16a 100644
18 --- a/gnome-extra/extension-manager/Manifest
19 +++ b/gnome-extra/extension-manager/Manifest
20 @@ -1,2 +1 @@
21 -DIST extension-manager-0.3.2.tar.gz 1447521 BLAKE2B 55d09b54219804c1910a572953d7fee4b8a9131085260db1d4ef014bccf8b13fa2da0a8673c0d78643841d603878183c2b573b084bcd5cb1818721e8194c871b SHA512 84ff2f246d582cdae06a12e5e88309d67ae32502e9885675c08d75dc686fdea28b53bffa37d396ffface8515712f0b990603b5832704ae722342f0ad49748150
22 DIST extension-manager-0.4.0.tar.gz 1476951 BLAKE2B 9cf6ed74d30e22de8621ff9481de65295d9be07b82134b861192dfe3a9ebad4ea09be136beda0badc78d45cfd15a889b39b907ef4e258bc4229f6a342adde73d SHA512 9ec774c2dbd9476eeafbad19ea4d7d17ed9dd1de6cabe83511f372434cec11511dfd973cb5d67fba7e062314e2309150014ae83ce9768bb6f2e2f410909c8a1f
23
24 diff --git a/gnome-extra/extension-manager/extension-manager-0.3.2.ebuild b/gnome-extra/extension-manager/extension-manager-0.3.2.ebuild
25 deleted file mode 100644
26 index 469b4227b..000000000
27 --- a/gnome-extra/extension-manager/extension-manager-0.3.2.ebuild
28 +++ /dev/null
29 @@ -1,76 +0,0 @@
30 -# Copyright 2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit gnome2-utils meson xdg
36 -
37 -if [[ ${PV} == *9999 ]]; then
38 - inherit git-r3
39 - EGIT_REPO_URI="https://github.com/mjakeman/extension-manager.git"
40 -else
41 - SRC_URI="https://github.com/mjakeman/extension-manager/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 - KEYWORDS="~amd64"
43 -fi
44 -
45 -DESCRIPTION="A native tool for browsing and installing GNOME Shell Extensions"
46 -HOMEPAGE="https://github.com/mjakeman/extension-manager"
47 -
48 -LICENSE="GPL-3+"
49 -SLOT="0"
50 -
51 -BDEPEND="
52 - dev-libs/glib:2
53 - dev-util/blueprint-compiler
54 - sys-devel/gettext
55 - virtual/pkgconfig
56 -"
57 -
58 -RDEPEND="
59 - dev-libs/glib:2
60 - dev-libs/json-glib
61 - gui-libs/gtk:4[introspection]
62 - gui-libs/libadwaita:1[introspection]
63 - gui-libs/text-engine
64 - net-libs/libsoup:3.0
65 -"
66 -
67 -DEPEND="
68 - ${RDEPEND}
69 -"
70 -
71 -src_configure() {
72 - local emesonargs=()
73 - if has live ${PROPERTIES}; then
74 - # Produce a development build for live ebuild
75 - emesonargs+=( -Ddevelopment=true )
76 - fi
77 - meson_src_configure
78 -}
79 -
80 -# Tests are skipped because as of version 0.3.0, the tests only validate
81 -# resource files and do not verify any functionality of the program. Those
82 -# validations are either already handled by QA checks or not relevant on
83 -# Gentoo. For more information about the rationale, please refer to:
84 -# https://github.com/gentoo/guru/commit/f896bee213fbb62c70e818c1bf503fee2a41919a#comments
85 -#
86 -# If tests are to be executed in the future because the upstream adds
87 -# functionality tests or for other reasons, and should there be no convenient
88 -# way to skip the validations, the following variable values need to be set:
89 -#
90 -# IUSE="test"
91 -# RESTRICT="!test? ( test )"
92 -# BDEPEND="test? ( dev-libs/appstream-glib dev-util/desktop-file-utils )"
93 -src_test() {
94 - :
95 -}
96 -
97 -pkg_postinst() {
98 - xdg_pkg_postinst
99 - gnome2_schemas_update
100 -}
101 -
102 -pkg_postrm() {
103 - xdg_pkg_postrm
104 - gnome2_schemas_update
105 -}