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/ldb: ldb-1.1.17-r1.ebuild ChangeLog
Date: Mon, 26 May 2014 11:34:59
Message-Id: 20140526113455.A480C2004E@flycatcher.gentoo.org
1 polynomial-c 14/05/26 11:34:55
2
3 Modified: ChangeLog
4 Added: ldb-1.1.17-r1.ebuild
5 Log:
6 Added subslot support (bug #511528)
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
9
10 Revision Changes Path
11 1.64 sys-libs/ldb/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ChangeLog?rev=1.64&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ChangeLog?rev=1.64&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ChangeLog?r1=1.63&r2=1.64
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v
20 retrieving revision 1.63
21 retrieving revision 1.64
22 diff -u -r1.63 -r1.64
23 --- ChangeLog 26 May 2014 11:19:23 -0000 1.63
24 +++ ChangeLog 26 May 2014 11:34:55 -0000 1.64
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-libs/ldb
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v 1.63 2014/05/26 11:19:23 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v 1.64 2014/05/26 11:34:55 polynomial-c Exp $
30 +
31 +*ldb-1.1.17-r1 (26 May 2014)
32 +
33 + 26 May 2014; Lars Wendler <polynomial-c@g.o> +ldb-1.1.17-r1.ebuild:
34 + Added subslot support (bug #511528).
35
36 26 May 2014; Markos Chandras <hwoarang@g.o> metadata.xml:
37 Drop inactive maintainers
38
39
40
41 1.1 sys-libs/ldb/ldb-1.1.17-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ldb-1.1.17-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ldb-1.1.17-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ldb-1.1.17-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ldb-1.1.17-r1.ebuild,v 1.1 2014/05/26 11:34:55 polynomial-c Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_{6,7} )
54
55 inherit python-single-r1 waf-utils multilib
56
57 DESCRIPTION="An LDAP-like embedded database"
58 HOMEPAGE="http://ldb.samba.org"
59 SRC_URI="http://www.samba.org/ftp/pub/${PN}/${P}.tar.gz"
60
61 LICENSE="LGPL-3"
62 SLOT="0/${PV}"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~amd64-fbsd ~x86-fbsd"
64 IUSE="doc"
65
66 RDEPEND="dev-libs/popt
67 >=sys-libs/talloc-2.1.0[python]
68 >=sys-libs/tevent-0.9.21
69 >=sys-libs/tdb-1.2.12[python]
70 net-nds/openldap
71 !!<net-fs/samba-3.6.0[ldb]
72 !!>=net-fs/samba-4.0.0[ldb]
73 ${PYTHON_DEPS}
74 "
75
76 DEPEND="dev-libs/libxslt
77 doc? ( app-doc/doxygen )
78 virtual/pkgconfig
79 ${RDEPEND}"
80
81 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
82
83 WAF_BINARY="${S}/buildtools/bin/waf"
84
85 pkg_setup() {
86 python-single-r1_pkg_setup
87 }
88
89 src_configure() {
90 waf-utils_src_configure \
91 --disable-rpath \
92 --disable-rpath-install --bundled-libraries=NONE \
93 --with-modulesdir="${EPREFIX}"/usr/$(get_libdir)/samba \
94 --builtin-libraries=NONE
95 }
96
97 src_compile(){
98 waf-utils_src_compile
99 use doc && doxygen Doxyfile
100 }
101
102 src_test() {
103 WAF_MAKE=1 \
104 PATH=buildtools/bin:../../../buildtools/bin:$PATH:"${S}"/bin/shared/private/ \
105 LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"${S}"/bin/shared/private/:"${S}"/bin/shared waf test || die
106 }
107
108 src_install() {
109 waf-utils_src_install
110
111 if use doc; then
112 dohtml -r apidocs/html/*
113 doman apidocs/man/man3/*.3
114 fi
115 }
116
117 pkg_postinst() {
118 if has_version sys-auth/sssd; then
119 ewarn "You have sssd installed. It is known to break after ldb upgrades,"
120 ewarn "so please try to rebuild it before reporting bugs."
121 ewarn "See http://bugs.gentoo.org/404281"
122 fi
123 }