Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/lvtk/
Date: Wed, 29 Jun 2022 18:08:51
Message-Id: 1656526120.7b3ba20b2513eb53a64e8d5fa8152d95e1a80817.fordfrog@gentoo
1 commit: 7b3ba20b2513eb53a64e8d5fa8152d95e1a80817
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 18:08:40 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 18:08:40 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b3ba20b
7
8 media-libs/lvtk: dropped obsolete 1.2.0-r1
9
10 Bug: https://bugs.gentoo.org/854804
11 Closes: https://bugs.gentoo.org/846026
12 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
13
14 media-libs/lvtk/lvtk-1.2.0-r1.ebuild | 66 ------------------------------------
15 1 file changed, 66 deletions(-)
16
17 diff --git a/media-libs/lvtk/lvtk-1.2.0-r1.ebuild b/media-libs/lvtk/lvtk-1.2.0-r1.ebuild
18 deleted file mode 100644
19 index cc249035b06c..000000000000
20 --- a/media-libs/lvtk/lvtk-1.2.0-r1.ebuild
21 +++ /dev/null
22 @@ -1,66 +0,0 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=6
27 -
28 -PYTHON_COMPAT=( python3_{7,8,9} )
29 -PYTHON_REQ_USE="threads(+)"
30 -
31 -inherit python-single-r1 waf-utils
32 -
33 -WAF_VER=2.0.20
34 -
35 -DESCRIPTION="A set of C++ wrappers around the LV2 C API"
36 -HOMEPAGE="https://lvtk.org/"
37 -SRC_URI="https://github.com/lvtk/lvtk/archive/${PV}.tar.gz -> ${P}.tar.gz
38 - https://waf.io/waf-${WAF_VER}"
39 -
40 -LICENSE="GPL-3+"
41 -SLOT="0"
42 -KEYWORDS="amd64 x86"
43 -IUSE="debug doc examples +gtk2 +tools"
44 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
45 -
46 -RDEPEND="media-libs/lv2
47 - >=dev-libs/boost-1.40.0
48 - ${PYTHON_DEPS}
49 - gtk2? ( dev-cpp/gtkmm:2.4 )"
50 -DEPEND="${RDEPEND}
51 - doc? ( app-doc/doxygen
52 - media-gfx/graphviz )
53 - virtual/pkgconfig"
54 -
55 -PATCHES=(
56 - "${FILESDIR}/${P}-boost-system-underlinking.patch"
57 - "${FILESDIR}/${P}-py3.patch"
58 -)
59 -
60 -src_unpack() {
61 - unpack ${P}.tar.gz || die
62 -
63 - # we need newer version of waf to work with py3
64 - cp "${DISTDIR}/waf-${WAF_VER}" "${S}/waf" || die
65 -}
66 -
67 -src_configure() {
68 - local mywafconfargs=(
69 - "--docdir=${EPREFIX}/usr/share/doc/${PF}"
70 - "--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2"
71 - )
72 - use debug && mywafconfargs+=( "--debug" )
73 - use doc && mywafconfargs+=( "--docs" )
74 - use examples || mywafconfargs+=( "--disable-examples" )
75 - use tools || mywafconfargs+=( "--disable-tools" )
76 - use gtk2 || mywafconfargs+=( "--disable-ui" )
77 - waf-utils_src_configure ${mywafconfargs[@]}
78 -}
79 -
80 -src_install() {
81 - waf-utils_src_install
82 -
83 - # It does not respect docdir properly, reported upstream
84 - if use doc; then
85 - mv "${ED}/usr/share/doc/${PF}/lvtk-1/html" "${ED}/usr/share/doc/${PF}/html" || die
86 - rmdir "${ED}/usr/share/doc/${PF}/lvtk-1" || die
87 - fi
88 -}