Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/libgsf/
Date: Tue, 28 Dec 2021 14:09:22
Message-Id: 1640700546.83e4299d9cc30cf906affe36f056b20a834f28d5.pacho@gentoo
1 commit: 83e4299d9cc30cf906affe36f056b20a834f28d5
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 28 14:09:06 2021 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 28 14:09:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83e4299d
7
8 gnome-extra/libgsf: Bump to 1.14.48
9
10 Closes: https://bugs.gentoo.org/645482
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
13
14 gnome-extra/libgsf/Manifest | 1 +
15 gnome-extra/libgsf/libgsf-1.14.48.ebuild | 39 ++++++++++++++++++++++++++++++++
16 2 files changed, 40 insertions(+)
17
18 diff --git a/gnome-extra/libgsf/Manifest b/gnome-extra/libgsf/Manifest
19 index 97ae17bb496f..87f876819750 100644
20 --- a/gnome-extra/libgsf/Manifest
21 +++ b/gnome-extra/libgsf/Manifest
22 @@ -1 +1,2 @@
23 DIST libgsf-1.14.47.tar.xz 691448 BLAKE2B 7be095fef159ff7a52f2cf4d83b59b5bb591e0d4fb1d69d88bc6f2eba4286337af2a2c46ac7d6603d5a68b9b6f03d41f647d34b0bee5e61244696c5ba02be569 SHA512 143d48eb02be8202b9eb97e29e5909061a0e1a562b86e4bb4b2eac3fb0a42b139ead131ed1ffa4dfe304b65527089777823122223a74ebbc9df94c17d013f97b
24 +DIST libgsf-1.14.48.tar.xz 701760 BLAKE2B 762fe424ad45ac9739e1ea2cd9971f80f9c4d573147c6043c6bbf7b416a6c69c3b0bbfa42f6424176a545f7f9e7257d33e62c92482945786bb142063390a9d08 SHA512 6efba54c1427f9bdf71203b265ee4cdaa7366f78f299d38deffb657198244fb6436ab4e077a010079a28832539cdef08796e43feb76450ab0420da56016cd95e
25
26 diff --git a/gnome-extra/libgsf/libgsf-1.14.48.ebuild b/gnome-extra/libgsf/libgsf-1.14.48.ebuild
27 new file mode 100644
28 index 000000000000..317027803298
29 --- /dev/null
30 +++ b/gnome-extra/libgsf/libgsf-1.14.48.ebuild
31 @@ -0,0 +1,39 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +inherit gnome2
37 +
38 +DESCRIPTION="The GNOME Structured File Library"
39 +HOMEPAGE="https://gitlab.gnome.org/GNOME/libgsf"
40 +
41 +LICENSE="GPL-2 LGPL-2.1"
42 +SLOT="0/114" # libgsf-1.so version
43 +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"
44 +IUSE="bzip2 gtk +introspection"
45 +
46 +RDEPEND="
47 + >=dev-libs/glib-2.36:2
48 + >=dev-libs/libxml2-2.4.16:2
49 + sys-libs/zlib
50 + bzip2? ( app-arch/bzip2 )
51 + gtk? (
52 + x11-libs/gdk-pixbuf:2
53 + virtual/imagemagick-tools
54 + )
55 + introspection? ( >=dev-libs/gobject-introspection-1:= )
56 +"
57 +DEPEND="${RDEPEND}
58 + >=dev-util/gtk-doc-am-1.12
59 + dev-libs/gobject-introspection-common
60 + >=sys-devel/gettext-0.19.6
61 + virtual/pkgconfig
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 +}