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 A81E91382C5 for ; Mon, 4 Jan 2021 21:41:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DEE3AE088F; Mon, 4 Jan 2021 21:41:16 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 B564EE088F for ; Mon, 4 Jan 2021 21:41:16 +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 23149340DE0 for ; Mon, 4 Jan 2021 21:41:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8884B332 for ; Mon, 4 Jan 2021 21:41:13 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1609796449.9ffdbddce82530f122c8224b9438611695bcbc5f.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/monero/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-p2p/monero/monero-0.17.1.7.ebuild net-p2p/monero/monero-0.17.1.8.ebuild net-p2p/monero/monero-9999.ebuild X-VCS-Directories: net-p2p/monero/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: 9ffdbddce82530f122c8224b9438611695bcbc5f X-VCS-Branch: dev Date: Mon, 4 Jan 2021 21:41:13 +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: 31b71ca1-3980-47ca-95bf-1a8fbf8a071c X-Archives-Hash: 44619ef2afa2f8d648b602128c909bef commit: 9ffdbddce82530f122c8224b9438611695bcbc5f Author: Theo Anderson posteo de> AuthorDate: Mon Jan 4 21:40:49 2021 +0000 Commit: Theo Anderson posteo de> CommitDate: Mon Jan 4 21:40:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9ffdbddc net-p2p/monero: add live ebuild https://github.com/gentoo-monero/gentoo-monero/pull/12 Co-authored-by: William Batista protonmail.ch> Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson posteo.de> net-p2p/monero/monero-0.17.1.7.ebuild | 16 +++++++++++----- net-p2p/monero/monero-0.17.1.8.ebuild | 12 +++++++++--- .../{monero-0.17.1.7.ebuild => monero-9999.ebuild} | 18 +++++++++++------- 3 files changed, 31 insertions(+), 15 deletions(-) diff --git a/net-p2p/monero/monero-0.17.1.7.ebuild b/net-p2p/monero/monero-0.17.1.7.ebuild index 5cfdcb4d..fb62cb79 100644 --- a/net-p2p/monero/monero-0.17.1.7.ebuild +++ b/net-p2p/monero/monero-0.17.1.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -7,11 +7,17 @@ inherit cmake systemd DESCRIPTION="The secure, private, untraceable cryptocurrency" HOMEPAGE="https://github.com/monero-project/monero" -SRC_URI="https://github.com/monero-project/monero/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/monero-project/monero.git" +else + SRC_URI="https://github.com/monero-project/monero/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi LICENSE="BSD MIT" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" IUSE="+daemon libressl readline +tools +wallet-cli +wallet-rpc" REQUIRED_USE="|| ( daemon tools wallet-cli wallet-rpc )" RESTRICT="test" @@ -35,8 +41,8 @@ RDEPEND="${DEPEND}" BDEPEND="virtual/pkgconfig" PATCHES=( - "${FILESDIR}/${P}-linkjobs.patch" - "${FILESDIR}/${P}-unbundle-dependencies.patch" + "${FILESDIR}/${PN}-0.17.1.7-linkjobs.patch" + "${FILESDIR}/${PN}-0.17.1.7-unbundle-dependencies.patch" ) src_configure() { diff --git a/net-p2p/monero/monero-0.17.1.8.ebuild b/net-p2p/monero/monero-0.17.1.8.ebuild index 29d4250f..fb62cb79 100644 --- a/net-p2p/monero/monero-0.17.1.8.ebuild +++ b/net-p2p/monero/monero-0.17.1.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -7,11 +7,17 @@ inherit cmake systemd DESCRIPTION="The secure, private, untraceable cryptocurrency" HOMEPAGE="https://github.com/monero-project/monero" -SRC_URI="https://github.com/monero-project/monero/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/monero-project/monero.git" +else + SRC_URI="https://github.com/monero-project/monero/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi LICENSE="BSD MIT" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" IUSE="+daemon libressl readline +tools +wallet-cli +wallet-rpc" REQUIRED_USE="|| ( daemon tools wallet-cli wallet-rpc )" RESTRICT="test" diff --git a/net-p2p/monero/monero-0.17.1.7.ebuild b/net-p2p/monero/monero-9999.ebuild similarity index 87% copy from net-p2p/monero/monero-0.17.1.7.ebuild copy to net-p2p/monero/monero-9999.ebuild index 5cfdcb4d..528e57f4 100644 --- a/net-p2p/monero/monero-0.17.1.7.ebuild +++ b/net-p2p/monero/monero-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -7,11 +7,18 @@ inherit cmake systemd DESCRIPTION="The secure, private, untraceable cryptocurrency" HOMEPAGE="https://github.com/monero-project/monero" -SRC_URI="https://github.com/monero-project/monero/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/monero-project/monero.git" + EGIT_SUBMODULES=() +else + SRC_URI="https://github.com/monero-project/monero/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi LICENSE="BSD MIT" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" IUSE="+daemon libressl readline +tools +wallet-cli +wallet-rpc" REQUIRED_USE="|| ( daemon tools wallet-cli wallet-rpc )" RESTRICT="test" @@ -34,10 +41,7 @@ DEPEND=" RDEPEND="${DEPEND}" BDEPEND="virtual/pkgconfig" -PATCHES=( - "${FILESDIR}/${P}-linkjobs.patch" - "${FILESDIR}/${P}-unbundle-dependencies.patch" -) +PATCHES=( "${FILESDIR}/${PN}-0.17.1.7-unbundle-dependencies.patch" ) src_configure() { local mycmakeargs=(