Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/zziplib/
Date: Sat, 29 Aug 2020 23:27:51
Message-Id: 1598743659.926d35f499e98bf2a28566a951eb49fecd491c43.whissi@gentoo
1 commit: 926d35f499e98bf2a28566a951eb49fecd491c43
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 29 23:22:48 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 29 23:27:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=926d35f4
7
8 dev-libs/zziplib: drop old
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-libs/zziplib/zziplib-0.13.71-r1.ebuild | 68 ------------------------------
14 1 file changed, 68 deletions(-)
15
16 diff --git a/dev-libs/zziplib/zziplib-0.13.71-r1.ebuild b/dev-libs/zziplib/zziplib-0.13.71-r1.ebuild
17 deleted file mode 100644
18 index b69f71534dc..00000000000
19 --- a/dev-libs/zziplib/zziplib-0.13.71-r1.ebuild
20 +++ /dev/null
21 @@ -1,68 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{7,8,9} )
28 -inherit cmake flag-o-matic python-any-r1
29 -
30 -DESCRIPTION="Lightweight library for extracting data from files archived in a single zip file"
31 -HOMEPAGE="http://zziplib.sourceforge.net/"
32 -SRC_URI="https://github.com/gdraheim/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 -
34 -LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
35 -SLOT="0/13"
36 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
37 -IUSE="doc sdl static-libs test"
38 -
39 -RESTRICT="!test? ( test )"
40 -
41 -BDEPEND="
42 - doc? (
43 - ${PYTHON_DEPS}
44 - )
45 - test? (
46 - ${PYTHON_DEPS}
47 - app-arch/zip
48 - )
49 -"
50 -DEPEND="
51 - sys-libs/zlib
52 - sdl? ( >=media-libs/libsdl-1.2.6 )
53 -"
54 -RDEPEND="${DEPEND}"
55 -
56 -PATCHES=(
57 - "${FILESDIR}"/${PN}-0.13.69-009-perror.patch
58 - "${FILESDIR}"/${PN}-0.13.71-join-paths-pc-zzipsdldir.patch
59 - "${FILESDIR}"/${PN}-0.13.71-find-bash.patch
60 - "${FILESDIR}"/${PN}-0.13.71-testbuilds-opensuse15-ninja-sdl2.patch
61 - "${FILESDIR}"/${PN}-0.13.71-shell-DESTDIR.patch
62 -)
63 -
64 -pkg_setup() {
65 - (use test || use doc) && python-any-r1_pkg_setup
66 -}
67 -
68 -src_prepare() {
69 - cmake_src_prepare
70 -
71 - (use test || use doc) && python_fix_shebang .
72 -}
73 -
74 -src_configure() {
75 - append-flags -fno-strict-aliasing # bug reported upstream
76 -
77 - append-cppflags -D_ZZIP_LARGEFILE
78 - local mycmakeargs=(
79 - -DZZIPCOMPAT=OFF
80 - -DZZIPSDL="$(usex sdl ON OFF)"
81 - -DBUILD_STATIC_LIBS="$(usex static-libs ON OFF)"
82 - -DBUILD_TESTS="$(usex test ON OFF)"
83 - -DZZIPTEST="$(usex test ON OFF)"
84 - -DZZIPDOCS="$(usex doc ON OFF)"
85 - -DZZIPWRAP=OFF
86 - )
87 -
88 - cmake_src_configure
89 -}