public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/xapian: ChangeLog xapian-1.2.8.ebuild
@ 2011-12-14 11:19 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 5+ messages in thread
From: Anthony G. Basile (blueness) @ 2011-12-14 11:19 UTC (permalink / raw
  To: gentoo-commits

blueness    11/12/14 11:19:44

  Modified:             ChangeLog
  Added:                xapian-1.2.8.ebuild
  Log:
  Version bump, bug #394413
  
  (Portage version: 2.1.10.11/cvs/Linux x86_64)

Revision  Changes    Path
1.68                 dev-libs/xapian/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.68&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.68&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?r1=1.67&r2=1.68

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog	7 Nov 2011 09:32:30 -0000	1.67
+++ ChangeLog	14 Dec 2011 11:19:43 -0000	1.68
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/xapian
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.67 2011/11/07 09:32:30 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.68 2011/12/14 11:19:43 blueness Exp $
+
+*xapian-1.2.8 (14 Dec 2011)
+
+  14 Dec 2011; Anthony G. Basile <blueness@gentoo.org> +xapian-1.2.8.ebuild:
+  Version bump, bug #394413
 
   07 Nov 2011; Anthony G. Basile <blueness@gentoo.org> -xapian-1.2.7-r2.ebuild,
   metadata.xml:



1.1                  dev-libs/xapian/xapian-1.2.8.ebuild

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

Index: xapian-1.2.8.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v 1.1 2011/12/14 11:19:43 blueness Exp $

EAPI=4

inherit multilib

MY_P="${PN}-core-${PV}"

DESCRIPTION="Xapian Probabilistic Information Retrieval library"
HOMEPAGE="http://www.xapian.org/"
SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc static-libs -sse +sse2 +brass +chert +flint +inmemory +remote"

DEPEND=""
RDEPEND=""

S="${WORKDIR}/${MY_P}"

src_configure() {
	local myconf=""

	ewarn
	if use sse2; then
		ewarn "Using sse2"
		myconf="${myconf} --enable-sse=sse2"
	else
		if use sse; then
			ewarn "Using sse"
			myconf="${myconf} --enable-sse=sse"
		else
			ewarn "Disabling sse and sse2"
			myconf="${myconf} --disable-sse"
		fi
	fi
	ewarn

	myconf="${myconf} $(use_enable static-libs static)"

	use brass || myconf="${myconf} --disable-backend-brass"
	use chert || myconf="${myconf} --disable-backend-chert"
	use flint || myconf="${myconf} --disable-backend-flint"
	use inmemory || myconf="${myconf} --disable-backend-inmemory"
	use remote || myconf="${myconf} --disable-backend-remote"

	econf $myconf
}

src_install() {
	emake DESTDIR="${D}" install
	rm -rf "${D}usr/$(get_libdir)/libxapian.la"

	mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}"
	use doc || rm -rf "${D}usr/share/doc/${PF}"

	dodoc AUTHORS HACKING PLATFORMS README NEWS
}

src_test() {
	emake check VALGRIND=
}






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/xapian: ChangeLog xapian-1.2.8.ebuild
@ 2011-12-14 21:08 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 5+ messages in thread
From: Anthony G. Basile (blueness) @ 2011-12-14 21:08 UTC (permalink / raw
  To: gentoo-commits

blueness    11/12/14 21:08:05

  Modified:             ChangeLog xapian-1.2.8.ebuild
  Log:
  Restored libxapian.la, needed for xapian-bindings' xapian-config, thanks Arfrever
  
  (Portage version: 2.1.10.11/cvs/Linux x86_64)

Revision  Changes    Path
1.69                 dev-libs/xapian/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	14 Dec 2011 11:19:43 -0000	1.68
+++ ChangeLog	14 Dec 2011 21:08:05 -0000	1.69
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/xapian
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.68 2011/12/14 11:19:43 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.69 2011/12/14 21:08:05 blueness Exp $
+
+  14 Dec 2011; Anthony G. Basile <blueness@gentoo.org> xapian-1.2.8.ebuild:
+  Restored libxapian.la, needed for xapian-bindings' xapian-config, thanks
+  Arfrever
 
 *xapian-1.2.8 (14 Dec 2011)
 



1.2                  dev-libs/xapian/xapian-1.2.8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild?r1=1.1&r2=1.2

Index: xapian-1.2.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xapian-1.2.8.ebuild	14 Dec 2011 11:19:43 -0000	1.1
+++ xapian-1.2.8.ebuild	14 Dec 2011 21:08:05 -0000	1.2
@@ -1,11 +1,9 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v 1.1 2011/12/14 11:19:43 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v 1.2 2011/12/14 21:08:05 blueness Exp $
 
 EAPI=4
 
-inherit multilib
-
 MY_P="${PN}-core-${PV}"
 
 DESCRIPTION="Xapian Probabilistic Information Retrieval library"
@@ -53,7 +51,6 @@
 
 src_install() {
 	emake DESTDIR="${D}" install
-	rm -rf "${D}usr/$(get_libdir)/libxapian.la"
 
 	mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}"
 	use doc || rm -rf "${D}usr/share/doc/${PF}"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/xapian: ChangeLog xapian-1.2.8.ebuild
@ 2012-02-05  9:59 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-02-05  9:59 UTC (permalink / raw
  To: gentoo-commits

ago         12/02/05 09:59:27

  Modified:             ChangeLog xapian-1.2.8.ebuild
  Log:
  Stable for amd64, wrt bug #402185
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.70                 dev-libs/xapian/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?r1=1.69&r2=1.70

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	14 Dec 2011 21:08:05 -0000	1.69
+++ ChangeLog	5 Feb 2012 09:59:27 -0000	1.70
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/xapian
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.69 2011/12/14 21:08:05 blueness Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.70 2012/02/05 09:59:27 ago Exp $
+
+  05 Feb 2012; Agostino Sarubbo <ago@gentoo.org> xapian-1.2.8.ebuild:
+  Stable for amd64, wrt bug #402185
 
   14 Dec 2011; Anthony G. Basile <blueness@gentoo.org> xapian-1.2.8.ebuild:
   Restored libxapian.la, needed for xapian-bindings' xapian-config, thanks



1.3                  dev-libs/xapian/xapian-1.2.8.ebuild

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

Index: xapian-1.2.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xapian-1.2.8.ebuild	14 Dec 2011 21:08:05 -0000	1.2
+++ xapian-1.2.8.ebuild	5 Feb 2012 09:59:27 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v 1.2 2011/12/14 21:08:05 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v 1.3 2012/02/05 09:59:27 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="doc static-libs -sse +sse2 +brass +chert +flint +inmemory +remote"
 
 DEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/xapian: ChangeLog xapian-1.2.8.ebuild
@ 2012-02-05 11:33 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 5+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-02-05 11:33 UTC (permalink / raw
  To: gentoo-commits

blueness    12/02/05 11:33:07

  Modified:             ChangeLog xapian-1.2.8.ebuild
  Log:
  Added DEPEND on zlib, bug #402185
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.71                 dev-libs/xapian/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?r1=1.70&r2=1.71

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	5 Feb 2012 09:59:27 -0000	1.70
+++ ChangeLog	5 Feb 2012 11:33:06 -0000	1.71
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/xapian
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.70 2012/02/05 09:59:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.71 2012/02/05 11:33:06 blueness Exp $
+
+  05 Feb 2012; Anthony G. Basile <blueness@gentoo.org> xapian-1.2.8.ebuild:
+  Added DEPEND on zlib, bug #402185
 
   05 Feb 2012; Agostino Sarubbo <ago@gentoo.org> xapian-1.2.8.ebuild:
   Stable for amd64, wrt bug #402185



1.4                  dev-libs/xapian/xapian-1.2.8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild?r1=1.3&r2=1.4

Index: xapian-1.2.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xapian-1.2.8.ebuild	5 Feb 2012 09:59:27 -0000	1.3
+++ xapian-1.2.8.ebuild	5 Feb 2012 11:33:06 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v 1.3 2012/02/05 09:59:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v 1.4 2012/02/05 11:33:06 blueness Exp $
 
 EAPI=4
 
@@ -15,8 +15,8 @@
 KEYWORDS="amd64 ~x86"
 IUSE="doc static-libs -sse +sse2 +brass +chert +flint +inmemory +remote"
 
-DEPEND=""
-RDEPEND=""
+DEPEND="sys-libs/zlib"
+RDEPEND="${DEPEND}"
 
 S="${WORKDIR}/${MY_P}"
 






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/xapian: ChangeLog xapian-1.2.8.ebuild
@ 2012-02-24 14:44 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-02-24 14:44 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/02/24 14:44:54

  Modified:             ChangeLog xapian-1.2.8.ebuild
  Log:
  x86 stable wrt bug #402185
  
  (Portage version: 2.1.10.44/cvs/Linux i686)

Revision  Changes    Path
1.72                 dev-libs/xapian/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	5 Feb 2012 11:33:06 -0000	1.71
+++ ChangeLog	24 Feb 2012 14:44:54 -0000	1.72
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/xapian
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.71 2012/02/05 11:33:06 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.72 2012/02/24 14:44:54 phajdan.jr Exp $
+
+  24 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> xapian-1.2.8.ebuild:
+  x86 stable wrt bug #402185
 
   05 Feb 2012; Anthony G. Basile <blueness@gentoo.org> xapian-1.2.8.ebuild:
   Added DEPEND on zlib, bug #402185



1.5                  dev-libs/xapian/xapian-1.2.8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild?r1=1.4&r2=1.5

Index: xapian-1.2.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xapian-1.2.8.ebuild	5 Feb 2012 11:33:06 -0000	1.4
+++ xapian-1.2.8.ebuild	24 Feb 2012 14:44:54 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v 1.4 2012/02/05 11:33:06 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.8.ebuild,v 1.5 2012/02/24 14:44:54 phajdan.jr Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="doc static-libs -sse +sse2 +brass +chert +flint +inmemory +remote"
 
 DEPEND="sys-libs/zlib"






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

end of thread, other threads:[~2012-02-24 14:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-05  9:59 [gentoo-commits] gentoo-x86 commit in dev-libs/xapian: ChangeLog xapian-1.2.8.ebuild Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2012-02-24 14:44 PaweA Hajdan (phajdan.jr)
2012-02-05 11:33 Anthony G. Basile (blueness)
2011-12-14 21:08 Anthony G. Basile (blueness)
2011-12-14 11:19 Anthony G. Basile (blueness)

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