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

blueness    14/01/31 12:28:06

  Modified:             ChangeLog
  Added:                xapian-1.2.17.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.113                dev-libs/xapian/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog	5 Dec 2013 18:36:55 -0000	1.112
+++ ChangeLog	31 Jan 2014 12:28:06 -0000	1.113
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/xapian
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.112 2013/12/05 18:36:55 blueness Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.113 2014/01/31 12:28:06 blueness Exp $
+
+*xapian-1.2.17 (31 Jan 2014)
+
+  31 Jan 2014; Anthony G. Basile <blueness@gentoo.org> +xapian-1.2.17.ebuild:
+  Version bump
 
 *xapian-1.2.16 (05 Dec 2013)
 



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

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

Index: xapian-1.2.17.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.17.ebuild,v 1.1 2014/01/31 12:28:06 blueness Exp $

EAPI="5"

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.xz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc static-libs -sse +sse2 +brass +chert +inmemory"

DEPEND="sys-libs/zlib"
RDEPEND="${DEPEND}"

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 inmemory || myconf="${myconf} --disable-backend-inmemory"

	myconf="${myconf} --enable-backend-flint --enable-backend-remote"

	econf $myconf
}

src_install() {
	emake DESTDIR="${D}" install

	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] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-libs/xapian: xapian-1.2.17.ebuild ChangeLog
@ 2014-06-14 10:58 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 4+ messages in thread
From: Anthony G. Basile (blueness) @ 2014-06-14 10:58 UTC (permalink / raw
  To: gentoo-commits

blueness    14/06/14 10:58:21

  Modified:             xapian-1.2.17.ebuild ChangeLog
  Log:
  Stable ppc ppc64, bug #506974
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.4                  dev-libs/xapian/xapian-1.2.17.ebuild

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

Index: xapian-1.2.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.17.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xapian-1.2.17.ebuild	14 Jun 2014 09:53:48 -0000	1.3
+++ xapian-1.2.17.ebuild	14 Jun 2014 10:58:21 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.17.ebuild,v 1.3 2014/06/14 09:53:48 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.17.ebuild,v 1.4 2014/06/14 10:58:21 blueness Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha ~amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="doc static-libs -sse +sse2 +brass +chert +inmemory"
 
 DEPEND="sys-libs/zlib"



1.116                dev-libs/xapian/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog	14 Jun 2014 09:53:48 -0000	1.115
+++ ChangeLog	14 Jun 2014 10:58:21 -0000	1.116
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/xapian
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.115 2014/06/14 09:53:48 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.116 2014/06/14 10:58:21 blueness Exp $
+
+  14 Jun 2014; Anthony G. Basile <blueness@gentoo.org> xapian-1.2.17.ebuild:
+  Stable ppc ppc64, bug #506974
 
   14 Jun 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> xapian-1.2.17.ebuild:
   x86 stable wrt bug #506974





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/xapian: xapian-1.2.17.ebuild ChangeLog
@ 2014-08-08 21:25 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-08 21:25 UTC (permalink / raw
  To: gentoo-commits

ago         14/08/08 21:25:19

  Modified:             xapian-1.2.17.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #506974
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  dev-libs/xapian/xapian-1.2.17.ebuild

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

Index: xapian-1.2.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.17.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xapian-1.2.17.ebuild	20 Jul 2014 10:02:37 -0000	1.6
+++ xapian-1.2.17.ebuild	8 Aug 2014 21:25:19 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.17.ebuild,v 1.6 2014/07/20 10:02:37 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.17.ebuild,v 1.7 2014/08/08 21:25:19 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm ~ia64 ~mips ppc ppc64 sparc x86"
 IUSE="doc static-libs -sse +sse2 +brass +chert +inmemory"
 
 DEPEND="sys-libs/zlib"



1.120                dev-libs/xapian/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog	20 Jul 2014 10:02:37 -0000	1.119
+++ ChangeLog	8 Aug 2014 21:25:19 -0000	1.120
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/xapian
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.119 2014/07/20 10:02:37 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.120 2014/08/08 21:25:19 ago Exp $
+
+  08 Aug 2014; Agostino Sarubbo <ago@gentoo.org> xapian-1.2.17.ebuild:
+  Stable for sparc, wrt bug #506974
 
   20 Jul 2014; Tobias Klausmann <klausman@gentoo.org> xapian-1.2.17.ebuild:
   Stable on alpha, bug #506974





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/xapian: xapian-1.2.17.ebuild ChangeLog
@ 2014-08-19  7:44 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-19  7:44 UTC (permalink / raw
  To: gentoo-commits

ago         14/08/19 07:44:12

  Modified:             xapian-1.2.17.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #506974
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  dev-libs/xapian/xapian-1.2.17.ebuild

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

Index: xapian-1.2.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.17.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xapian-1.2.17.ebuild	8 Aug 2014 21:25:19 -0000	1.7
+++ xapian-1.2.17.ebuild	19 Aug 2014 07:44:12 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.17.ebuild,v 1.7 2014/08/08 21:25:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.17.ebuild,v 1.8 2014/08/19 07:44:12 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sparc x86"
 IUSE="doc static-libs -sse +sse2 +brass +chert +inmemory"
 
 DEPEND="sys-libs/zlib"



1.121                dev-libs/xapian/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog	8 Aug 2014 21:25:19 -0000	1.120
+++ ChangeLog	19 Aug 2014 07:44:12 -0000	1.121
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/xapian
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.120 2014/08/08 21:25:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.121 2014/08/19 07:44:12 ago Exp $
+
+  19 Aug 2014; Agostino Sarubbo <ago@gentoo.org> xapian-1.2.17.ebuild:
+  Stable for ia64, wrt bug #506974
 
   08 Aug 2014; Agostino Sarubbo <ago@gentoo.org> xapian-1.2.17.ebuild:
   Stable for sparc, wrt bug #506974





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

end of thread, other threads:[~2014-08-19  7:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-14 10:58 [gentoo-commits] gentoo-x86 commit in dev-libs/xapian: xapian-1.2.17.ebuild ChangeLog Anthony G. Basile (blueness)
  -- strict thread matches above, loose matches on Subject: below --
2014-08-19  7:44 Agostino Sarubbo (ago)
2014-08-08 21:25 Agostino Sarubbo (ago)
2014-01-31 12:28 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