From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 201DF138359 for ; Wed, 23 Sep 2020 10:28:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5AA68E0826; Wed, 23 Sep 2020 10:28:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4337DE0826 for ; Wed, 23 Sep 2020 10:28:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5DCCB33BE1A for ; Wed, 23 Sep 2020 10:28:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13B43357 for ; Wed, 23 Sep 2020 10:28:00 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1600856866.ab846e2401eb3bdaca87e2446fccb587d9c4bda8.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/lvtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/lvtk/lvtk-1.2.0.ebuild X-VCS-Directories: media-libs/lvtk/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: ab846e2401eb3bdaca87e2446fccb587d9c4bda8 X-VCS-Branch: master Date: Wed, 23 Sep 2020 10:28:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4eb10acb-70ee-4ecf-9def-0ed4500e9157 X-Archives-Hash: ba24c02db742d4576c8c17606a045b30 commit: ab846e2401eb3bdaca87e2446fccb587d9c4bda8 Author: Miroslav Šulc gentoo org> AuthorDate: Wed Sep 23 10:27:46 2020 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Wed Sep 23 10:27:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab846e24 media-libs/lvtk: removed obsolete 1.2.0 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/lvtk/lvtk-1.2.0.ebuild | 55 --------------------------------------- 1 file changed, 55 deletions(-) diff --git a/media-libs/lvtk/lvtk-1.2.0.ebuild b/media-libs/lvtk/lvtk-1.2.0.ebuild deleted file mode 100644 index 62eaf591939..00000000000 --- a/media-libs/lvtk/lvtk-1.2.0.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="threads(+)" - -inherit python-single-r1 waf-utils - -DESCRIPTION="A set of C++ wrappers around the LV2 C API" -HOMEPAGE="https://lvtk.org/" -SRC_URI="https://github.com/lvtk/lvtk/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug doc examples +gtk2 +tools" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="media-libs/lv2 - >=dev-libs/boost-1.40.0 - ${PYTHON_DEPS} - gtk2? ( dev-cpp/gtkmm:2.4 )" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen - media-gfx/graphviz ) - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${P}-boost-system-underlinking.patch" -) - -src_configure() { - local mywafconfargs=( - "--docdir=${EPREFIX}/usr/share/doc/${PF}" - "--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2" - ) - use debug && mywafconfargs+=( "--debug" ) - use doc && mywafconfargs+=( "--docs" ) - use examples || mywafconfargs+=( "--disable-examples" ) - use tools || mywafconfargs+=( "--disable-tools" ) - use gtk2 || mywafconfargs+=( "--disable-ui" ) - waf-utils_src_configure ${mywafconfargs[@]} -} - -src_install() { - waf-utils_src_install - - # It does not respect docdir properly, reported upstream - if use doc; then - mv "${ED}/usr/share/doc/${PF}/lvtk-1/html" "${ED}/usr/share/doc/${PF}/html" || die - rmdir "${ED}/usr/share/doc/${PF}/lvtk-1" || die - fi -}