diff options
author | Hans de Graaff <graaff@gentoo.org> | 2014-04-01 10:09:15 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2014-04-01 10:09:15 +0000 |
commit | 8082bfeabba11124b91939931f2fbe8cb8fb4cd4 (patch) | |
tree | f2bd80291b89080a9475e445a47444b05c98257d /app-office/unoconv | |
parent | Stable for amd64 wrt bug #504250 (diff) | |
download | gentoo-2-8082bfeabba11124b91939931f2fbe8cb8fb4cd4.tar.gz gentoo-2-8082bfeabba11124b91939931f2fbe8cb8fb4cd4.tar.bz2 gentoo-2-8082bfeabba11124b91939931f2fbe8cb8fb4cd4.zip |
Version bump to latest upstream commit to pick up a number of bug fixes and improvements.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'app-office/unoconv')
-rw-r--r-- | app-office/unoconv/ChangeLog | 10 | ||||
-rw-r--r-- | app-office/unoconv/unoconv-0.6.20131229.ebuild | 51 |
2 files changed, 59 insertions, 2 deletions
diff --git a/app-office/unoconv/ChangeLog b/app-office/unoconv/ChangeLog index 6eb486984ff9..0951b9f8fb18 100644 --- a/app-office/unoconv/ChangeLog +++ b/app-office/unoconv/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-office/unoconv -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/unoconv/ChangeLog,v 1.13 2013/08/28 11:16:49 ago Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/unoconv/ChangeLog,v 1.14 2014/04/01 10:09:15 graaff Exp $ + +*unoconv-0.6.20131229 (01 Apr 2014) + + 01 Apr 2014; Hans de Graaff <graaff@gentoo.org> +unoconv-0.6.20131229.ebuild: + Version bump to latest upstream commit to pick up a number of bug fixes and + improvements. 28 Aug 2013; Agostino Sarubbo <ago@gentoo.org> unoconv-0.6.ebuild: Stable for x86, wrt bug #481898 diff --git a/app-office/unoconv/unoconv-0.6.20131229.ebuild b/app-office/unoconv/unoconv-0.6.20131229.ebuild new file mode 100644 index 000000000000..f0242e62a60e --- /dev/null +++ b/app-office/unoconv/unoconv-0.6.20131229.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/unoconv/unoconv-0.6.20131229.ebuild,v 1.1 2014/04/01 10:09:15 graaff Exp $ + +EAPI=3 + +PYTHON_DEPEND="2" +EGIT_REPO_URI="https://github.com/dagwieers/unoconv.git" +[[ ${PV} == 9999* ]] && SCM_ECLASS="git-2" +inherit eutils python ${SCM_ECLASS} +unset SCM_ECLASS + +DESCRIPTION="Convert between document formats supported by Libreoffice" +HOMEPAGE="http://dag.wieers.com/home-made/unoconv/" +[[ ${PV} == 9999* ]] || SRC_URI="https://github.com/dagwieers/${PN}/tarball/${PV} -> ${P}-git.tar.gz" +SRC_URI="https://github.com/dagwieers/${PN}/tarball/a2c7b2f06d799453666639382951142e0bcaad43 -> ${P}-git.tar.gz" + +LICENSE="GPL-2" +SLOT="0" + +# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 +[[ ${PV} == 9999* ]] || \ +KEYWORDS="~amd64 ~ppc ~x86" + +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + !app-text/odt2txt + virtual/ooo +" + +pkg_setup() { + python_set_active_version 2 +} + +src_prepare() { + mv "${WORKDIR}"/dagwieers-${PN}-* "${WORKDIR}"/${P} + cd "${S}" + + epatch "${FILESDIR}/timeout.patch" + python_convert_shebangs -r 2 . +} + +src_compile() { :; } + +src_install() { + emake -j1 doc-install install install-links DESTDIR="${D}" || die + + dodoc ChangeLog README.asciidoc || die +} |