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 8649F138359 for ; Wed, 12 Aug 2020 07:46:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94431E091F; Wed, 12 Aug 2020 07:45:59 +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 7ACF6E091F for ; Wed, 12 Aug 2020 07:45:59 +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 7250034F32B for ; Wed, 12 Aug 2020 07:45:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DFFE32D2 for ; Wed, 12 Aug 2020 07:45:56 +0000 (UTC) From: "Azael Reyes" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Azael Reyes" Message-ID: <1597218335.6b97d8dd5066c27eed1dd19fef10d77a8b53b4f1.AzaelReyes@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/octetos-coreutils/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/octetos-coreutils/octetos-coreutils-0.4.0_alpha2.ebuild X-VCS-Directories: dev-libs/octetos-coreutils/ X-VCS-Committer: AzaelReyes X-VCS-Committer-Name: Azael Reyes X-VCS-Revision: 6b97d8dd5066c27eed1dd19fef10d77a8b53b4f1 X-VCS-Branch: dev Date: Wed, 12 Aug 2020 07:45:56 +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: 7ec7c8de-74cd-4b60-969f-fb07a262d7e2 X-Archives-Hash: e4270e1cdba843a913a2e7983408cb9f commit: 6b97d8dd5066c27eed1dd19fef10d77a8b53b4f1 Author: Azael Reyes gmail com> AuthorDate: Wed Aug 12 07:45:35 2020 +0000 Commit: Azael Reyes gmail com> CommitDate: Wed Aug 12 07:45:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6b97d8dd dev-libs/octetos-coreutils: update info package. Signed-off-by: Azael Reyes gmail.com> Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Azael Reyes gmail.com> .../octetos-coreutils-0.4.0_alpha2.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-libs/octetos-coreutils/octetos-coreutils-0.4.0_alpha2.ebuild b/dev-libs/octetos-coreutils/octetos-coreutils-0.4.0_alpha2.ebuild new file mode 100644 index 0000000..b695fc9 --- /dev/null +++ b/dev-libs/octetos-coreutils/octetos-coreutils-0.4.0_alpha2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +MYPV="${PV/_alpha2/-alpha.1}" +MYP="${PN}-${MYPV}" + +DESCRIPTION="Similar to coreutils but is a C ++ API." +HOMEPAGE="https://github.com/azaeldevel/octetos-coreutils" +SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="" + +DEPEND="dev-libs/octetos-core" +RDEPEND="${DEPEND}" +BDEPEND="dev-util/cunit" + +S="${WORKDIR}/${MYP}" + +src_prepare() { + default + eautoreconf -fi +} + +src_configure() { + econf +}