summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoonas Niilola <juippis@gentoo.org>2021-06-16 08:47:17 +0300
committerJoonas Niilola <juippis@gentoo.org>2021-06-16 08:47:17 +0300
commite0484a6f6b7471aeb1b908cbec0d7ff39906e1ea (patch)
tree7f1919a468589ccb93ffdd63239264a7cb1eb3aa /media-libs
parentapp-text/dictd: slap a warning for systemd users (diff)
downloadgentoo-e0484a6f6b7471aeb1b908cbec0d7ff39906e1ea.tar.gz
gentoo-e0484a6f6b7471aeb1b908cbec0d7ff39906e1ea.tar.bz2
gentoo-e0484a6f6b7471aeb1b908cbec0d7ff39906e1ea.zip
media-libs/rlottie: drop 0.2
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/rlottie/Manifest1
-rw-r--r--media-libs/rlottie/rlottie-0.2.ebuild41
2 files changed, 0 insertions, 42 deletions
diff --git a/media-libs/rlottie/Manifest b/media-libs/rlottie/Manifest
index 1b5f363baf5b..ba0738177a72 100644
--- a/media-libs/rlottie/Manifest
+++ b/media-libs/rlottie/Manifest
@@ -1,2 +1 @@
-DIST rlottie-0.2-1.tar.gz 3516947 BLAKE2B d5f6b643c910e0b831be223be4fcff3d42cde8239b01d413f2805eeccf2665abfbd209ee6877358c2434d3bc82ea7c5b3849f4dca1d0796436e47ffa6bcfed64 SHA512 1f645ae998ddbe83e4911addf28ec24ae3ff33f6439a9fb6c1e56986b46ac17dba155773ab02a59712e781febb31709a99075a3fbcda6136a0cb43dbd7c753de
DIST rlottie-0.2_p20210405.tar.gz 4048368 BLAKE2B 46875135de630b8cae164bf9714abbfad389853aabf7e642c612b54ce50a3a0c105b57a314f0731aa69b4fd023e3638c122f0335a7ae886253a7bea0a5b3d51e SHA512 a0382bd9561cc47daafc0742db24c55efa25ec1c8e0d865ea49cf11d8f082b9f860dd673f4d0fbf95e02da708da164bc9a87c66b76cd58becf983c968e7aeb81
diff --git a/media-libs/rlottie/rlottie-0.2.ebuild b/media-libs/rlottie/rlottie-0.2.ebuild
deleted file mode 100644
index faec02176727..000000000000
--- a/media-libs/rlottie/rlottie-0.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="A platform independent standalone library that plays Lottie Animations"
-HOMEPAGE="https://www.tizen.org/ https://github.com/Samsung/rlottie"
-SRC_URI="https://github.com/Samsung/rlottie/archive/v${PV}.tar.gz -> ${P}-1.tar.gz"
-
-LICENSE="BSD FTL JSON MIT"
-SLOT="0/0.2"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="debug examples test"
-
-RESTRICT="!test? ( test )"
-
-DEPEND="test? ( dev-cpp/gtest )"
-
-src_configure() {
- local emesonargs=(
- -D cache=true
- -D module=true
- -D thread=true
-
- -D cmake=false
- -D example=false
-
- $(meson_use debug dumptree)
- $(meson_use debug log)
- $(meson_use test)
- )
-
- meson_src_configure
-}
-
-src_test() {
- cd "${BUILD_DIR}" || die "Failed to switch into BUILD_DIR."
- eninja test
-}