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