Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/tdb: tdb-1.3.0.ebuild ChangeLog tdb-1.2.12-r1.ebuild tdb-1.2.7-r1.ebuild
Date: Fri, 23 May 2014 12:28:42
Message-Id: 20140523122839.3A7F42004C@flycatcher.gentoo.org
1 polynomial-c 14/05/23 12:28:39
2
3 Modified: ChangeLog
4 Added: tdb-1.3.0.ebuild
5 Removed: tdb-1.2.12-r1.ebuild tdb-1.2.7-r1.ebuild
6 Log:
7 Version bump. Removed old
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
10
11 Revision Changes Path
12 1.62 sys-libs/tdb/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/ChangeLog?rev=1.62&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/ChangeLog?rev=1.62&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/ChangeLog?r1=1.61&r2=1.62
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v
21 retrieving revision 1.61
22 retrieving revision 1.62
23 diff -u -r1.61 -r1.62
24 --- ChangeLog 23 Mar 2014 20:00:38 -0000 1.61
25 +++ ChangeLog 23 May 2014 12:28:39 -0000 1.62
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-libs/tdb
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v 1.61 2014/03/23 20:00:38 polynomial-c Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v 1.62 2014/05/23 12:28:39 polynomial-c Exp $
31 +
32 +*tdb-1.3.0 (23 May 2014)
33 +
34 + 23 May 2014; Lars Wendler <polynomial-c@g.o> -tdb-1.2.7-r1.ebuild,
35 + -tdb-1.2.12-r1.ebuild, +tdb-1.3.0.ebuild:
36 + Version bump. Removed old.
37
38 *tdb-1.2.13 (23 Mar 2014)
39
40
41
42
43 1.1 sys-libs/tdb/tdb-1.3.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/tdb-1.3.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/tdb-1.3.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tdb-1.3.0.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/sys-libs/tdb/tdb-1.3.0.ebuild,v 1.1 2014/05/23 12:28:39 polynomial-c Exp $
53
54 EAPI=5
55
56 PYTHON_COMPAT=( python{2_6,2_7} )
57
58 inherit waf-utils python-single-r1
59
60 DESCRIPTION="A simple database API"
61 HOMEPAGE="http://tdb.samba.org/"
62 SRC_URI="http://samba.org/ftp/tdb/${P}.tar.gz"
63
64 LICENSE="GPL-3"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
67 IUSE="python"
68
69 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
70
71 RDEPEND="python? ( ${PYTHON_DEPS} )"
72 DEPEND="
73 ${RDEPEND}
74 app-text/docbook-xml-dtd:4.2"
75
76 WAF_BINARY="${S}/buildtools/bin/waf"
77
78 src_configure() {
79 local extra_opts=""
80 use python || extra_opts+=" --disable-python"
81 waf-utils_src_configure \
82 ${extra_opts}
83 }
84
85 src_test() {
86 # the default src_test runs 'make test' and 'make check', letting
87 # the tests fail occasionally (reason: unknown)
88 emake check
89 }