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-video/openshot/
Date: Sun, 30 May 2021 19:04:47
Message-Id: 1622401409.0550a694645e7b3ae0c24ef93487bde9be194ce2.asturm@gentoo
1 commit: 0550a694645e7b3ae0c24ef93487bde9be194ce2
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 17 11:00:37 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 30 19:03:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0550a694
7
8 media-video/openshot: Drop 2.4.4-r1
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-video/openshot/Manifest | 1 -
14 media-video/openshot/openshot-2.4.4-r1.ebuild | 53 ---------------------------
15 2 files changed, 54 deletions(-)
16
17 diff --git a/media-video/openshot/Manifest b/media-video/openshot/Manifest
18 index 1fc3694ae74..39cbf60fcec 100644
19 --- a/media-video/openshot/Manifest
20 +++ b/media-video/openshot/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST openshot-2.4.4.tar.gz 63065376 BLAKE2B 2ee00f24d699d5935a182c394821f215a27ba2701d493f51299c19cf99452ca4df2e5b86f7a6e5734e6194e39e5b7995eb94be168c0e9f7bc7a3b78206277304 SHA512 efa71f97a83b89e691b7dab09288ba7d3e91eb25119669fa8f6e28becb8d4cb3e60a923f936ee4ff9a593d016fe3a6b0348153cff937ab7d21a5517de5dfa10c
23 DIST openshot-2.5.1.tar.gz 60217543 BLAKE2B 3f195b14a9fb004e845c731be64138c20da84ac0c90db43b547ee9ea059d32f85ada04aa0462b755a7ea5c3d3b30088fab35414147dded55deb9d5eab5926d2d SHA512 8254a45254bbe523b6485b9598022de2c46ec30818e606ac4665790d29486693c4efe9f5bc55ee43d6342de6782cf0090e4bc880e831c08e3b1218bca555af14
24 DIST openshot-2.5.1_p20210228.tar.gz 64780534 BLAKE2B c31bd2531df28ce9bed688fbc34dc383018024ffe9364699e45c08135f5c0692d97f601bc578ba07fd44e2f8f58f0b27c5bc10bb3af48c8cf0be17a45b966116 SHA512 b5ce39d31bc1b997d272b3817ccdcef4749126755e329a278700f6735a1484b0c2b917e04a5f1b9826ee0e5ea983a624be59af16bf79f038be44a29763cc68b5
25
26 diff --git a/media-video/openshot/openshot-2.4.4-r1.ebuild b/media-video/openshot/openshot-2.4.4-r1.ebuild
27 deleted file mode 100644
28 index 5d25848a8ed..00000000000
29 --- a/media-video/openshot/openshot-2.4.4-r1.ebuild
30 +++ /dev/null
31 @@ -1,53 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( python3_7 )
38 -PYTHON_REQ_USE=xml
39 -DISTUTILS_SINGLE_IMPL=1
40 -
41 -inherit distutils-r1 xdg
42 -
43 -MY_PN="${PN}-qt"
44 -
45 -DESCRIPTION="Free, open-source, non-linear video editor to create and edit videos and movies"
46 -HOMEPAGE="https://www.openshot.org/"
47 -SRC_URI="https://github.com/OpenShot/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
48 -
49 -LICENSE="GPL-3+"
50 -SLOT="1"
51 -KEYWORDS="amd64 x86"
52 -IUSE="doc"
53 -
54 -RDEPEND="
55 - $(python_gen_cond_dep '
56 - dev-python/httplib2[${PYTHON_MULTI_USEDEP}]
57 - dev-python/PyQt5[${PYTHON_MULTI_USEDEP},gui,svg,webkit,widgets]
58 - dev-python/pyzmq[${PYTHON_MULTI_USEDEP}]
59 - dev-python/requests[${PYTHON_MULTI_USEDEP}]
60 - ')
61 - >=media-libs/libopenshot-0.2.3[python,${PYTHON_SINGLE_USEDEP}]
62 -"
63 -BDEPEND="
64 - $(python_gen_cond_dep '
65 - doc? ( dev-python/sphinx[${PYTHON_MULTI_USEDEP}] )
66 - ')
67 -"
68 -
69 -S="${WORKDIR}/${MY_PN}-${PV}"
70 -
71 -src_prepare() {
72 - distutils-r1_python_prepare_all
73 - # prevent setup.py from trying to update MIME databases
74 - sed -i 's/^ROOT =.*/ROOT = False/' setup.py || die
75 -}
76 -
77 -python_compile_all() {
78 - use doc && emake -C doc html
79 -}
80 -
81 -python_install_all() {
82 - use doc && local HTML_DOCS=( doc/_build/html/. )
83 - distutils-r1_python_install_all
84 -}