forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-scheme/guile-ssh: bump to 0.16.4
Signed-off-by: Maciej Barć <[email protected]>
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST guile-ssh-0.16.3.tar.gz 524546 BLAKE2B e8cbe500493d80962f31b1d9ab97f5dc45c2e3612f419244528676b6cc3cf517a7dd84022b84356b0da456cdca404cca3ee25bef1762da9f0e126e086f34a721 SHA512 7b66dd5a29d47f3f7beaefb6576f74f62fe30736ddf97870a72612b44a608d61edd5ba9bc520e577b6f19a9de9044743e880601bae26b9645dafbef2c3134609 | ||
DIST guile-ssh-0.16.4.tar.gz 532702 BLAKE2B 47dd2fde37aa2047d836f464d567736208bfed8afee668bf76d35910a866b1c3e869f346b89b4fce7b747d5806a004933cd673851015f8d76afc61c06a398ad2 SHA512 1c70d4885a6f821c3018650d2537316de981ad5f76eadc51ed2c5dd51225e39e67ad1b979769b1b81a0f061ddeecd11d878b3844d9f8e78fdd0915e2f1a28838 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# 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}"/${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 | ||
|
||
# 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" | ||
} |