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/, media-libs/rlottie/files/
Date: Sun, 27 Sep 2020 10:27:39
Message-Id: 1601202448.6af9ae219ec7a8f4bfb73197d8e32bb3fe66ea87.juippis@gentoo
1 commit: 6af9ae219ec7a8f4bfb73197d8e32bb3fe66ea87
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 27 10:26:46 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 27 10:27:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6af9ae21
7
8 media-libs/rlottie: remove old 0.1
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 media-libs/rlottie/Manifest | 1 -
13 .../rlottie/files/rlottie-0.1-disable-werror.patch | 10 -----
14 media-libs/rlottie/rlottie-0.1-r1.ebuild | 43 ----------------------
15 3 files changed, 54 deletions(-)
16
17 diff --git a/media-libs/rlottie/Manifest b/media-libs/rlottie/Manifest
18 index ef50438978f..f1c760fe4c7 100644
19 --- a/media-libs/rlottie/Manifest
20 +++ b/media-libs/rlottie/Manifest
21 @@ -1,2 +1 @@
22 -DIST rlottie-0.1-1.tar.gz 3370181 BLAKE2B 7ba580af961f2af7b92c40b4640f8b515c21a354ef5e639c5f00b0ea26fd3e2929dbf2e926b58d39ad3f48228511ba42a42a24d4b7bb914389a7e43df810d667 SHA512 ab9b913d9e0bc938a878a6847851cd6965dc61efbf8ef71761b83d6ff577479cf0c0b214c36e58ddd6a29927a1954c3d3db9db427779b5a2d472c8962cd45ff1
23 DIST rlottie-0.2-1.tar.gz 3516947 BLAKE2B d5f6b643c910e0b831be223be4fcff3d42cde8239b01d413f2805eeccf2665abfbd209ee6877358c2434d3bc82ea7c5b3849f4dca1d0796436e47ffa6bcfed64 SHA512 1f645ae998ddbe83e4911addf28ec24ae3ff33f6439a9fb6c1e56986b46ac17dba155773ab02a59712e781febb31709a99075a3fbcda6136a0cb43dbd7c753de
24
25 diff --git a/media-libs/rlottie/files/rlottie-0.1-disable-werror.patch b/media-libs/rlottie/files/rlottie-0.1-disable-werror.patch
26 deleted file mode 100644
27 index 55e50d63a55..00000000000
28 --- a/media-libs/rlottie/files/rlottie-0.1-disable-werror.patch
29 +++ /dev/null
30 @@ -1,10 +0,0 @@
31 ---- a/meson.build 2020-06-19 08:49:20.511888022 +0300
32 -+++ b/meson.build 2020-06-19 08:49:49.166640657 +0300
33 -@@ -1,6 +1,6 @@
34 - project('rlottie',
35 - 'cpp',
36 -- default_options : ['warning_level=3', 'werror=true', 'cpp_std=c++14', 'optimization=s'],
37 -+ default_options : ['cpp_std=c++14', 'optimization=s'],
38 - version : '0.1',
39 - license : 'LGPL-v2.1')
40 -
41
42 diff --git a/media-libs/rlottie/rlottie-0.1-r1.ebuild b/media-libs/rlottie/rlottie-0.1-r1.ebuild
43 deleted file mode 100644
44 index c3825364a0c..00000000000
45 --- a/media-libs/rlottie/rlottie-0.1-r1.ebuild
46 +++ /dev/null
47 @@ -1,43 +0,0 @@
48 -# Copyright 2019-2020 Gentoo Authors
49 -# Distributed under the terms of the GNU General Public License v2
50 -
51 -EAPI=7
52 -
53 -inherit meson
54 -
55 -DESCRIPTION="A platform independent standalone library that plays Lottie Animations"
56 -HOMEPAGE="https://www.tizen.org/ https://github.com/Samsung/rlottie"
57 -SRC_URI="https://github.com/Samsung/rlottie/archive/v${PV}.tar.gz -> ${P}-1.tar.gz"
58 -
59 -LICENSE="BSD FTL JSON LGPL-2.1 MIT"
60 -SLOT="0/0.0.1"
61 -KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
62 -IUSE="debug examples test"
63 -
64 -RESTRICT="!test? ( test )"
65 -
66 -DEPEND="test? ( dev-cpp/gtest )"
67 -
68 -PATCHES=( "${FILESDIR}"/${P}-disable-werror.patch )
69 -
70 -src_configure() {
71 - local emesonargs=(
72 - -D cache=true
73 - -D module=true
74 - -D thread=true
75 -
76 - -D cmake=false
77 - -D example=false
78 -
79 - $(meson_use debug dumptree)
80 - $(meson_use debug log)
81 - $(meson_use test)
82 - )
83 -
84 - meson_src_configure
85 -}
86 -
87 -src_test() {
88 - cd "${BUILD_DIR}" || die "Failed to switch into BUILD_DIR."
89 - eninja test
90 -}