Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/rlottie/
Date: Fri, 06 Mar 2020 08:51:06
Message-Id: 1583484652.e13f79d1059ca779416836c8fa0da32fdd184c9a.juippis@gentoo
1 commit: e13f79d1059ca779416836c8fa0da32fdd184c9a
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 6 08:49:34 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 6 08:50:52 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e13f79d1
7
8 media-libs/rlottie: remove old 0.0.1_pre20191214
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 media-libs/rlottie/Manifest | 1 -
13 .../rlottie/rlottie-0.0.1_pre20191214.ebuild | 39 ----------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/media-libs/rlottie/Manifest b/media-libs/rlottie/Manifest
17 index 283cacdaab1..bcbbad8fb3b 100644
18 --- a/media-libs/rlottie/Manifest
19 +++ b/media-libs/rlottie/Manifest
20 @@ -1,2 +1 @@
21 -DIST rlottie-0.0.1_pre20191214.tar.gz 7898743 BLAKE2B 16f2456d60ebb2e81cca7017e9f8f32f137cc0b9e94f023b9b85c47354fdf07fed3ad8c07d9236560784866a3585f19d768e25655f5807ce89f40895141ca67f SHA512 f8876b1660c531a20e2b54523c93c2cae9a7f53b516707ae614369b6ecddd9281ed672bd27398829f02b55eb20e59dce7a5cb93104026df11690a18a3caadafc
22 DIST rlottie-0.0.1_pre20200110.tar.gz 3370396 BLAKE2B 02a51e6f24a83967ccbf085e0c28400e23057c833e4849db3f749d30a3ccb4ade2d4e0a8ea624da7ba0148bc84013ca4df963f01fc75ed4156ab8dc36bda6945 SHA512 e78470254ab7b9653dcd95037001a1763f4229bdc611f4631943f302b20739a6e4b519d54c967c1ecd7bcc4b555bb8f651af0bceebc04cc9ea41789360b49af4
23
24 diff --git a/media-libs/rlottie/rlottie-0.0.1_pre20191214.ebuild b/media-libs/rlottie/rlottie-0.0.1_pre20191214.ebuild
25 deleted file mode 100644
26 index a649acce068..00000000000
27 --- a/media-libs/rlottie/rlottie-0.0.1_pre20191214.ebuild
28 +++ /dev/null
29 @@ -1,39 +0,0 @@
30 -# Copyright 2019 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit meson
36 -
37 -MY_COMMIT="87f485e2247925ceaead99c4bca997e4c44e3a20"
38 -
39 -DESCRIPTION="A platform independent standalone library that plays Lottie Animations"
40 -HOMEPAGE="https://www.tizen.org/ https://github.com/Samsung/rlottie"
41 -SRC_URI="https://github.com/Samsung/rlottie/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="BSD FTL LGPL-2.1 MIT"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
46 -IUSE="test"
47 -
48 -RESTRICT="!test? ( test )"
49 -
50 -DEPEND="test? ( dev-cpp/gtest )"
51 -
52 -S="${WORKDIR}/rlottie-${MY_COMMIT}"
53 -
54 -PATCHES=( "${FILESDIR}"/rlottie-0.0.1_pre20190920-disable-werror.patch )
55 -
56 -src_configure() {
57 - local emesonargs=(
58 - -D example=false
59 - $(meson_use test)
60 - )
61 -
62 - meson_src_configure
63 -}
64 -
65 -src_test() {
66 - cd "${BUILD_DIR}" || die "Failed to switch into BUILD_DIR."
67 - eninja test
68 -}