Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmypaint/
Date: Thu, 30 Apr 2020 21:28:55
Message-Id: 1588282107.57b36f66146a24bc9e61b1f1a740d54ebd15a2fb.asturm@gentoo
1 commit: 57b36f66146a24bc9e61b1f1a740d54ebd15a2fb
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 30 16:59:12 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 30 21:28:27 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57b36f66
7
8 media-libs/libmypaint: Drop 1.3.0-r1
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-libs/libmypaint/Manifest | 1 -
14 media-libs/libmypaint/libmypaint-1.3.0-r1.ebuild | 63 ------------------------
15 2 files changed, 64 deletions(-)
16
17 diff --git a/media-libs/libmypaint/Manifest b/media-libs/libmypaint/Manifest
18 index 02d424b8dd0..bcbe9133d20 100644
19 --- a/media-libs/libmypaint/Manifest
20 +++ b/media-libs/libmypaint/Manifest
21 @@ -1,2 +1 @@
22 -DIST libmypaint-1.3.0.tar.xz 438160 BLAKE2B a018ba2dc2b2cf2f771e871a0cb769887d962c18f83315d1c77864f567ae69aa16a1d55b770f46527990995f0dc940516371485d6f3d4f3cc332623fc408c248 SHA512 553eeb3439ffd0c013e33254a16334242583b8bab76d1a3e937f3ed1d7e05a832c6eb26acd7220dce20c6a7d997c32afe828202ce48e25a5fe57b67efd853fcf
23 DIST libmypaint-1.4.0.tar.xz 441596 BLAKE2B d8c55f8dfedbb5cc07abe5c38c935abecf38f8e626b7fec83d7f7a29acdc722ededcd729f31e13e655242250f1d46cf44ca0473899b0de9510b062b123a711cb SHA512 c549a0b8f02976f7863c5ff49d5f16b5c3eae3e6e9e8803fef833edf78cc2a7413dd8dd751ed560c79d2527e0a54b462a92bb8059bcf69271654b2629f583c19
24
25 diff --git a/media-libs/libmypaint/libmypaint-1.3.0-r1.ebuild b/media-libs/libmypaint/libmypaint-1.3.0-r1.ebuild
26 deleted file mode 100644
27 index 38fbc7ccbf6..00000000000
28 --- a/media-libs/libmypaint/libmypaint-1.3.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,63 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( python2_7 )
36 -
37 -inherit eutils python-any-r1 xdg-utils toolchain-funcs
38 -
39 -MY_PV=${PV/_beta/-beta.}
40 -MY_P=${PN}-${MY_PV}
41 -
42 -DESCRIPTION="Library for making brushstrokes"
43 -HOMEPAGE="https://github.com/mypaint/libmypaint"
44 -SRC_URI="https://github.com/mypaint/libmypaint/releases/download/v${MY_PV}/${MY_P}.tar.xz"
45 -
46 -LICENSE="ISC"
47 -SLOT="0/0" # first soname component for subslot
48 -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 x86"
49 -IUSE="+gegl introspection nls openmp"
50 -
51 -CDEPEND="
52 - dev-libs/glib:2
53 - dev-libs/json-c:=
54 - gegl? (
55 - media-libs/babl
56 - media-libs/gegl:0.3[introspection?]
57 - )
58 - introspection? ( >=dev-libs/gobject-introspection-1.32 )
59 - openmp? ( sys-devel/gcc:*[openmp] )
60 - nls? ( sys-devel/gettext )
61 - "
62 -DEPEND="${CDEPEND}
63 - ${PYTHON_DEPS}
64 - nls? ( dev-util/intltool )
65 - "
66 -RDEPEND="${CDEPEND}
67 - !<media-gfx/mypaint-1.2.1
68 - "
69 -
70 -S="${WORKDIR}"/${MY_P}
71 -
72 -src_prepare() {
73 - xdg_environment_reset
74 - eapply_user
75 -}
76 -
77 -src_configure() {
78 - tc-ld-disable-gold # bug 589266
79 - econf \
80 - --disable-debug \
81 - --disable-docs \
82 - $(use_enable gegl) \
83 - --disable-gperftools \
84 - $(use_enable nls i18n) \
85 - $(use_enable introspection) \
86 - $(use_enable openmp) \
87 - --disable-profiling
88 -}
89 -
90 -src_install() {
91 - default
92 - find "${D}" -name '*.la' -type f -delete || die
93 -}