Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/unoconv/
Date: Tue, 12 Dec 2017 07:16:11
Message-Id: 1513062001.f5ba4bed3beed3d9f10a77586c0c528fb7b40342.graaff@gentoo
1 commit: f5ba4bed3beed3d9f10a77586c0c528fb7b40342
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 12 06:41:11 2017 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 12 07:00:01 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5ba4bed
7
8 app-office/unoconv: add 0.8.2
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11
12 app-office/unoconv/Manifest | 1 +
13 app-office/unoconv/unoconv-0.8.2.ebuild | 42 +++++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/app-office/unoconv/Manifest b/app-office/unoconv/Manifest
17 index 9e7da32a330..6079ed7658c 100644
18 --- a/app-office/unoconv/Manifest
19 +++ b/app-office/unoconv/Manifest
20 @@ -1 +1,2 @@
21 DIST unoconv-0.7.tar.gz 96151 BLAKE2B dcdb797728db36c33be9aff447a28dddc8918fb3a496fd718d6dd9ec22a49c395ddaf0130b99aa09d8ed9b2516795c1aaeb58fe8d906bb004a2192eae0df1fab SHA512 3b0837e11f22733e0fbef93dc6aeabd0e2d3d59b6c35a6f7b29b86506a5842bcbffb3e889864d6e14c1e53dd306354690a699257fe60f36ce1d4455ab52b5df7
22 +DIST unoconv-0.8.2.tar.gz 104072 BLAKE2B 1ac16159f939a06cc75f3ff23f5aa7f1c4d49a41d4cce5e9c5866714ef1b3b969f94c074d36fff19d6af22375d5598033fb69761a09d3e60b81d794841c0e0d8 SHA512 cd6a4d06559895c0aebb5fda51ca86928474dd0ca0aa908e81762643186c29cf8436c889eedbb18bc74ed6016414d1aa831cd034614244d5aae677a6b4cdd4c9
23
24 diff --git a/app-office/unoconv/unoconv-0.8.2.ebuild b/app-office/unoconv/unoconv-0.8.2.ebuild
25 new file mode 100644
26 index 00000000000..15bab5d0ef5
27 --- /dev/null
28 +++ b/app-office/unoconv/unoconv-0.8.2.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
36 +
37 +inherit eutils python-single-r1
38 +
39 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 +
41 +DESCRIPTION="Convert between document formats supported by Libreoffice"
42 +HOMEPAGE="http://dag.wieers.com/home-made/unoconv/"
43 +SRC_URI="https://github.com/dagwieers/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-2"
46 +SLOT="0"
47 +
48 +KEYWORDS="~amd64 ~x86"
49 +
50 +IUSE=""
51 +
52 +DEPEND=""
53 +RDEPEND="${DEPEND}
54 + ${PYTHON_DEPS}
55 + !app-text/odt2txt
56 + virtual/ooo
57 +"
58 +
59 +src_prepare() {
60 + epatch "${FILESDIR}/timeout.patch"
61 + eapply_user
62 + python_fix_shebang .
63 +}
64 +
65 +src_compile() { :; }
66 +
67 +src_install() {
68 + emake -j1 doc-install install install-links DESTDIR="${D}" || die
69 +
70 + dodoc ChangeLog CHANGELOG.md README.adoc || die
71 +}