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: unoconv-0.6.20131229.ebuild ChangeLog
Date: Tue, 01 Apr 2014 10:09:22
Message-Id: 20140401100915.5A9712005E@flycatcher.gentoo.org
1 graaff 14/04/01 10:09:15
2
3 Modified: ChangeLog
4 Added: unoconv-0.6.20131229.ebuild
5 Log:
6 Version bump to latest upstream commit to pick up a number of bug fixes and improvements.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.14 app-office/unoconv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/unoconv/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/unoconv/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/unoconv/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/unoconv/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 28 Aug 2013 11:16:49 -0000 1.13
24 +++ ChangeLog 1 Apr 2014 10:09:15 -0000 1.14
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-office/unoconv
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/unoconv/ChangeLog,v 1.13 2013/08/28 11:16:49 ago Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-office/unoconv/ChangeLog,v 1.14 2014/04/01 10:09:15 graaff Exp $
31 +
32 +*unoconv-0.6.20131229 (01 Apr 2014)
33 +
34 + 01 Apr 2014; Hans de Graaff <graaff@g.o> +unoconv-0.6.20131229.ebuild:
35 + Version bump to latest upstream commit to pick up a number of bug fixes and
36 + improvements.
37
38 28 Aug 2013; Agostino Sarubbo <ago@g.o> unoconv-0.6.ebuild:
39 Stable for x86, wrt bug #481898
40
41
42
43 1.1 app-office/unoconv/unoconv-0.6.20131229.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/unoconv/unoconv-0.6.20131229.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/unoconv/unoconv-0.6.20131229.ebuild?rev=1.1&content-type=text/plain
47
48 Index: unoconv-0.6.20131229.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-office/unoconv/unoconv-0.6.20131229.ebuild,v 1.1 2014/04/01 10:09:15 graaff Exp $
53
54 EAPI=3
55
56 PYTHON_DEPEND="2"
57 EGIT_REPO_URI="https://github.com/dagwieers/unoconv.git"
58 [[ ${PV} == 9999* ]] && SCM_ECLASS="git-2"
59 inherit eutils python ${SCM_ECLASS}
60 unset SCM_ECLASS
61
62 DESCRIPTION="Convert between document formats supported by Libreoffice"
63 HOMEPAGE="http://dag.wieers.com/home-made/unoconv/"
64 [[ ${PV} == 9999* ]] || SRC_URI="https://github.com/dagwieers/${PN}/tarball/${PV} -> ${P}-git.tar.gz"
65 SRC_URI="https://github.com/dagwieers/${PN}/tarball/a2c7b2f06d799453666639382951142e0bcaad43 -> ${P}-git.tar.gz"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69
70 # Don't move KEYWORDS on the previous line or ekeyword won't work # 399061
71 [[ ${PV} == 9999* ]] || \
72 KEYWORDS="~amd64 ~ppc ~x86"
73
74 IUSE=""
75
76 DEPEND=""
77 RDEPEND="${DEPEND}
78 !app-text/odt2txt
79 virtual/ooo
80 "
81
82 pkg_setup() {
83 python_set_active_version 2
84 }
85
86 src_prepare() {
87 mv "${WORKDIR}"/dagwieers-${PN}-* "${WORKDIR}"/${P}
88 cd "${S}"
89
90 epatch "${FILESDIR}/timeout.patch"
91 python_convert_shebangs -r 2 .
92 }
93
94 src_compile() { :; }
95
96 src_install() {
97 emake -j1 doc-install install install-links DESTDIR="${D}" || die
98
99 dodoc ChangeLog README.asciidoc || die
100 }