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 1F2CF1382C5 for ; Sun, 4 Mar 2018 21:18:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C8E0E07F0; Sun, 4 Mar 2018 21:18:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 DFC2FE07F0 for ; Sun, 4 Mar 2018 21:18:28 +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 13CE9335D0A for ; Sun, 4 Mar 2018 21:18:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1791D21C for ; Sun, 4 Mar 2018 21:18:25 +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: <1520198290.870692e188b7464783f03d4ec147b5f452d0762f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/sasm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/sasm/sasm-2.2.ebuild X-VCS-Directories: dev-util/sasm/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 870692e188b7464783f03d4ec147b5f452d0762f X-VCS-Branch: master Date: Sun, 4 Mar 2018 21:18:25 +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: fd0245c9-6f34-4d1c-a921-df3854b5a3ca X-Archives-Hash: 5ce721629d3cc3040f5e54d5ade22b9e commit: 870692e188b7464783f03d4ec147b5f452d0762f Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 4 21:17:38 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 4 21:18:10 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=870692e1 dev-util/sasm: Drop old Qt4-based Closes: https://bugs.gentoo.org/644384 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-util/sasm/sasm-2.2.ebuild | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/dev-util/sasm/sasm-2.2.ebuild b/dev-util/sasm/sasm-2.2.ebuild deleted file mode 100644 index 023b24aab05..00000000000 --- a/dev-util/sasm/sasm-2.2.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit qt4-r2 - -if [[ ${PV} == 9999 ]]; then - EGIT_REPO_URI="https://github.com/Dman95/SASM.git" - SRC_URI="" - inherit git-r3 -else - SRC_URI="https://github.com/Dman95/SASM/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/SASM-${PV}" -fi - -DESCRIPTION="Simple crossplatform IDE for NASM assembly language" -HOMEPAGE="http://dman95.github.io/SASM/" - -LICENSE="GPL-3" -SLOT="0" -[[ ${PV} == 9999 ]] || \ -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=" - dev-qt/qtcore:4 - dev-qt/qtgui:4 -" -REPEND="${DEPEND} - dev-lang/nasm - sys-devel/gdb -"