Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/gnome-autoar/
Date: Fri, 30 Apr 2021 20:06:49
Message-Id: 1619812641.dd6516fc087bf10f279b7da231f72ee7f96df825.mattst88@gentoo
1 commit: dd6516fc087bf10f279b7da231f72ee7f96df825
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 30 19:57:21 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 30 19:57:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd6516fc
7
8 app-arch/gnome-autoar: Version bump to 0.3.2
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 app-arch/gnome-autoar/Manifest | 1 +
13 app-arch/gnome-autoar/gnome-autoar-0.3.2.ebuild | 43 +++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/app-arch/gnome-autoar/Manifest b/app-arch/gnome-autoar/Manifest
17 index cb801519e45..87e8d0478b2 100644
18 --- a/app-arch/gnome-autoar/Manifest
19 +++ b/app-arch/gnome-autoar/Manifest
20 @@ -1 +1,2 @@
21 DIST gnome-autoar-0.3.1.tar.xz 297904 BLAKE2B 607c9b3a26cf23eed3b9b19c32e2e0b3b9127977b5836b0b263cc3163490fd10052716e073264bbe946e351ec096021dd243560f6e7781400029263705308328 SHA512 a8ece09f66d7f1761fb4217f267b8a6dd1dee2266cc10f9944b1860c364e0d671286c6bf9477bdee5d0dd231b959ebefdd7a7003d679c38fe1553863033311dc
22 +DIST gnome-autoar-0.3.2.tar.xz 298656 BLAKE2B d56498f2798b838729056f5d2194dc628de8cfd3e8964a718982cfd464e3e6848152624b2cbbe5377d813183eebae1f212bc56c1a8df2ea119af264786151670 SHA512 6685e44ed61388759ff820b7cd403304f32d47fab4e2f66f5571a5cc6d01c1287bda851f230b3782bb1beff6ef784c25434930f15ef6ed32d788db4b89435968
23
24 diff --git a/app-arch/gnome-autoar/gnome-autoar-0.3.2.ebuild b/app-arch/gnome-autoar/gnome-autoar-0.3.2.ebuild
25 new file mode 100644
26 index 00000000000..5ef87130fe5
27 --- /dev/null
28 +++ b/app-arch/gnome-autoar/gnome-autoar-0.3.2.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +VALA_USE_DEPEND="vapigen"
35 +
36 +inherit gnome2 vala
37 +
38 +DESCRIPTION="Automatic archives creating and extracting library"
39 +HOMEPAGE="https://git.gnome.org/browse/gnome-autoar"
40 +
41 +LICENSE="LGPL-2.1+"
42 +SLOT="0"
43 +IUSE="gtk +introspection vala"
44 +REQUIRED_USE="vala? ( introspection )"
45 +
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
47 +
48 +RDEPEND="
49 + >=app-arch/libarchive-3.4.0
50 + >=dev-libs/glib-2.35.6:2
51 + gtk? ( >=x11-libs/gtk+-3.2:3[introspection?] )
52 + introspection? ( >=dev-libs/gobject-introspection-1.30.0:= )
53 +"
54 +DEPEND="${RDEPEND}"
55 +BDEPEND="
56 + >=dev-util/gtk-doc-am-1.14
57 + virtual/pkgconfig
58 + vala? ( $(vala_depend) )
59 +"
60 +
61 +src_prepare() {
62 + use vala && vala_src_prepare
63 + gnome2_src_prepare
64 +}
65 +
66 +src_configure() {
67 + gnome2_src_configure \
68 + --disable-static \
69 + $(use_enable introspection) \
70 + $(use_enable vala) \
71 + $(use_enable gtk)
72 +}