Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liborcus/
Date: Sun, 31 May 2020 21:51:00
Message-Id: 1590961799.98bad06461e8c0440f861bacc0d24b51d9680594.asturm@gentoo
1 commit: 98bad06461e8c0440f861bacc0d24b51d9680594
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 31 21:49:59 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 31 21:49:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98bad064
7
8 dev-libs/liborcus: Drop 0.14.1-r1
9
10 Package-Manager: Portage-2.3.100, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/liborcus/Manifest | 1 -
14 dev-libs/liborcus/liborcus-0.14.1-r1.ebuild | 57 -----------------------------
15 2 files changed, 58 deletions(-)
16
17 diff --git a/dev-libs/liborcus/Manifest b/dev-libs/liborcus/Manifest
18 index 615d2489943..65e49933c6c 100644
19 --- a/dev-libs/liborcus/Manifest
20 +++ b/dev-libs/liborcus/Manifest
21 @@ -1,2 +1 @@
22 -DIST liborcus-0.14.1.tar.xz 1894680 BLAKE2B 0070baf319bf35275f36f3082141f154404ad43d8143588b35c00b8b536f0c1cf5bf38fd9e997c4be45a454f16de1cc1a25186da40e3ed0606a87e9a6a968053 SHA512 a32dc5a652ce99cff37273c38fb9460e13e7bfb562f40c8d0c79b65c33e340daaeeb2c796308ca700b85bfc13cc8215641563b9e9f6d44b7d61adb8e8a3c950f
23 DIST liborcus-0.15.4.tar.xz 1590048 BLAKE2B b2edff8a00439154c2850e49fff151f59c0c5a43163cebe5cac84b627fcf87c89a0a522797d8a5bc39eaca9205d74ff3f0bdf9ba77561c5cc7aefe98f35a4c8b SHA512 edbe1d6f86a249e43915e7fb960e6b269fa8703e3f571a023e811dd3f9b5d9c9a36edff491faa7ed7ea3490bf5afe1999e26d05c658a0a393b3ffd08b311b76f
24
25 diff --git a/dev-libs/liborcus/liborcus-0.14.1-r1.ebuild b/dev-libs/liborcus/liborcus-0.14.1-r1.ebuild
26 deleted file mode 100644
27 index 1c14dc041dc..00000000000
28 --- a/dev-libs/liborcus/liborcus-0.14.1-r1.ebuild
29 +++ /dev/null
30 @@ -1,57 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{6,7,8} )
37 -inherit python-single-r1
38 -
39 -DESCRIPTION="Standalone file import filter library for spreadsheet documents"
40 -HOMEPAGE="https://gitlab.com/orcus/orcus/blob/master/README.md"
41 -
42 -if [[ ${PV} == *9999* ]]; then
43 - EGIT_REPO_URI="https://gitlab.com/orcus/orcus.git"
44 - inherit git-r3 autotools
45 -else
46 - SRC_URI="https://kohei.us/files/orcus/src/${P}.tar.xz"
47 - KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86"
48 -fi
49 -
50 -LICENSE="MIT"
51 -SLOT="0/0.14" # based on SONAME of liborcus.so
52 -IUSE="python +spreadsheet-model static-libs tools"
53 -
54 -RDEPEND="
55 - dev-libs/boost:=[zlib(+)]
56 - sys-libs/zlib
57 - python? ( ${PYTHON_DEPS} )
58 - spreadsheet-model? ( dev-libs/libixion:${SLOT} )
59 -"
60 -DEPEND="${RDEPEND}
61 - =dev-util/mdds-1.4*:1
62 -"
63 -
64 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
65 -
66 -pkg_setup() {
67 - use python && python-single-r1_pkg_setup
68 -}
69 -
70 -src_prepare() {
71 - default
72 - [[ ${PV} == 9999 ]] && eautoreconf
73 -}
74 -
75 -src_configure() {
76 - econf \
77 - --disable-werror \
78 - $(use_enable python) \
79 - $(use_enable spreadsheet-model) \
80 - $(use_enable static-libs static) \
81 - $(use_with tools)
82 -}
83 -
84 -src_install() {
85 - default
86 - find "${D}" -name '*.la' -type f -delete || die
87 -}