Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/libgsf/
Date: Sun, 27 Mar 2022 05:01:36
Message-Id: 1648356836.b21286d0b48a4a18e1cc39b375976c9330e90ca9.mattst88@gentoo
1 commit: b21286d0b48a4a18e1cc39b375976c9330e90ca9
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 04:53:56 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 04:53:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b21286d0
7
8 gnome-extra/libgsf: Version bump to 1.14.49
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gnome-extra/libgsf/Manifest | 1 +
13 gnome-extra/libgsf/libgsf-1.14.49.ebuild | 41 ++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/gnome-extra/libgsf/Manifest b/gnome-extra/libgsf/Manifest
17 index baadf67f045a..49b2a2751113 100644
18 --- a/gnome-extra/libgsf/Manifest
19 +++ b/gnome-extra/libgsf/Manifest
20 @@ -1 +1,2 @@
21 DIST libgsf-1.14.48.tar.xz 701760 BLAKE2B 762fe424ad45ac9739e1ea2cd9971f80f9c4d573147c6043c6bbf7b416a6c69c3b0bbfa42f6424176a545f7f9e7257d33e62c92482945786bb142063390a9d08 SHA512 6efba54c1427f9bdf71203b265ee4cdaa7366f78f299d38deffb657198244fb6436ab4e077a010079a28832539cdef08796e43feb76450ab0420da56016cd95e
22 +DIST libgsf-1.14.49.tar.xz 702644 BLAKE2B 05ee17200d5170380138a7996dd37d5473eb9fe9a13cfb06b68e17470525d9640a4921d111e83963f245ecf6b669116322d9358d9a0b473c8149c56ff9c983ba SHA512 a847a3c7fe26865e110bb87cb7ed74c477fdaf41fdec1c97cd3ea85ab3ba2f618e609a38fb4087a2c9b58d8d4b430c2148c93cbbb8425af41b6c751efef3298e
23
24 diff --git a/gnome-extra/libgsf/libgsf-1.14.49.ebuild b/gnome-extra/libgsf/libgsf-1.14.49.ebuild
25 new file mode 100644
26 index 000000000000..795fb272712c
27 --- /dev/null
28 +++ b/gnome-extra/libgsf/libgsf-1.14.49.ebuild
29 @@ -0,0 +1,41 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +inherit gnome2
35 +
36 +DESCRIPTION="The GNOME Structured File Library"
37 +HOMEPAGE="https://gitlab.gnome.org/GNOME/libgsf"
38 +
39 +LICENSE="GPL-2 LGPL-2.1"
40 +SLOT="0/114" # libgsf-1.so version
41 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
42 +IUSE="bzip2 gtk +introspection test"
43 +RESTRICT="!test? ( test )"
44 +
45 +RDEPEND="
46 + >=dev-libs/glib-2.36:2
47 + >=dev-libs/libxml2-2.4.16:2
48 + sys-libs/zlib
49 + bzip2? ( app-arch/bzip2 )
50 + gtk? (
51 + x11-libs/gdk-pixbuf:2
52 + virtual/imagemagick-tools
53 + )
54 + introspection? ( >=dev-libs/gobject-introspection-1:= )
55 +"
56 +DEPEND="${RDEPEND}
57 + >=dev-util/gtk-doc-am-1.12
58 + dev-libs/gobject-introspection-common
59 + >=sys-devel/gettext-0.19.6
60 + virtual/pkgconfig
61 + test? ( dev-perl/XML-Parser )
62 +"
63 +
64 +src_configure() {
65 + gnome2_src_configure \
66 + --disable-static \
67 + $(use_with bzip2 bz2) \
68 + $(use_enable introspection) \
69 + $(use_with gtk gdk-pixbuf)
70 +}