summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2009-11-12 18:45:02 +0000
committerPeter Volkov <pva@gentoo.org>2009-11-12 18:45:02 +0000
commitce16dd26215168b327a5d0d373aeca694a86a44b (patch)
tree2714c52edab7fc3075d05a476c52c4dec7bc729c /net-libs/libssh
parentversion bump (diff)
downloadgentoo-2-ce16dd26215168b327a5d0d373aeca694a86a44b.tar.gz
gentoo-2-ce16dd26215168b327a5d0d373aeca694a86a44b.tar.bz2
gentoo-2-ce16dd26215168b327a5d0d373aeca694a86a44b.zip
Dropped vulnerable version, thank Alex Legler for request.
(Portage version: 2.1.7.4/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/libssh')
-rw-r--r--net-libs/libssh/ChangeLog6
-rw-r--r--net-libs/libssh/libssh-0.1.1.ebuild27
-rw-r--r--net-libs/libssh/libssh-0.2.ebuild43
-rw-r--r--net-libs/libssh/libssh-0.3.0.ebuild42
-rw-r--r--net-libs/libssh/libssh-0.3.3.ebuild54
5 files changed, 5 insertions, 167 deletions
diff --git a/net-libs/libssh/ChangeLog b/net-libs/libssh/ChangeLog
index 75bfcfb6f2b0..33f80ae71666 100644
--- a/net-libs/libssh/ChangeLog
+++ b/net-libs/libssh/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/libssh
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/ChangeLog,v 1.17 2009/10/24 12:43:58 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/ChangeLog,v 1.18 2009/11/12 18:45:02 pva Exp $
+
+ 12 Nov 2009; Peter Volkov <pva@gentoo.org> -libssh-0.1.1.ebuild,
+ -libssh-0.2.ebuild, -libssh-0.3.0.ebuild, -libssh-0.3.3.ebuild:
+ Dropped vulnerable version, thank Alex Legler for request.
24 Oct 2009; nixnut <nixnut@gentoo.org> libssh-0.3.4.ebuild:
ppc stable #286860
diff --git a/net-libs/libssh/libssh-0.1.1.ebuild b/net-libs/libssh/libssh-0.1.1.ebuild
deleted file mode 100644
index 50b14232d3cc..000000000000
--- a/net-libs/libssh/libssh-0.1.1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/libssh-0.1.1.ebuild,v 1.1 2009/05/25 21:00:09 pva Exp $
-
-# Do not remove this ebuild until sysload depends on it.
-inherit versionator
-
-MY_P=${PN}-$(replace_version_separator 2 '')
-DESCRIPTION="access a working SSH implementation by means of a library"
-HOMEPAGE="http://0xbadc0de.be/?part=libssh"
-SRC_URI="http://www.0xbadc0de.be/libssh/${MY_P}.tgz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ppc ~s390 x86"
-IUSE=""
-
-DEPEND="sys-libs/zlib
- dev-libs/openssl"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_install() {
- emake prefix="${D}/usr" install || die "make install failed"
- chmod a-x "${D}"/usr/include/libssh/*
-}
diff --git a/net-libs/libssh/libssh-0.2.ebuild b/net-libs/libssh/libssh-0.2.ebuild
deleted file mode 100644
index f32530eb84cc..000000000000
--- a/net-libs/libssh/libssh-0.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/libssh-0.2.ebuild,v 1.2 2009/05/25 21:00:09 pva Exp $
-
-inherit eutils
-
-DESCRIPTION="Access a working SSH implementation by means of a library"
-HOMEPAGE="http://0xbadc0de.be/?part=libssh"
-SRC_URI="http://www.0xbadc0de.be/libssh/${P}.tgz"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~s390 ~x86"
-IUSE="crypt examples"
-
-DEPEND="sys-libs/zlib
- !crypt? ( dev-libs/openssl )
- crypt? ( dev-libs/libgcrypt )"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/makefile_no-examples.diff"
-}
-
-src_compile() {
- econf \
- $(use_with crypt) \
- --disable-ssh1
-
- emake || die "emake failed"
-}
-
-src_install() {
- chmod a-x "${D}"/usr/include/libssh/*
- emake DESTDIR="${D}" install || die "install failed"
- rm "${D}"/usr/include/libssh/ssh1.h
- dodoc README CHANGELOG
- if use examples ; then
- insinto /usr/share/doc/${PF}
- doins sample.c samplesshd.c
- fi
-}
diff --git a/net-libs/libssh/libssh-0.3.0.ebuild b/net-libs/libssh/libssh-0.3.0.ebuild
deleted file mode 100644
index 7eae9d89e965..000000000000
--- a/net-libs/libssh/libssh-0.3.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/libssh-0.3.0.ebuild,v 1.1 2009/05/25 21:00:09 pva Exp $
-
-# Maintainer: check IUSE-defaults at DefineOptions.cmake
-EAPI="2"
-inherit eutils cmake-utils
-
-DESCRIPTION="Access a working SSH implementation by means of a library"
-HOMEPAGE="http://www.libssh.org/"
-SRC_URI="http://www.libssh.org/files/${P}.tar.gz"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~s390 ~x86"
-IUSE="gcrypt examples +sftp ssh1 server zlib"
-
-DEPEND="zlib? ( >=sys-libs/zlib-1.2 )
- !gcrypt? ( >=dev-libs/openssl-0.9.8 )
- gcrypt? ( >=dev-libs/libgcrypt-1.4 )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-automagic-crypt.patch"
-}
-
-src_configure() {
- local mycmakeargs="$(cmake-utils_use_with gcrypt GCRYPT
- cmake-utils_use_with zlib LIBZ
- cmake-utils_use_with sftp SFTP
- cmake-utils_use_with ssh1 SSH1
- cmake-utils_use_with server SERVER)"
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- dodoc AUTHORS README ChangeLog || die
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins sample.c samplesshd.c
- fi
-}
diff --git a/net-libs/libssh/libssh-0.3.3.ebuild b/net-libs/libssh/libssh-0.3.3.ebuild
deleted file mode 100644
index eaf9068b9120..000000000000
--- a/net-libs/libssh/libssh-0.3.3.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/libssh-0.3.3.ebuild,v 1.1 2009/08/26 02:34:16 jer Exp $
-
-# Maintainer: check IUSE-defaults at DefineOptions.cmake
-
-EAPI="2"
-
-inherit eutils cmake-utils
-
-DESCRIPTION="Access a working SSH implementation by means of a library"
-HOMEPAGE="http://www.libssh.org/"
-SRC_URI="http://www.libssh.org/files/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~ppc ~s390 ~x86"
-SLOT="0"
-IUSE="debug gcrypt examples +sftp ssh1 server static-libs zlib"
-
-DEPEND="
- zlib? ( >=sys-libs/zlib-1.2 )
- !gcrypt? ( >=dev-libs/openssl-0.9.8 )
- gcrypt? ( >=dev-libs/libgcrypt-1.4 )
-"
-RDEPEND="${DEPEND}"
-
-DOCS="AUTHORS README ChangeLog"
-
-PATCHES=(
- "${FILESDIR}/${PN}-0.3.0-automagic-crypt.patch"
-)
-
-src_configure() {
- mycmakeargs="${mycmakeargs}
- $(cmake-utils_use_with debug DEBUG_CRYPTO)
- $(cmake-utils_use_with gcrypt)
- $(cmake-utils_use_with zlib LIBZ)
- $(cmake-utils_use_with sftp)
- $(cmake-utils_use_with ssh1)
- $(cmake-utils_use_with server)
- $(cmake-utils_use_with static-libs STATIC_LIB)
- "
-
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
-
- if use examples; then
- insinto "${ROOT}"usr/share/doc/"${PF}"/examples
- doins sample.c samplesshd.c
- fi
-}