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/, dev-libs/liborcus/files/
Date: Thu, 10 Jun 2021 15:34:58
Message-Id: 1623339137.f785edab75088cf38ebbe8c3ff24d171388b51ae.asturm@gentoo
1 commit: f785edab75088cf38ebbe8c3ff24d171388b51ae
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 6 17:00:02 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 10 15:32:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f785edab
7
8 dev-libs/liborcus: Drop 0.15.4
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/liborcus/Manifest | 1 -
14 .../liborcus/files/liborcus-0.15.4-bashism.patch | 26 ---------
15 dev-libs/liborcus/liborcus-0.15.4.ebuild | 64 ----------------------
16 3 files changed, 91 deletions(-)
17
18 diff --git a/dev-libs/liborcus/Manifest b/dev-libs/liborcus/Manifest
19 index d43ffdc4292..570800afb04 100644
20 --- a/dev-libs/liborcus/Manifest
21 +++ b/dev-libs/liborcus/Manifest
22 @@ -1,2 +1 @@
23 -DIST liborcus-0.15.4.tar.xz 1590048 BLAKE2B b2edff8a00439154c2850e49fff151f59c0c5a43163cebe5cac84b627fcf87c89a0a522797d8a5bc39eaca9205d74ff3f0bdf9ba77561c5cc7aefe98f35a4c8b SHA512 edbe1d6f86a249e43915e7fb960e6b269fa8703e3f571a023e811dd3f9b5d9c9a36edff491faa7ed7ea3490bf5afe1999e26d05c658a0a393b3ffd08b311b76f
24 DIST liborcus-0.16.1.tar.xz 1805436 BLAKE2B 7df89da5a175daa6fcf759d28f8a0eaebf3db6405af3b06a01b8dad41c7706acedc74876a0b68ff9cabd5780bb7cb311cd7c98390c9ecd265e62513eadde81eb SHA512 6d75591820af65181dd3a418f051a359695083f29c7d9c77edbcab3e89d9ea367824be0b19f27a31267525f446936145f5780a0ce3c6ee2d89823742837d4739
25
26 diff --git a/dev-libs/liborcus/files/liborcus-0.15.4-bashism.patch b/dev-libs/liborcus/files/liborcus-0.15.4-bashism.patch
27 deleted file mode 100644
28 index cc201a5024e..00000000000
29 --- a/dev-libs/liborcus/files/liborcus-0.15.4-bashism.patch
30 +++ /dev/null
31 @@ -1,26 +0,0 @@
32 -From 7d2ae0b6e47aa0c1fc43a91300d82c5394420162 Mon Sep 17 00:00:00 2001
33 -From: Ryo ONODERA <ryo@××××××.org>
34 -Date: Sat, 11 Jan 2020 23:01:29 +0900
35 -Subject: [PATCH] Improve POSIX shell portability
36 -
37 -DO not use bash syntax.
38 ----
39 - configure.ac | 2 +-
40 - 1 file changed, 1 insertion(+), 1 deletion(-)
41 -
42 -diff --git a/configure.ac b/configure.ac
43 -index bc5dc195..a854c0c9 100644
44 ---- a/configure.ac
45 -+++ b/configure.ac
46 -@@ -322,7 +322,7 @@ AC_ARG_ENABLE([werror],
47 - [enable_werror="$enableval"],
48 - [enable_werror=no]
49 - )
50 --AS_IF([test x"$enable_werror" == "xyes"], [
51 -+AS_IF([test x"$enable_werror" = "xyes"], [
52 - CXXFLAGS="$CXXFLAGS -Werror"
53 - ])
54 -
55 ---
56 -2.26.2
57 -
58
59 diff --git a/dev-libs/liborcus/liborcus-0.15.4.ebuild b/dev-libs/liborcus/liborcus-0.15.4.ebuild
60 deleted file mode 100644
61 index def16d79f7b..00000000000
62 --- a/dev-libs/liborcus/liborcus-0.15.4.ebuild
63 +++ /dev/null
64 @@ -1,64 +0,0 @@
65 -# Copyright 1999-2021 Gentoo Authors
66 -# Distributed under the terms of the GNU General Public License v2
67 -
68 -EAPI=7
69 -
70 -PYTHON_COMPAT=( python3_{7,8,9} )
71 -inherit autotools python-single-r1
72 -
73 -DESCRIPTION="Standalone file import filter library for spreadsheet documents"
74 -HOMEPAGE="https://gitlab.com/orcus/orcus/blob/master/README.md"
75 -
76 -if [[ ${PV} == *9999* ]]; then
77 - EGIT_REPO_URI="https://gitlab.com/orcus/orcus.git"
78 - inherit git-r3
79 -else
80 - SRC_URI="https://kohei.us/files/orcus/src/${P}.tar.xz"
81 - KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86"
82 -fi
83 -
84 -LICENSE="MIT"
85 -SLOT="0/0.15" # based on SONAME of liborcus.so
86 -IUSE="python +spreadsheet-model tools"
87 -
88 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
89 -
90 -RDEPEND="
91 - dev-libs/boost:=[zlib(+)]
92 - sys-libs/zlib
93 - python? ( ${PYTHON_DEPS} )
94 - spreadsheet-model? ( dev-libs/libixion:${SLOT} )
95 -"
96 -DEPEND="${RDEPEND}
97 - dev-util/mdds:1/1.5
98 -"
99 -
100 -PATCHES=(
101 - "${FILESDIR}/${P}-bashism.patch" # bug 723130
102 - "${FILESDIR}/${P}-gcc11.patch" # bug 764035
103 -)
104 -
105 -pkg_setup() {
106 - use python && python-single-r1_pkg_setup
107 -}
108 -
109 -src_prepare() {
110 - default
111 - eautoreconf
112 -}
113 -
114 -src_configure() {
115 - local myeconfargs=(
116 - --disable-static
117 - --disable-werror
118 - $(use_enable python)
119 - $(use_enable spreadsheet-model)
120 - $(use_with tools)
121 - )
122 - econf "${myeconfargs[@]}"
123 -}
124 -
125 -src_install() {
126 - default
127 - find "${D}" -name '*.la' -type f -delete || die
128 -}