diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-10-13 22:19:36 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-10-13 22:19:36 +0100 |
commit | bb72e65b6d6ce95abb5d486dad35d37dc105e89b (patch) | |
tree | b31a9263d386dcae4cb06764136672508dc5efdf /app-office/unoconv | |
parent | 9b1e6d491f32eb4caf0c8e197bdec075713c97ca (diff) |
gentoo resync : 13.10.2019
Diffstat (limited to 'app-office/unoconv')
-rw-r--r-- | app-office/unoconv/Manifest | 2 | ||||
-rw-r--r-- | app-office/unoconv/unoconv-0.9.ebuild | 42 |
2 files changed, 44 insertions, 0 deletions
diff --git a/app-office/unoconv/Manifest b/app-office/unoconv/Manifest index a10e291ab3b6..6d6d1db71891 100644 --- a/app-office/unoconv/Manifest +++ b/app-office/unoconv/Manifest @@ -1,4 +1,6 @@ AUX timeout.patch 460 BLAKE2B 66cb2918b2ad85cb987ecae492626a0ca06344cac4e9fab1f6a141bcb7822356936439e2239ac586aed8a163e297a5b563e51d382e372c2435256933a4ca3612 SHA512 00ccee1c2040149432565abf4cc0bc8966801202a88c75f246d4b4c986dd43288f30045d4e966c973efa946532eec1f07a6bdff0b9307bd9c12475c9309f3fa5 DIST unoconv-0.8.2.tar.gz 104072 BLAKE2B 1ac16159f939a06cc75f3ff23f5aa7f1c4d49a41d4cce5e9c5866714ef1b3b969f94c074d36fff19d6af22375d5598033fb69761a09d3e60b81d794841c0e0d8 SHA512 cd6a4d06559895c0aebb5fda51ca86928474dd0ca0aa908e81762643186c29cf8436c889eedbb18bc74ed6016414d1aa831cd034614244d5aae677a6b4cdd4c9 +DIST unoconv-0.9.tar.gz 108547 BLAKE2B 6620a7adb32c25182fbb5d0b141ec15d461ee7a73d8644e92337fd7748607d0d33a5978add4c72abf2b35f769f8bbfa35d411f77c4750606e22d6cbc7d7b3454 SHA512 1d6448154ec41776ed4d2ffd87b1caa15e231676a1161072676b1f5a466ea6dbae904de3eafb9ab2718fe4ed0ab7a2c9a91b1d19d79ea382c1e7576ea21e7f04 EBUILD unoconv-0.8.2.ebuild 815 BLAKE2B e0d502ad629f97922abde433879164f35da2a4fbfd5e9668f24841f80cc706bdd1e04b7a8f916fd13e4375e1344c8d3513043818b29bc8ce2ff04bfa6a6ee941 SHA512 a80a29022b5dd421720ac9100889e6d1959727bad1c09f19fafa81bd85122bab482873aaafd2153a20df700e50a87b995e87ea62d729da252e37333e1293ef82 +EBUILD unoconv-0.9.ebuild 817 BLAKE2B 9a18f0009809b5b04490b8bf4f1f963293825c7d34c169d73158a4beaec8baab1f7e5075a334bf56aa44c34bf0afd849f69cc52290f9d43c2814a52ff26b74cd SHA512 bee8efd4743d2fbaa83370a5a107820c0be40d6192e773e7d918dc42bb5ae21d14da18f34a8af3e74c6936952a496abf2b8328eb402e2525414408b8696c75e0 MISC metadata.xml 429 BLAKE2B c863daa05c0d7d265b60a04e0b1336067296b3854c83aa2c08891bbfe0d3fd45971312b6385b50c7ccb47676b65e97afee953a675176643c4bde348a6a3f0162 SHA512 3875bd4f015c8ffc902a3aedf042cd46cbe86f4ef6dfd1a493d3d7c171bf12248763e64d1f448800fa571157d3e5adac0aa191c9ad40667762ed17eadf3840ed diff --git a/app-office/unoconv/unoconv-0.9.ebuild b/app-office/unoconv/unoconv-0.9.ebuild new file mode 100644 index 000000000000..1b1189bb0d81 --- /dev/null +++ b/app-office/unoconv/unoconv-0.9.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{5,6} ) + +inherit eutils python-single-r1 + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DESCRIPTION="Convert between document formats supported by Libreoffice" +HOMEPAGE="http://dag.wiee.rs/home-made/unoconv/" +SRC_URI="https://github.com/dagwieers/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~amd64 ~x86" + +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + ${PYTHON_DEPS} + !app-text/odt2txt + virtual/ooo +" + +src_prepare() { + eapply "${FILESDIR}/timeout.patch" + eapply_user + python_fix_shebang . +} + +src_compile() { :; } + +src_install() { + emake -j1 doc-install install install-links DESTDIR="${D}" || die + + dodoc ChangeLog CHANGELOG.md README.adoc || die +} |