Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/unoconv: ChangeLog unoconv-0.6.ebuild
Date: Wed, 31 Oct 2012 08:55:45
Message-Id: 20121031085529.5C81D21600@flycatcher.gentoo.org
1 graaff 12/10/31 08:55:29
2
3 Modified: ChangeLog
4 Added: unoconv-0.6.ebuild
5 Log:
6 Add latest released version. Currenty overshadowed, after testing the older versions will be removed, forcing a downgrade.
7
8 (Portage version: 2.1.11.9/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 app-office/unoconv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/unoconv/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/unoconv/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/unoconv/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/unoconv/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 5 Jun 2012 13:06:12 -0000 1.5
24 +++ ChangeLog 31 Oct 2012 08:55:29 -0000 1.6
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-office/unoconv
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/unoconv/ChangeLog,v 1.5 2012/06/05 13:06:12 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-office/unoconv/ChangeLog,v 1.6 2012/10/31 08:55:29 graaff Exp $
30 +
31 +*unoconv-0.6 (31 Oct 2012)
32 +
33 + 31 Oct 2012; Hans de Graaff <graaff@g.o> +unoconv-0.6.ebuild:
34 + Add latest released version. Currenty overshadowed, after testing the older
35 + versions will be removed, forcing a downgrade.
36
37 05 Jun 2012; Tomáš Chvátal <scarabeus@g.o> metadata.xml:
38 Whitespace in metadata.xml
39
40
41
42 1.1 app-office/unoconv/unoconv-0.6.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/unoconv/unoconv-0.6.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/unoconv/unoconv-0.6.ebuild?rev=1.1&content-type=text/plain
46
47 Index: unoconv-0.6.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-office/unoconv/unoconv-0.6.ebuild,v 1.1 2012/10/31 08:55:29 graaff Exp $
52
53 EAPI=3
54
55 PYTHON_DEPEND="2"
56 EGIT_REPO_URI="https://github.com/dagwieers/unoconv.git"
57 [[ ${PV} == 9999* ]] && SCM_ECLASS="git-2"
58 inherit eutils python ${SCM_ECLASS}
59 unset SCM_ECLASS
60
61 DESCRIPTION="Convert between document formats supported by Libreoffice"
62 HOMEPAGE="http://dag.wieers.com/home-made/unoconv/"
63 [[ ${PV} == 9999* ]] || SRC_URI="https://github.com/dagwieers/${PN}/tarball/${PV} -> ${P}-git.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 [[ ${PV} == 9999* ]] || KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 DEPEND=""
71 RDEPEND="${DEPEND}
72 !app-text/odt2txt
73 virtual/ooo
74 "
75
76 pkg_setup() {
77 python_set_active_version 2
78 }
79
80 src_prepare() {
81 mv "${WORKDIR}"/dagwieers-${PN}-* "${WORKDIR}"/${P}
82 cd "${S}"
83
84 epatch "${FILESDIR}/timeout.patch"
85 python_convert_shebangs -r 2 .
86 }
87
88 src_compile() { :; }
89
90 src_install() {
91 emake doc-install install install-links DESTDIR="${D}" || die
92
93 dodoc ChangeLog README.asciidoc || die
94 }