summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2015-01-27 12:25:22 +0000
committerMichael Palimaka <kensington@gentoo.org>2015-01-27 12:25:22 +0000
commita950057ecc520742bdb91303d91a677f8f73177e (patch)
treefc27060bf95e539a7ff600943b8ec43003d02ccf /dev-libs/libzip
parentDon't use -Werror (#537270 by Alexandre) (diff)
downloadgentoo-2-a950057ecc520742bdb91303d91a677f8f73177e.tar.gz
gentoo-2-a950057ecc520742bdb91303d91a677f8f73177e.tar.bz2
gentoo-2-a950057ecc520742bdb91303d91a677f8f73177e.zip
Remove old.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'dev-libs/libzip')
-rw-r--r--dev-libs/libzip/ChangeLog6
-rw-r--r--dev-libs/libzip/files/libzip-0.10_rc1-fix_headers.patch15
-rw-r--r--dev-libs/libzip/libzip-0.11.1.ebuild58
3 files changed, 5 insertions, 74 deletions
diff --git a/dev-libs/libzip/ChangeLog b/dev-libs/libzip/ChangeLog
index abf6c31c4210..4343d6ae4f6a 100644
--- a/dev-libs/libzip/ChangeLog
+++ b/dev-libs/libzip/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/libzip
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libzip/ChangeLog,v 1.79 2015/01/01 11:20:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libzip/ChangeLog,v 1.80 2015/01/27 12:25:22 kensington Exp $
+
+ 27 Jan 2015; Michael Palimaka <kensington@gentoo.org>
+ -files/libzip-0.10_rc1-fix_headers.patch, -libzip-0.11.1.ebuild:
+ Remove old.
01 Jan 2015; Agostino Sarubbo <ago@gentoo.org> libzip-0.11.2.ebuild:
Stable for ppc64, wrt bug #530660
diff --git a/dev-libs/libzip/files/libzip-0.10_rc1-fix_headers.patch b/dev-libs/libzip/files/libzip-0.10_rc1-fix_headers.patch
deleted file mode 100644
index 75917107025c..000000000000
--- a/dev-libs/libzip/files/libzip-0.10_rc1-fix_headers.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -urN libzip-0.10rc1.old/lib/Makefile.am libzip-0.10rc1/lib/Makefile.am
---- libzip-0.10rc1.old/lib/Makefile.am 2011-03-05 01:07:33.921722002 +0100
-+++ libzip-0.10rc1/lib/Makefile.am 2011-03-05 20:29:30.349388003 +0100
-@@ -2,8 +2,9 @@
-
- lib_LTLIBRARIES = libzip.la
- noinst_HEADERS = zipint.h
--include_HEADERS = zip.h
--libinclude_HEADERS = zipconf.h
-+include_HEADERS = \
-+ zip.h \
-+ zipconf.h
-
- # also update CMakeLists.txt when changing version
- libzip_la_LDFLAGS=-no-undefined -version-info 2:0
diff --git a/dev-libs/libzip/libzip-0.11.1.ebuild b/dev-libs/libzip/libzip-0.11.1.ebuild
deleted file mode 100644
index d73335492cae..000000000000
--- a/dev-libs/libzip/libzip-0.11.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libzip/libzip-0.11.1.ebuild,v 1.6 2013/09/05 13:24:31 ago Exp $
-
-EAPI=5
-
-MY_P=${P/_}
-
-AUTOTOOLS_AUTORECONF=1
-inherit autotools-utils eutils
-
-DESCRIPTION="Library for manipulating zip archives"
-HOMEPAGE="http://www.nih.at/libzip/"
-SRC_URI="http://www.nih.at/libzip/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
-IUSE="static-libs"
-
-DEPEND="sys-libs/zlib"
-RDEPEND="${DEPEND}"
-
-DOCS=( NEWS README THANKS AUTHORS )
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=(
- "${FILESDIR}/${PN}-0.10_rc1-fix_headers.patch"
- "${FILESDIR}/${PN}-0.11-fix_pkgconfig.patch"
-)
-
-AUTOTOOLS_IN_SOURCE_BUILD=1
-
-RESTRICT="test"
-
-src_prepare() {
- autotools-utils_src_prepare
- # run due to fix_headers patch
- AT_NOELIBTOOLIZE=yes eautoreconf
- #elibtoolize # FreeBSD .so version
-
- # fix test return state
- sed -i \
- -e 's:19/2:19/0:' \
- regress/open_nonarchive.test || die
-}
-
-src_install() {
- autotools-utils_src_install
- prune_libtool_files --all
-}
-
-src_test() {
- #Having VERBOSE as an env variable causes the fread test to fail (bug 421651)
- unset VERBOSE
- autotools-utils_src_test
-}