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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E2920158041 for ; Wed, 28 Feb 2024 21:24:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFF08E2A1F; Wed, 28 Feb 2024 21:24:57 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BABA5E2A1E for ; Wed, 28 Feb 2024 21:24:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0DCA8343029 for ; Wed, 28 Feb 2024 21:24:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D14614ED for ; Wed, 28 Feb 2024 21:24:54 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1709155452.f129b754cc1545f29bfeca95272ca78307216987.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-ssh/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/guile-ssh/guile-ssh-0.16.4-r1.ebuild dev-scheme/guile-ssh/guile-ssh-0.16.4.ebuild X-VCS-Directories: dev-scheme/guile-ssh/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: f129b754cc1545f29bfeca95272ca78307216987 X-VCS-Branch: master Date: Wed, 28 Feb 2024 21:24:54 +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: 44b85a04-019d-41b8-b54c-c10f3fdfcc53 X-Archives-Hash: 190012898764d542b1ae8e2e898e4516 commit: f129b754cc1545f29bfeca95272ca78307216987 Author: Maciej Barć gentoo org> AuthorDate: Wed Feb 28 20:53:14 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed Feb 28 21:24:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f129b754 dev-scheme/guile-ssh: add missing pkgconfig dependencies as also declared inside this pkg guix.scm Signed-off-by: Maciej Barć gentoo.org> ...sh-0.16.4.ebuild => guile-ssh-0.16.4-r1.ebuild} | 28 +++++++++++++++------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/dev-scheme/guile-ssh/guile-ssh-0.16.4.ebuild b/dev-scheme/guile-ssh/guile-ssh-0.16.4-r1.ebuild similarity index 71% rename from dev-scheme/guile-ssh/guile-ssh-0.16.4.ebuild rename to dev-scheme/guile-ssh/guile-ssh-0.16.4-r1.ebuild index bda391d671fb..5a331431ce4e 100644 --- a/dev-scheme/guile-ssh/guile-ssh-0.16.4.ebuild +++ b/dev-scheme/guile-ssh/guile-ssh-0.16.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -8,22 +8,35 @@ inherit autotools DESCRIPTION="Library providing access to the SSH protocol for GNU Guile" HOMEPAGE="https://memory-heap.org/~avp/projects/guile-ssh/ https://github.com/artyom-poptsov/guile-ssh/" -SRC_URI="https://github.com/artyom-poptsov/${PN}/archive/v${PV}.tar.gz - -> ${P}.tar.gz" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/artyom-poptsov/${PN}.git" +else + SRC_URI="https://github.com/artyom-poptsov/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + + KEYWORDS="~amd64 ~x86" +fi LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64 ~x86" RDEPEND=" >=dev-scheme/guile-2.0.0:= net-libs/libssh:0=[server,sftp] " -DEPEND="${RDEPEND}" +DEPEND=" + ${RDEPEND} +" +BDEPEND=" + virtual/pkgconfig +" DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) PATCHES=( - "${FILESDIR}"/${PN}-0.16.2-tests.patch + "${FILESDIR}/${PN}-0.16.2-tests.patch" ) # guile generates ELF files without use of C or machine code @@ -32,11 +45,10 @@ QA_PREBUILT='*[.]go' src_prepare() { default + eautoreconf # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112 find "${S}" -name "*.scm" -exec touch {} + || die - - eautoreconf } src_install() {