From: "Jeroen Roovers" <jer@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libssh2/
Date: Mon, 18 Mar 2019 22:07:51 +0000 (UTC) [thread overview]
Message-ID: <1552946865.b63b26650737258c12032376fe9c80beb97b07be.jer@gentoo> (raw)
commit: b63b26650737258c12032376fe9c80beb97b07be
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 18 22:07:02 2019 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Mar 18 22:07:45 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b63b2665
net-libs/libssh2: Version 1.8.1
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Bug: https://bugs.gentoo.org/680904
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
net-libs/libssh2/Manifest | 1 +
net-libs/libssh2/libssh2-1.8.1.ebuild | 59 +++++++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/net-libs/libssh2/Manifest b/net-libs/libssh2/Manifest
index b0d04fff42b..d4134bebb47 100644
--- a/net-libs/libssh2/Manifest
+++ b/net-libs/libssh2/Manifest
@@ -1 +1,2 @@
DIST libssh2-1.8.0.tar.gz 854916 BLAKE2B 618c4a19789f2e5eda85852760dffff5672d420d2fa50393b05b7398a1913f74e5f6695f078628050ac9851965d6e45cf410b7c4590a8f18d67c718c829ab352 SHA512 289aa45c4f99653bebf5f99565fe9c519abc204feb2084b47b7cc3badc8bf4ecdedd49ea6acdce8eb902b3c00995d5f92a3ca77b2508b92f04ae0e7de7287558
+DIST libssh2-1.8.1.tar.gz 858088 BLAKE2B 4e7358c55355265ec3c7d7ce749b01d74bc1c37ba73467401c24f0abb2b22da12ba938393f3cf7278ef30900c0cfa700ab71c4fd32a1d41eaeb6fb47669c1ee1 SHA512 f09ad9ed04d25305b966e7f8c210082fe06c2b236dcd5018b009bd0bd6aaff123d16559d280892a5060760ed055ffe295bc02dc6e8dd1e7b8383c6c703f09290
diff --git a/net-libs/libssh2/libssh2-1.8.1.ebuild b/net-libs/libssh2/libssh2-1.8.1.ebuild
new file mode 100644
index 00000000000..75e39f52b68
--- /dev/null
+++ b/net-libs/libssh2/libssh2-1.8.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit cmake-multilib
+
+DESCRIPTION="Library implementing the SSH2 protocol"
+HOMEPAGE="https://www.libssh2.org"
+SRC_URI="https://www.${PN}.org/download/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
+IUSE="gcrypt libressl mbedtls zlib"
+REQUIRED_USE="
+ ?? ( gcrypt libressl mbedtls )
+"
+RESTRICT="test"
+
+RDEPEND="
+ !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0=[${MULTILIB_USEDEP}] )
+ gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}] )
+ libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
+ mbedtls? ( net-libs/mbedtls[${MULTILIB_USEDEP}] )
+ zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
+"
+DEPEND="
+ ${RDEPEND}
+"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-1.8.0-libgcrypt-prefix.patch
+ "${FILESDIR}"/${PN}-1.8.0-mansyntax_sh.patch
+ "${FILESDIR}"/${PN}-1.8.0-openssl11-memleak.patch
+ "${FILESDIR}"/${PN}-1.8.0-openssl11.patch
+)
+
+multilib_src_configure() {
+ local crypto_backend=OpenSSL
+ if use gcrypt; then
+ crypto_backend=Libgcrypt
+ elif use mbedtls; then
+ crypto_backend=mbedTLS
+ fi
+
+ local mycmakeargs=(
+ -DBUILD_SHARED_LIBS=ON
+ -DCRYPTO_BACKEND=${crypto_backend}
+ -DENABLE_ZLIB_COMPRESSION=$(usex zlib)
+ )
+ cmake-utils_src_configure
+}
+
+multilib_src_install_all() {
+ einstalldocs
+ find "${ED}" -name '*.la' -delete || die
+ mv "${ED}"/usr/share/doc/${PN}/* "${ED}"/usr/share/doc/${PF}/ || die
+ rm -r "${ED}"/usr/share/doc/${PN}/ || die
+}
next reply other threads:[~2019-03-18 22:07 UTC|newest]
Thread overview: 135+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-18 22:07 Jeroen Roovers [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-03 6:42 [gentoo-commits] repo/gentoo:master commit in: net-libs/libssh2/ Sam James
2024-11-02 11:58 Arthur Zamarin
2024-11-02 9:53 Arthur Zamarin
2024-11-02 7:52 Sam James
2024-11-02 7:52 Sam James
2024-11-02 7:52 Sam James
2024-11-02 7:52 Sam James
2024-10-16 12:15 Michał Górny
2024-10-13 20:39 Sam James
2024-09-24 11:52 Sam James
2024-09-21 11:39 Arthur Zamarin
2024-09-21 11:08 Arthur Zamarin
2024-09-21 10:41 Arthur Zamarin
2024-09-21 10:41 Arthur Zamarin
2024-09-06 14:39 Eli Schwartz
2023-11-22 12:07 Michał Górny
2023-11-22 12:07 Michał Górny
2023-11-22 12:07 Michał Górny
2023-11-22 12:07 Michał Górny
2023-08-30 2:34 Sam James
2023-08-30 2:34 Sam James
2023-08-30 2:08 Sam James
2023-08-30 2:08 Sam James
2023-08-30 2:08 Sam James
2023-08-01 7:17 Sam James
2023-06-29 6:18 Sam James
2023-06-28 21:23 Sam James
2023-06-28 21:14 Sam James
2023-06-28 21:14 Sam James
2023-06-28 21:14 Sam James
2023-06-28 21:14 Sam James
2023-05-31 3:36 Sam James
2023-05-31 3:34 Sam James
2023-03-22 18:53 Andreas Sturmlechner
2022-07-28 13:59 Sam James
2021-11-15 8:46 Michał Górny
2021-10-15 19:11 Sam James
2021-10-10 20:37 Sam James
2021-10-10 15:38 Agostino Sarubbo
2021-10-10 15:35 Agostino Sarubbo
2021-10-10 15:33 Agostino Sarubbo
2021-10-09 19:22 Sam James
2021-10-09 19:22 Sam James
2021-10-09 19:18 Sam James
2021-08-29 21:50 Michał Górny
2021-06-21 14:05 Marek Szuba
2021-05-02 10:16 Mikle Kolyada
2021-05-01 18:24 Sam James
2021-03-25 19:03 Ben Kohler
2020-11-23 8:01 Sergei Trofimovich
2020-11-17 19:17 Agostino Sarubbo
2020-11-17 19:10 Agostino Sarubbo
2020-11-17 19:05 Agostino Sarubbo
2020-11-17 18:55 Agostino Sarubbo
2020-11-17 18:49 Agostino Sarubbo
2020-11-16 22:16 Sam James
2020-11-16 2:55 Sam James
2020-11-16 2:55 Sam James
2020-10-15 19:27 Jeroen Roovers
2020-06-08 8:56 Michał Górny
2019-11-27 13:00 Mikle Kolyada
2019-11-27 13:00 Mikle Kolyada
2019-11-22 16:23 Matt Turner
2019-11-14 11:55 Agostino Sarubbo
2019-11-13 21:37 Sergei Trofimovich
2019-11-13 7:44 Agostino Sarubbo
2019-11-13 7:39 Agostino Sarubbo
2019-11-12 21:55 Aaron Bauman
2019-11-12 15:08 Agostino Sarubbo
2019-11-12 10:16 Agostino Sarubbo
2019-11-12 10:05 Agostino Sarubbo
2019-11-12 7:25 Sergei Trofimovich
2019-11-11 18:03 Michał Górny
2019-09-13 18:39 Mikle Kolyada
2019-09-13 18:39 Mikle Kolyada
2019-08-01 6:23 Sergei Trofimovich
2019-07-31 13:13 Agostino Sarubbo
2019-07-31 12:09 Agostino Sarubbo
2019-07-31 11:03 Agostino Sarubbo
2019-07-31 10:59 Agostino Sarubbo
2019-07-31 10:55 Agostino Sarubbo
2019-07-31 10:54 Agostino Sarubbo
2019-07-31 9:04 Agostino Sarubbo
2019-07-29 22:50 Aaron Bauman
2019-07-29 19:23 Sergei Trofimovich
2019-06-04 18:51 Agostino Sarubbo
2019-05-26 7:04 Sergei Trofimovich
2019-05-14 8:08 Sergei Trofimovich
2019-05-13 19:31 Aaron Bauman
2019-05-13 9:52 Mikle Kolyada
2019-05-13 1:41 Thomas Deutschmann
2019-05-12 22:03 Sergei Trofimovich
2019-05-12 21:57 Sergei Trofimovich
2019-05-12 21:48 Sergei Trofimovich
2019-04-27 20:28 David Seifert
2019-03-26 7:39 Jeroen Roovers
2019-03-18 22:20 Jeroen Roovers
2018-10-19 5:55 Fabian Groffen
2018-10-05 18:21 Jeroen Roovers
2018-10-02 10:18 Jeroen Roovers
2018-10-01 11:46 Jeroen Roovers
2018-09-06 21:22 Michał Górny
2018-08-04 1:22 Mikle Kolyada
2018-06-30 18:16 Mikle Kolyada
2018-06-25 13:36 Tobias Klausmann
2018-06-18 20:21 Tobias Klausmann
2018-05-31 8:13 Sergei Trofimovich
2018-05-31 7:50 Sergei Trofimovich
2018-05-29 20:05 Markus Meier
2018-05-29 11:17 Thomas Deutschmann
2018-05-29 8:11 Mikle Kolyada
2018-05-28 15:19 Mart Raudsepp
2018-05-06 14:16 Aaron Bauman
2018-01-12 4:10 Mike Frysinger
2018-01-02 6:19 Michał Górny
2017-08-24 7:09 Michał Górny
2017-08-15 6:10 Jeroen Roovers
2017-07-23 12:14 Manuel Rüger
2017-07-20 14:34 Manuel Rüger
2017-05-29 12:06 Manuel Rüger
2017-05-19 11:16 Jeroen Roovers
2016-11-14 19:58 Jeroen Roovers
2016-10-30 8:30 Jeroen Roovers
2016-03-26 6:55 Jeroen Roovers
2016-03-19 11:35 Agostino Sarubbo
2016-03-16 11:51 Agostino Sarubbo
2016-03-15 20:50 Tobias Klausmann
2016-03-15 16:39 Agostino Sarubbo
2016-03-13 12:28 Markus Meier
2016-03-02 13:58 Agostino Sarubbo
2016-02-27 12:40 Jeroen Roovers
2016-02-27 12:13 Jeroen Roovers
2016-02-27 7:27 Jeroen Roovers
2015-09-20 16:39 Julian Ospald
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1552946865.b63b26650737258c12032376fe9c80beb97b07be.jer@gentoo \
--to=jer@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox