Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/odt2txt/files/, app-text/odt2txt/
Date: Wed, 01 Jan 2020 11:01:32
Message-Id: 1577876471.0d0cc0d6a5f21d90fb79ab679a8476dcac51b96d.asturm@gentoo
1 commit: 0d0cc0d6a5f21d90fb79ab679a8476dcac51b96d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 1 10:41:54 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 1 11:01:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d0cc0d6
7
8 app-text/odt2txt: Drop 0.4-r1
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-text/odt2txt/Manifest | 1 -
14 .../odt2txt/files/odt2txt-0.4-darwin_iconv.patch | 14 --------
15 app-text/odt2txt/odt2txt-0.4-r1.ebuild | 37 ----------------------
16 3 files changed, 52 deletions(-)
17
18 diff --git a/app-text/odt2txt/Manifest b/app-text/odt2txt/Manifest
19 index f8855f7a053..174c42ba0ff 100644
20 --- a/app-text/odt2txt/Manifest
21 +++ b/app-text/odt2txt/Manifest
22 @@ -1,2 +1 @@
23 -DIST odt2txt-0.4.tar.gz 23997 BLAKE2B ffa2ac915c1c239cfa7a498fa1597a2462bc7ecd2fb08a90ab50f21a60dbde8abffa52f4b4c40591732f7d497f08774555b36d880214a7708f2c05b692a18908 SHA512 65642dccdb08408e34d484d78be9777aa374cdabbcadd2ab54f43df29db506b136f13e5af720b9b6b6cfdb8508e4fab44159302d35fc002a22979efabf69bfc4
24 DIST odt2txt-0.5.tar.gz 24460 BLAKE2B 703dd48447aa38a9a8bc0989231adf6f3dcf2796cb730feef6649cd14bff0265b12d6dba258a2779911f908a8ec322c5543b43222676e78ff12246daa3753b40 SHA512 95d782a088908518191dd0dcd294676fff25c95a2f23a2b8577b8e3adcce2f9d6d5ccaa2a02c7d36be19d05687a4d7a43bed36056c044af0934af810363c7ce0
25
26 diff --git a/app-text/odt2txt/files/odt2txt-0.4-darwin_iconv.patch b/app-text/odt2txt/files/odt2txt-0.4-darwin_iconv.patch
27 deleted file mode 100644
28 index 05957269888..00000000000
29 --- a/app-text/odt2txt/files/odt2txt-0.4-darwin_iconv.patch
30 +++ /dev/null
31 @@ -1,14 +0,0 @@
32 -diff -ur odt2txt-0.4/Makefile odt2txt-0.4/Makefile
33 ---- odt2txt-0.4/Makefile 2008-06-23 23:32:28 +0400
34 -+++ odt2txt-0.4/Makefile 2010-05-24 15:39:16 +0400
35 -@@ -56,6 +56,9 @@
36 - CFLAGS += -I$(ZLIB_DIR)
37 - LIBS = $(ZLIB_DIR)/libz.a
38 - endif
39 -+ifeq ($(UNAME_S),Darwin)
40 -+ LIBS += -liconv
41 -+endif
42 - ifeq ($(UNAME_O),Cygwin)
43 - CFLAGS += -DICONV_CHAR="const char"
44 - LIBS += -liconv
45 -
46
47 diff --git a/app-text/odt2txt/odt2txt-0.4-r1.ebuild b/app-text/odt2txt/odt2txt-0.4-r1.ebuild
48 deleted file mode 100644
49 index 180584feabd..00000000000
50 --- a/app-text/odt2txt/odt2txt-0.4-r1.ebuild
51 +++ /dev/null
52 @@ -1,37 +0,0 @@
53 -# Copyright 1999-2012 Gentoo Foundation
54 -# Distributed under the terms of the GNU General Public License v2
55 -
56 -EAPI=4
57 -
58 -inherit eutils toolchain-funcs
59 -
60 -DESCRIPTION="A simple converter from OpenDocument Text to plain text"
61 -HOMEPAGE="http://stosberg.net/odt2txt/"
62 -SRC_URI="http://stosberg.net/${PN}/${P}.tar.gz"
63 -
64 -LICENSE="GPL-2"
65 -SLOT="0"
66 -KEYWORDS="alpha amd64 ia64 ~ppc64 sparc x86 ~x86-macos"
67 -IUSE=""
68 -
69 -RDEPEND="
70 - !app-office/unoconv
71 - sys-libs/zlib
72 - virtual/libiconv
73 -"
74 -DEPEND="${RDEPEND}
75 - sys-apps/groff
76 -"
77 -
78 -src_prepare() {
79 - epatch "${FILESDIR}"/${P}-darwin_iconv.patch
80 -}
81 -
82 -src_compile() {
83 - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
84 -}
85 -
86 -src_install() {
87 - emake install DESTDIR="${D}" PREFIX=/usr
88 - doman odt2txt.1
89 -}