summaryrefslogtreecommitdiff
path: root/dev-scheme/guile-ssh/guile-ssh-0.16.2.ebuild
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2023-10-01 17:21:56 +0200
committerMaciej Barć <xgqt@gentoo.org>2023-10-01 17:37:31 +0200
commit9ab9a4cfc75ab56d738c2202f4a74f115ec868af (patch)
treeec51c72da56e118068a82726b8ebdd5a13916ae7 /dev-scheme/guile-ssh/guile-ssh-0.16.2.ebuild
parent918a7ef878d82f8519e1048e78ce0541dddcf6d4 (diff)
downloadgentoo-9ab9a4cfc75ab56d738c2202f4a74f115ec868af.tar.gz
gentoo-9ab9a4cfc75ab56d738c2202f4a74f115ec868af.tar.bz2
gentoo-9ab9a4cfc75ab56d738c2202f4a74f115ec868af.zip
dev-scheme/guile-ssh: drop old 0.16.2
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-scheme/guile-ssh/guile-ssh-0.16.2.ebuild')
-rw-r--r--dev-scheme/guile-ssh/guile-ssh-0.16.2.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-scheme/guile-ssh/guile-ssh-0.16.2.ebuild b/dev-scheme/guile-ssh/guile-ssh-0.16.2.ebuild
deleted file mode 100644
index 82787f9347f0..000000000000
--- a/dev-scheme/guile-ssh/guile-ssh-0.16.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2023 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/"
-SRC_URI="https://github.com/artyom-poptsov/${PN}/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- >=dev-scheme/guile-2.0.0:=
- net-libs/libssh:0=[server,sftp]
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
-PATCHES=(
- "${FILESDIR}"/${P}-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
-
- # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
- find "${S}" -name "*.scm" -exec touch {} + || die
-
- eautoreconf
-}
-
-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"
-}