public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-libs/ldb: ldb-1.1.10.ebuild ChangeLog
@ 2012-08-21 14:35 Alexander Vershilov (qnikst)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexander Vershilov (qnikst) @ 2012-08-21 14:35 UTC (permalink / raw
  To: gentoo-commits

qnikst      12/08/21 14:35:07

  Modified:             ChangeLog
  Added:                ldb-1.1.10.ebuild
  Log:
  bump ldb-1.1.10, thanks to slepnoga
  
  (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)

Revision  Changes    Path
1.32                 sys-libs/ldb/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	21 Aug 2012 12:43:43 -0000	1.31
+++ ChangeLog	21 Aug 2012 14:35:07 -0000	1.32
@@ -1,6 +1,11 @@
 # ChangeLog for sys-libs/ldb
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v 1.31 2012/08/21 12:43:43 qnikst Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v 1.32 2012/08/21 14:35:07 qnikst Exp $
+
+*ldb-1.1.10 (21 Aug 2012)
+
+  21 Aug 2012; Alexander Vershilov <qnikst@gentoo.org> +ldb-1.1.10.ebuild:
+  bump ldb-1.1.10, thanks to slepnoga
 
 *ldb-1.1.6-r1 (21 Aug 2012)
 



1.1                  sys-libs/ldb/ldb-1.1.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ldb-1.1.10.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ldb-1.1.10.ebuild?rev=1.1&content-type=text/plain

Index: ldb-1.1.10.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ldb-1.1.10.ebuild,v 1.1 2012/08/21 14:35:07 qnikst Exp $

EAPI="4"
PYTHON_DEPEND="2"

inherit python waf-utils multilib

DESCRIPTION="An LDAP-like embedded database"
HOMEPAGE="http://ldb.samba.org"
SRC_URI="http://www.samba.org/ftp/pub/${PN}/${P}.tar.gz"

LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="doc"

RDEPEND="dev-libs/popt
	>=sys-libs/talloc-2.0.7[python]
	>=sys-libs/tevent-0.9.16
	>=sys-libs/tdb-1.2.9[python]
	net-nds/openldap
	!!<net-fs/samba-3.6.0[ldb]
	!!>=net-fs/samba-4.0.0[ldb]
	"

DEPEND="dev-libs/libxslt
	doc? ( app-doc/doxygen )
	virtual/pkgconfig
	${RDEPEND}"

WAF_BINARY="${S}/buildtools/bin/waf"

pkg_setup() {
	python_set_active_version 2
	python_pkg_setup
	python_need_rebuild
}

src_configure() {
	waf-utils_src_configure --disable-rpath \
	--disable-rpath-install --bundled-libraries=NONE \
	--with-modulesdir="${EPREFIX}"/usr/$(get_libdir)/ldb/modules \
	--builtin-libraries=NONE
}

src_compile(){
	waf-utils_src_compile
	use doc && doxygen Doxyfile
}

src_test() {
	WAF_MAKE=1 \
	PATH=buildtools/bin:../../../buildtools/bin:$PATH:"${S}"/bin/shared/private/ \
	LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"${S}"/bin/shared/private/:"${S}"/bin/shared waf test || die
}

src_install() {
	waf-utils_src_install
#	rm "${D}/$(python_get_sitedir)/"_tevent.so

	if use doc; then
		dohtml -r apidocs/html/*
		doman  apidocs/man/man3/*.3
	fi
}

pkg_postinst() {
	python_need_rebuild
	if has_version sys-auth/sssd; then
		ewarn "You have sssd installed. It is known to break after ldb upgrades,"
		ewarn "so please try to rebuild it before reporting bugs."
		ewarn "See http://bugs.gentoo.org/404281"
	fi
}





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-libs/ldb: ldb-1.1.10.ebuild ChangeLog
@ 2012-09-23 19:21 Victor Ostorga (vostorga)
  0 siblings, 0 replies; 2+ messages in thread
From: Victor Ostorga (vostorga) @ 2012-09-23 19:21 UTC (permalink / raw
  To: gentoo-commits

vostorga    12/09/23 19:21:14

  Modified:             ldb-1.1.10.ebuild ChangeLog
  Log:
  Fixing up python and tdb DEPEND versions
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  sys-libs/ldb/ldb-1.1.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ldb-1.1.10.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ldb-1.1.10.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ldb-1.1.10.ebuild?r1=1.2&r2=1.3

Index: ldb-1.1.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/ldb/ldb-1.1.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ldb-1.1.10.ebuild	13 Sep 2012 19:09:27 -0000	1.2
+++ ldb-1.1.10.ebuild	23 Sep 2012 19:21:14 -0000	1.3
@@ -1,9 +1,9 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ldb-1.1.10.ebuild,v 1.2 2012/09/13 19:09:27 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ldb-1.1.10.ebuild,v 1.3 2012/09/23 19:21:14 vostorga Exp $
 
 EAPI="4"
-PYTHON_DEPEND="2"
+PYTHON_DEPEND="2:2.4"
 
 inherit python waf-utils multilib
 
@@ -19,7 +19,7 @@
 RDEPEND="dev-libs/popt
 	>=sys-libs/talloc-2.0.7[python]
 	>=sys-libs/tevent-0.9.16
-	>=sys-libs/tdb-1.2.9[python]
+	>=sys-libs/tdb-1.2.10[python]
 	net-nds/openldap
 	!!<net-fs/samba-3.6.0[ldb]
 	!!>=net-fs/samba-4.0.0[ldb]



1.34                 sys-libs/ldb/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	13 Sep 2012 19:09:27 -0000	1.33
+++ ChangeLog	23 Sep 2012 19:21:14 -0000	1.34
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/ldb
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v 1.33 2012/09/13 19:09:27 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v 1.34 2012/09/23 19:21:14 vostorga Exp $
+
+  23 Sep 2012; Víctor Ostorga <vostorga@gentoo.org> ldb-1.1.10.ebuild:
+  Fixing up python and tdb DEPEND versions
 
   13 Sep 2012; Tomáš Chvátal <scarabeus@gentoo.org> -ldb-1.1.6-r1.ebuild,
   -ldb-1.1.8.ebuild, ldb-1.1.10.ebuild, ldb-1.1.9.ebuild:





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-09-23 19:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-23 19:21 [gentoo-commits] gentoo-x86 commit in sys-libs/ldb: ldb-1.1.10.ebuild ChangeLog Victor Ostorga (vostorga)
  -- strict thread matches above, loose matches on Subject: below --
2012-08-21 14:35 Alexander Vershilov (qnikst)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox