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 29DA51396D0 for ; Thu, 17 Aug 2017 08:37:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 924471FC062; Thu, 17 Aug 2017 08:36:54 +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 464741FC052 for ; Thu, 17 Aug 2017 08:36:54 +0000 (UTC) Received: from localhost.localdomain (d202-252.icpnet.pl [109.173.202.252]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: mgorny) by smtp.gentoo.org (Postfix) with ESMTPSA id 537163418D6; Thu, 17 Aug 2017 08:36:51 +0000 (UTC) From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= To: gentoo-dev@lists.gentoo.org Cc: cluster@gentoo.org, robbat2@gentoo.org, toolchain@gentoo.org, suse@gentoo.org, llvm@gentoo.org, =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Subject: [gentoo-dev] [PATCH 01/12] dev-util/shadowman: New package Date: Thu, 17 Aug 2017 10:36:30 +0200 Message-Id: <20170817083641.3507-2-mgorny@gentoo.org> X-Mailer: git-send-email 2.14.1 In-Reply-To: <20170817083641.3507-1-mgorny@gentoo.org> References: <20170817083641.3507-1-mgorny@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Archives-Salt: bff5d377-b17a-4c7d-83e2-e753aca4ed3f X-Archives-Hash: 915c84a61a85a2d7e7b65687572d9856 --- dev-util/shadowman/metadata.xml | 8 ++++++++ dev-util/shadowman/shadowman-9999.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 dev-util/shadowman/metadata.xml create mode 100644 dev-util/shadowman/shadowman-9999.ebuild diff --git a/dev-util/shadowman/metadata.xml b/dev-util/shadowman/metadata.xml new file mode 100644 index 000000000000..0319eec4c8be --- /dev/null +++ b/dev-util/shadowman/metadata.xml @@ -0,0 +1,8 @@ + + + + + mgorny@gentoo.org + Michał Górny + + diff --git a/dev-util/shadowman/shadowman-9999.ebuild b/dev-util/shadowman/shadowman-9999.ebuild new file mode 100644 index 000000000000..990b92e51623 --- /dev/null +++ b/dev-util/shadowman/shadowman-9999.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGIT_REPO_URI="https://github.com/mgorny/shadowman" +inherit git-r3 + +DESCRIPTION="Unified compiler shadow link directory updater" +HOMEPAGE="https://github.com/mgorny/shadowman" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +# note: only for testing +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +RDEPEND="app-admin/eselect" +DEPEND="${RDEPEND}" + +src_install() { + # tool modules are split into their respective packages + emake DESTDIR="${D}" install \ + INSTALL_MODULES_TOOL="" + keepdir /usr/share/shadowman/tools +} -- 2.14.1