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 51DE7138359 for ; Sat, 22 Aug 2020 16:06:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5782E088D; Sat, 22 Aug 2020 16:06:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 B1C89E088D for ; Sat, 22 Aug 2020 16:06:23 +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 4479833D3C7 for ; Sat, 22 Aug 2020 16:06:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8680333B for ; Sat, 22 Aug 2020 16:06:16 +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: <1598112354.acfed1f3d952cf27c6ec911cee569524cbbab700.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/qsampler/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/qsampler/qsampler-9999.ebuild X-VCS-Directories: media-sound/qsampler/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: acfed1f3d952cf27c6ec911cee569524cbbab700 X-VCS-Branch: master Date: Sat, 22 Aug 2020 16:06:16 +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: 2824d17e-6b1e-447c-9229-e5691acd7d38 X-Archives-Hash: 68e45cf7a02559f93f0139b7ded7b18e commit: acfed1f3d952cf27c6ec911cee569524cbbab700 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Aug 21 22:13:43 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Aug 22 16:05:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acfed1f3 media-sound/qsampler: Update 9999, switch to git-r3.eclass Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/qsampler/qsampler-9999.ebuild | 27 ++++++--------------------- 1 file changed, 6 insertions(+), 21 deletions(-) diff --git a/media-sound/qsampler/qsampler-9999.ebuild b/media-sound/qsampler/qsampler-9999.ebuild index c59da124ba7..b7063d57ab8 100644 --- a/media-sound/qsampler/qsampler-9999.ebuild +++ b/media-sound/qsampler/qsampler-9999.ebuild @@ -3,20 +3,21 @@ EAPI=7 -inherit qmake-utils xdg autotools subversion +EGIT_REPO_URI="https://git.code.sf.net/p/qsampler/code" +inherit qmake-utils xdg autotools git-r3 DESCRIPTION="Graphical frontend to the LinuxSampler engine" HOMEPAGE="https://qsampler.sourceforge.io/ https://www.linuxsampler.org/" -ESVN_REPO_URI="https://svn.linuxsampler.org/svn/qsampler/trunk" LICENSE="GPL-2" SLOT="0" KEYWORDS="" IUSE="debug +libgig" -COMMON_DEPEND=" +DEPEND=" dev-qt/qtcore:5 dev-qt/qtgui:5 + dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-libs/alsa-lib @@ -24,12 +25,10 @@ COMMON_DEPEND=" x11-libs/libX11 libgig? ( >=media-libs/libgig-3.3.0:= ) " -RDEPEND="${COMMON_DEPEND} +RDEPEND="${DEPEND} >=media-sound/linuxsampler-0.5 " -DEPEND="${COMMON_DEPEND} - dev-qt/linguist-tools:5 -" +BDEPEND="dev-qt/linguist-tools:5" DOCS=( AUTHORS ChangeLog README TODO TRANSLATORS ) @@ -53,17 +52,3 @@ src_configure() { cd src || die eqmake5 src.pro -o Makefile } - -pkg_postinst() { - # these are not run automagically in live ebuild for some reason so running them manually - xdg_desktop_database_update - xdg_icon_cache_update - xdg_mimeinfo_database_update -} - -pkg_postrm() { - # these are not run automagically in live ebuild for some reason so running them manually - xdg_desktop_database_update - xdg_icon_cache_update - xdg_mimeinfo_database_update -}