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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F1D4B1581F3 for ; Sat, 30 Nov 2024 13:53:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55CDBE0829; Sat, 30 Nov 2024 13:52:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 38A73E0829 for ; Sat, 30 Nov 2024 13:52:59 +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 57440342FF0 for ; Sat, 30 Nov 2024 13:52:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD60D214E for ; Sat, 30 Nov 2024 13:52:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1732974680.93afac6eebce9db16c4ad7d6a7e3f5b296d0ada5.sam@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 X-VCS-Directories: dev-scheme/guile-ssh/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 93afac6eebce9db16c4ad7d6a7e3f5b296d0ada5 X-VCS-Branch: master Date: Sat, 30 Nov 2024 13:52: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: c93d737a-8c89-488d-8ca9-65fb343f12af X-Archives-Hash: 91689d10775f2712d17e48bf3d13be0e commit: 93afac6eebce9db16c4ad7d6a7e3f5b296d0ada5 Author: Sam James gentoo org> AuthorDate: Sat Nov 30 13:47:39 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 30 13:51:20 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93afac6e dev-scheme/guile-ssh: drop 0.16.4-r1 Signed-off-by: Sam James gentoo.org> dev-scheme/guile-ssh/guile-ssh-0.16.4-r1.ebuild | 62 ------------------------- 1 file changed, 62 deletions(-) diff --git a/dev-scheme/guile-ssh/guile-ssh-0.16.4-r1.ebuild b/dev-scheme/guile-ssh/guile-ssh-0.16.4-r1.ebuild deleted file mode 100644 index 5a331431ce4e..000000000000 --- a/dev-scheme/guile-ssh/guile-ssh-0.16.4-r1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -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/" - -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" - -RDEPEND=" - >=dev-scheme/guile-2.0.0:= - net-libs/libssh:0=[server,sftp] -" -DEPEND=" - ${RDEPEND} -" -BDEPEND=" - virtual/pkgconfig -" - -DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) -PATCHES=( - "${FILESDIR}/${PN}-0.16.2-tests.patch" -) - -# guile generates ELF files without use of C or machine code -# It's a portage's false positive. bug #677600 -QA_PREBUILT='*[.]go' - -src_prepare() { - default - eautoreconf - - # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112 - find "${S}" -name "*.scm" -exec touch {} + || die -} - -src_install() { - default - - find "${ED}" -name "*.la" -delete || die - - # Workaround llvm-strip problem of mangling guile ELF debug - # sections: https://bugs.gentoo.org/905898 - dostrip -x "/usr/$(get_libdir)/guile" -}