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 C5DED1382C5 for ; Sun, 17 Jan 2021 01:28:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0319CE07FA; Sun, 17 Jan 2021 01:28:37 +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 D9EDDE07FA for ; Sun, 17 Jan 2021 01:28:36 +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 B94BF340F55 for ; Sun, 17 Jan 2021 01:28:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 288754B for ; Sun, 17 Jan 2021 01:28:34 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1610846912.3dd9b5b6123f1eac791eb5d95c57a5e834c9fa00.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/slibtool/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/slibtool/slibtool-9999.ebuild X-VCS-Directories: sys-devel/slibtool/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 3dd9b5b6123f1eac791eb5d95c57a5e834c9fa00 X-VCS-Branch: master Date: Sun, 17 Jan 2021 01:28:34 +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: d97743fd-f548-4e25-bbd8-10572ed59d88 X-Archives-Hash: 21a469393943ae3795cb6e0e79d9ab35 commit: 3dd9b5b6123f1eac791eb5d95c57a5e834c9fa00 Author: Lars Wendler gentoo org> AuthorDate: Sun Jan 17 01:28:06 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sun Jan 17 01:28:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dd9b5b6 sys-devel/slibtool: Added live ebuild as requested by oreba in IRC Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> sys-devel/slibtool/slibtool-9999.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/sys-devel/slibtool/slibtool-9999.ebuild b/sys-devel/slibtool/slibtool-9999.ebuild new file mode 100644 index 00000000000..b0b74aa5e38 --- /dev/null +++ b/sys-devel/slibtool/slibtool-9999.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A skinny libtool implementation, written in C" +HOMEPAGE="https://git.midipix.org/cgit.cgi/slibtool" +if [[ "${PV}" == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://git.midipix.org/slibtool" +else + SRC_URI="https://git.midipix.org/cgit.cgi/${PN}/snapshot/${P}.tar.xz" + KEYWORDS="~amd64 ~arm" +fi +LICENSE="MIT" +SLOT="0" + +src_configure() { + # custom configure script (not generated by autoconf) + ./configure --host=${CHOST} --prefix="${EPREFIX}"/usr || die +}