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 4A03B138335 for ; Tue, 21 Aug 2018 21:36:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59C62E089B; Tue, 21 Aug 2018 21:36:15 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 30B13E089B for ; Tue, 21 Aug 2018 21:36:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 7BDA9335D38 for ; Tue, 21 Aug 2018 21:36:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D7B53B4 for ; Tue, 21 Aug 2018 21:36:10 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1534887360.0f5318f829ceb00e0af3c45f00448042580334da.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/musescore/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/musescore/musescore-2.1.0.ebuild X-VCS-Directories: media-sound/musescore/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0f5318f829ceb00e0af3c45f00448042580334da X-VCS-Branch: master Date: Tue, 21 Aug 2018 21:36:10 +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-Archives-Salt: 184f17fa-c484-4b50-9208-04e7f227d4e6 X-Archives-Hash: 05b9c6aaa6a6d25ec0215a5f755dd2da commit: 0f5318f829ceb00e0af3c45f00448042580334da Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Aug 21 21:36:00 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Aug 21 21:36:00 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f5318f8 media-sound/musescore: Drop 2.1.0 (r0) Package-Manager: Portage-2.3.48, Repoman-2.3.10 media-sound/musescore/musescore-2.1.0.ebuild | 68 ---------------------------- 1 file changed, 68 deletions(-) diff --git a/media-sound/musescore/musescore-2.1.0.ebuild b/media-sound/musescore/musescore-2.1.0.ebuild deleted file mode 100644 index 4029abae0fb..00000000000 --- a/media-sound/musescore/musescore-2.1.0.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="WYSIWYG Music Score Typesetter" -HOMEPAGE="https://musescore.org/" -SRC_URI="https://github.com/musescore/MuseScore/archive/v${PV}.tar.gz -> ${P}.tar.gz - https://dev.gentoo.org/~mgorny/dist/${P}-fix-buildsystem.patch.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="alsa debug jack mp3 portaudio portmidi pulseaudio" -REQUIRED_USE="portmidi? ( portaudio )" - -RDEPEND=" - dev-qt/designer:5 - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtdeclarative:5 - dev-qt/qtgui:5 - dev-qt/qthelp:5 - dev-qt/qtprintsupport:5 - dev-qt/qtsvg:5 - dev-qt/qtwebkit:5 - dev-qt/qtxmlpatterns:5 - >=media-libs/freetype-2.5.2 - media-libs/libsndfile - sys-libs/zlib - alsa? ( >=media-libs/alsa-lib-1.0.0 ) - jack? ( virtual/jack ) - mp3? ( media-sound/lame ) - portaudio? ( media-libs/portaudio ) - portmidi? ( media-libs/portmidi ) - pulseaudio? ( media-sound/pulseaudio ) - " -DEPEND="${RDEPEND} - dev-qt/linguist-tools:5 - virtual/pkgconfig - " - -PATCHES=( - "${WORKDIR}/${PN}-2.1.0-fix-buildsystem.patch" - "${FILESDIR}/${PN}-2.1.0-qt-5.11.patch" -) - -S="${WORKDIR}/MuseScore-${PV}" - -src_configure() { - local mycmakeargs=( - -DBUILD_ALSA="$(usex alsa)" - -DBUILD_JACK="$(usex jack)" - -DBUILD_LAME="$(usex mp3)" - -DBUILD_PORTAUDIO="$(usex portaudio)" - -DBUILD_PORTMIDI="$(usex portmidi)" - -DBUILD_PULSEAUDIO="$(usex pulseaudio)" - ) - cmake-utils_src_configure -} - -src_compile() { - cd "${BUILD_DIR}" || die - cmake-utils_src_make -j1 lrelease manpages - cmake-utils_src_compile -}