net-libs/libiscsi: Drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6
This commit is contained in:
Pacho Ramos
2018-03-17 10:15:03 +01:00
parent e1e3a41b3a
commit f4f8ec0112
4 changed files with 0 additions and 111 deletions

View File

@@ -1,3 +1 @@
DIST libiscsi-1.15.0.tar.gz 223380 BLAKE2B b5658422d51d51c8e8ec7294e627b89112a83f7448dc8eca2599befd5fca15995ea45dd011c6073d875f9e30be6daccb7ee222f785319a628c105a34857ff6c6 SHA512 22c566d4cf10454b9c6208d64f5dab8e32806a5036cd328f8b2d8bf14f9e9c2d519db8df4fc8884f468bad27d645ccf719502d49f6937eace88f590946366e06
DIST libiscsi-1.18.0.tar.gz 271603 BLAKE2B 9e059d57ce231ba1699927c54ee7d7bda69274c6361fc0870e8a46eb032d46a5029080eab8061f2e1d06b41f0e98606aeb2444d3deb6da2a188dd6882196512c SHA512 9869fd86f8ba237d71256b16d0f94ef69fb67fac315bb7a596c4d8d6ed3abba710edf9b5f5a27f5777f7b5d2feb33c09764c27a4e6c56e38dd2566836cffe36e
DIST libiscsi-1.9.0.tar.gz 182123 BLAKE2B 258ba352fe2ecc52254efdc0c4c054d9a08b4aaaf7955e0e5730ce7e9bc823b4a4b0d57811bf64315dd6b8d9135d0c3797ee72b5fcbf476febad7f30ceee495f SHA512 cf88c0f32a21193499720d24f215fb02e7a46ef07999ef59cdad9cad14f92399b3d2e46e8e6f54574dc77225a5b437608216da242971e0d6f35c71830371415a

View File

@@ -1,35 +0,0 @@
From 2d43a056a9e7b57bc03d580a850a8dca534e61d5 Mon Sep 17 00:00:00 2001
From: Doug Goldstein <doug.goldstein@pikewerks.com>
Date: Wed, 5 Jun 2013 14:28:48 -0500
Subject: [PATCH] Allow users to disable -Werror at configure time
Some users and distro packagers might not want to build with -Werror,
this allows them to disable using -Werror but enables it in the default
case so as to maintain the current behavior.
---
configure.ac | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 9d06e3a..6dce230 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,8 +11,14 @@ AC_CANONICAL_HOST
AM_CONDITIONAL(LD_ISCSI,
[expr "$host_os" : linux > /dev/null 2>&1])
+AC_ARG_ENABLE([werror], [AS_HELP_STRING([--disable-werror],
+ [Disables building with -Werror by default])])
+
if test "$ac_cv_prog_gcc" = yes; then
- WARN_CFLAGS="-Wall -W -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-align -Wwrite-strings -Werror -Wno-strict-aliasing"
+ WARN_CFLAGS="-Wall -W -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-align -Wwrite-strings -Wno-strict-aliasing"
+ if test "x$enable_werror" != "xno"; then
+ WARN_CFLAGS="$WARN_CFLAGS -Werror"
+ fi
fi
AC_SUBST(WARN_CFLAGS)
--
1.8.2.1

View File

@@ -1,35 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools eutils
DESCRIPTION="iscsi client library and utilities"
HOMEPAGE="https://github.com/sahlberg/libiscsi"
SRC_URI="https://github.com/sahlberg/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2 LGPL-2"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc64 ~x86"
IUSE="static-libs"
RDEPEND="dev-libs/libgcrypt:0="
DEPEND="${RDEPEND}"
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
--enable-manpages \
--disable-werror \
$(use_enable static-libs static)
}
src_install() {
default
prune_libtool_files
}

View File

@@ -1,39 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
AUTOTOOLS_AUTORECONF="1"
inherit eutils autotools-utils
if [[ ${PV} = *9999* ]]; then
inherit git-2
SRC_URI=""
EGIT_REPO_URI="https://github.com/sahlberg/${PN}.git"
KEYWORDS="~alpha ~hppa ~ppc64"
else
SRC_URI="https://github.com/sahlberg/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~alpha amd64 ~hppa ~ppc64 x86"
fi
DESCRIPTION="iscsi client library and utilities"
HOMEPAGE="https://github.com/sahlberg/libiscsi"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
QA_FLAGS_IGNORED="usr/bin/ld_iscsi.so"
myeconfargs=( "--disable-werror" )
src_prepare() {
epatch "${FILESDIR}"/${P}-00*.patch
epatch_user
autotools-utils_src_prepare
}