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 CE880139695 for ; Mon, 13 Feb 2017 13:01:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A261E0C32; Mon, 13 Feb 2017 13:01:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 755F7E0C32 for ; Mon, 13 Feb 2017 13:01:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E9F6341026 for ; Mon, 13 Feb 2017 13:01:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18E834669 for ; Mon, 13 Feb 2017 13:00:58 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1486990848.75c0151cca5479de4ddc11aa2a9296cd94c4820b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/sprop/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/sprop/sprop-0.1.ebuild X-VCS-Directories: x11-misc/sprop/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 75c0151cca5479de4ddc11aa2a9296cd94c4820b X-VCS-Branch: master Date: Mon, 13 Feb 2017 13:00:58 +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: d9891ab0-3f5e-4f00-beca-71ba12648f32 X-Archives-Hash: 511d3b580dba37767606e047bb36ce7b commit: 75c0151cca5479de4ddc11aa2a9296cd94c4820b Author: Harri Nieminen gmail com> AuthorDate: Mon Feb 13 10:19:18 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 13 13:00:48 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75c0151c x11-misc/sprop: Drop old Package-Manager: Portage-2.3.3, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/3945 x11-misc/sprop/sprop-0.1.ebuild | 43 ----------------------------------------- 1 file changed, 43 deletions(-) diff --git a/x11-misc/sprop/sprop-0.1.ebuild b/x11-misc/sprop/sprop-0.1.ebuild deleted file mode 100644 index 655dcb7bc8..0000000000 --- a/x11-misc/sprop/sprop-0.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 -inherit toolchain-funcs - -DESCRIPTION="a simple X property utility" -HOMEPAGE="http://tools.suckless.org/x/sprop" -SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=" - x11-libs/libX11 -" -DEPEND=" - ${RDEPEND} - x11-proto/xproto -" -src_prepare() { - sed -i \ - -e '/^CC/d' \ - -e '/^CFLAGS/s| =| +=|;s| -Os||g' \ - -e '/^LDFLAGS/s|= -s|+=|g' \ - config.mk || die - - sed -i \ - -e 's|@${CC}|$(CC)|g' \ - Makefile || die - - tc-export CC -} - -src_compile() { emake sprop; } - -src_install() { - dobin ${PN} - doman ${PN}.1 -}