public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2012-05-30 13:54 Johannes Huber
  0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2012-05-30 13:54 UTC (permalink / raw
  To: gentoo-commits

commit:     dd6710fe5269ce1546e0d8b6dc6ebc1611f783bd
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed May 30 13:48:17 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed May 30 13:48:17 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=dd6710fe

[dev-libs/soprano] Version bump.

(Portage version: 2.2.0_alpha108/git/Linux x86_64, unsigned Manifest commit)

---
 dev-libs/soprano/soprano-2.7.56.ebuild |  103 ++++++++++++++++++++++++++++++++
 1 files changed, 103 insertions(+), 0 deletions(-)

diff --git a/dev-libs/soprano/soprano-2.7.56.ebuild b/dev-libs/soprano/soprano-2.7.56.ebuild
new file mode 100644
index 0000000..b5583ab
--- /dev/null
+++ b/dev-libs/soprano/soprano-2.7.56.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+if [[ ${PV} == *9999* ]]; then
+	git_eclass="git-2"
+	EGIT_REPO_URI="git://anongit.kde.org/soprano"
+	KEYWORDS=""
+else
+	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+	KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+fi
+
+inherit base cmake-utils flag-o-matic ${git_eclass}
+
+DESCRIPTION="Library that provides a nice Qt interface to RDF storage solutions"
+HOMEPAGE="http://sourceforge.net/projects/soprano"
+
+LICENSE="LGPL-2"
+SLOT="0"
+IUSE="clucene +dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
+
+RESTRICT=test
+# bug 281712
+
+COMMON_DEPEND="
+	>=x11-libs/qt-core-4.5.0:4
+	clucene? ( dev-cpp/clucene )
+	dbus? ( >=x11-libs/qt-dbus-4.5.0:4 )
+	raptor? ( >=media-libs/raptor-2.0.4:2 )
+	redland? (
+		>=dev-libs/rasqal-0.9.26
+		>=dev-libs/redland-1.0.14
+	)
+	virtuoso? ( dev-db/libiodbc:0 )
+"
+DEPEND="${COMMON_DEPEND}
+	doc? ( app-doc/doxygen )
+	test? ( >=x11-libs/qt-test-4.5.0:4 )
+"
+RDEPEND="${COMMON_DEPEND}
+	virtuoso? ( >=dev-db/virtuoso-server-6.1.0 )
+"
+S=${WORKDIR}/${P}-beta1
+
+CMAKE_IN_SOURCE_BUILD="1"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-2.4.4-make-broken-redland-fatal.cmake"
+)
+
+pkg_setup() {
+	if [[ ${PV} = *9999* && -z $I_KNOW_WHAT_I_AM_DOING ]]; then
+		echo
+		ewarn "WARNING! This is an experimental ebuild of ${PN} Git tree. Use at your own risk."
+		ewarn "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!"
+		echo
+	fi
+
+	if ! use virtuoso; then
+		echo
+		ewarn "You have explicitly disabled the default soprano backend."
+		ewarn "Applications using soprano may need at least one backend"
+		ewarn "to be functional. If you experience any problems, enable"
+		ewarn "the virtuoso USE flag."
+		echo
+	fi
+}
+
+src_configure() {
+	# Fix for missing pthread.h linking
+	# NOTE: temporarily fix until a better cmake files patch will be provided.
+	use elibc_FreeBSD && append-flags -pthread
+
+	local mycmakeargs=(
+		-DSOPRANO_BUILD_TESTS=OFF
+		-DCMAKE_SKIP_RPATH=OFF
+		-DSOPRANO_DISABLE_SESAME2_BACKEND=ON
+		$(cmake-utils_use !clucene SOPRANO_DISABLE_CLUCENE_INDEX)
+		$(cmake-utils_use !dbus SOPRANO_DISABLE_DBUS)
+		$(cmake-utils_use !raptor SOPRANO_DISABLE_RAPTOR_PARSER)
+		$(cmake-utils_use !redland SOPRANO_DISABLE_RAPTOR_SERIALIZER)
+		$(cmake-utils_use !redland SOPRANO_DISABLE_REDLAND_BACKEND)
+		$(cmake-utils_use !virtuoso SOPRANO_DISABLE_VIRTUOSO_BACKEND)
+		$(cmake-utils_use doc SOPRANO_BUILD_API_DOCS)
+		$(cmake-utils_use test SOPRANO_BUILD_TESTS)
+	)
+
+	cmake-utils_src_configure
+}
+
+src_install() {
+	cmake-utils_src_install
+
+	dodoc AUTHORS ChangeLog README TODO
+	newdoc backends/virtuoso/README README.virtuoso
+	newdoc backends/sesame2/README README.sesame2
+	if use doc ; then
+		dohtml -r docs/html/
+	fi
+}



^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2013-10-13 17:03 Johannes Huber
  0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2013-10-13 17:03 UTC (permalink / raw
  To: gentoo-commits

commit:     5d4f3d2c8c69fdd4a4cebfffe33c9d46330c5ba5
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 13 18:52:58 2013 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Oct 13 18:52:58 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=5d4f3d2c

[dev-libs/soprano] Move to git-r3 eclass.

Package-Manager: portage-2.2.7

---
 dev-libs/soprano/soprano-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/soprano/soprano-9999.ebuild b/dev-libs/soprano/soprano-9999.ebuild
index 5f5227e..4f456e0 100644
--- a/dev-libs/soprano/soprano-9999.ebuild
+++ b/dev-libs/soprano/soprano-9999.ebuild
@@ -5,8 +5,8 @@
 EAPI=5
 
 if [[ ${PV} == *9999* ]]; then
-	git_eclass="git-2"
-	EGIT_REPO_URI="git://anongit.kde.org/soprano"
+	git_eclass="git-r3"
+	EGIT_REPO_URI=( "git://anongit.kde.org/soprano" )
 	KEYWORDS=""
 else
 	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2013-06-21 16:24 Johannes Huber
  0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2013-06-21 16:24 UTC (permalink / raw
  To: gentoo-commits

commit:     a7fcc9329271dccbe1a6128632c90a61939adab5
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 21 16:23:57 2013 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Fri Jun 21 16:24:40 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=a7fcc932

[dev-libs/soprano] qt5 build option, bug #473312.

Package-Manager: portage-2.2.0_alpha183

---
 dev-libs/soprano/soprano-9999.ebuild | 25 ++++++++++++++++++++-----
 1 file changed, 20 insertions(+), 5 deletions(-)

diff --git a/dev-libs/soprano/soprano-9999.ebuild b/dev-libs/soprano/soprano-9999.ebuild
index 8ba57c0..5f5227e 100644
--- a/dev-libs/soprano/soprano-9999.ebuild
+++ b/dev-libs/soprano/soprano-9999.ebuild
@@ -20,14 +20,25 @@ HOMEPAGE="http://soprano.sourceforge.net/"
 
 LICENSE="LGPL-2"
 SLOT="0"
-IUSE="+dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
+IUSE="+dbus debug doc elibc_FreeBSD +qt4 qt5 +raptor +redland test +virtuoso"
+
+REQUIRED_USE="^^ ( qt4 qt5 )"
 
 # bug 281712
 RESTRICT="test"
 
 COMMON_DEPEND="
-	>=dev-qt/qtcore-4.5.0:4
 	dbus? ( >=dev-qt/qtdbus-4.5.0:4 )
+	qt4? (
+		dev-qt/qtcore:4
+		dev-qt/qtdbus:4
+	)
+	qt5? (
+		dev-qt/qtcore:5
+		dev-qt/qtdbus:5
+		dev-qt/qtnetwork:5
+		dev-qt/qtxml:5
+	)
 	raptor? ( >=media-libs/raptor-2.0.4:2 )
 	redland? (
 		>=dev-libs/rasqal-0.9.26
@@ -37,7 +48,10 @@ COMMON_DEPEND="
 "
 DEPEND="${COMMON_DEPEND}
 	doc? ( app-doc/doxygen )
-	test? ( >=dev-qt/qttest-4.5.0:4 )
+	test? (
+		qt4? ( dev-qt/qttest:4 )
+		qt5? ( dev-qt/qttest:5 )
+	)
 "
 RDEPEND="${COMMON_DEPEND}
 	virtuoso? ( >=dev-db/virtuoso-server-6.1.6 )
@@ -73,12 +87,13 @@ src_configure() {
 		-DSOPRANO_DISABLE_SESAME2_BACKEND=ON
 		-DSOPRANO_DISABLE_CLUCENE_INDEX=ON
 		$(cmake-utils_use !dbus SOPRANO_DISABLE_DBUS)
+		$(cmake-utils_use doc SOPRANO_BUILD_API_DOCS)
+		$(cmake-utils_use qt5 QT5_BUILD)
 		$(cmake-utils_use !raptor SOPRANO_DISABLE_RAPTOR_PARSER)
 		$(cmake-utils_use !redland SOPRANO_DISABLE_RAPTOR_SERIALIZER)
 		$(cmake-utils_use !redland SOPRANO_DISABLE_REDLAND_BACKEND)
-		$(cmake-utils_use !virtuoso SOPRANO_DISABLE_VIRTUOSO_BACKEND)
-		$(cmake-utils_use doc SOPRANO_BUILD_API_DOCS)
 		$(cmake-utils_use test SOPRANO_BUILD_TESTS)
+		$(cmake-utils_use !virtuoso SOPRANO_DISABLE_VIRTUOSO_BACKEND)
 	)
 
 	cmake-utils_src_configure


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2013-06-12 11:35 Michael Palimaka
  0 siblings, 0 replies; 18+ messages in thread
From: Michael Palimaka @ 2013-06-12 11:35 UTC (permalink / raw
  To: gentoo-commits

commit:     9c2664e3b817cd6153425b6b19e1b6dcc6b99454
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 12 11:33:10 2013 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Jun 12 11:33:10 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=9c2664e3

[dev-libs/soprano] Tidy ebuild.

Package-Manager: portage-2.1.12.4

---
 dev-libs/soprano/metadata.xml        | 12 ++++++------
 dev-libs/soprano/soprano-9999.ebuild | 14 ++++++--------
 2 files changed, 12 insertions(+), 14 deletions(-)

diff --git a/dev-libs/soprano/metadata.xml b/dev-libs/soprano/metadata.xml
index db92ac1..d2e3ca6 100644
--- a/dev-libs/soprano/metadata.xml
+++ b/dev-libs/soprano/metadata.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<herd>kde</herd>
-<use>
-	<flag name="raptor">Enables support for <pkg>media-libs/raptor</pkg> RDF parser/serializer.</flag>
-	<flag name="redland">Enables support for the <pkg>dev-libs/redland</pkg> storage backend (really slow one).</flag>
-	<flag name="virtuoso">Enables support for <pkg>dev-db/virtuoso</pkg> storage backend.</flag>
-</use>
+	<herd>kde</herd>
+	<use>
+		<flag name="raptor">Enables support for <pkg>media-libs/raptor</pkg> RDF parser/serializer.</flag>
+		<flag name="redland">Enables support for the <pkg>dev-libs/redland</pkg> storage backend (really slow one).</flag>
+		<flag name="virtuoso">Enables support for <pkg>dev-db/virtuoso</pkg> storage backend.</flag>
+	</use>
 </pkgmetadata>

diff --git a/dev-libs/soprano/soprano-9999.ebuild b/dev-libs/soprano/soprano-9999.ebuild
index 0f1397a..8ba57c0 100644
--- a/dev-libs/soprano/soprano-9999.ebuild
+++ b/dev-libs/soprano/soprano-9999.ebuild
@@ -13,15 +13,18 @@ else
 	KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 
-inherit base cmake-utils flag-o-matic ${git_eclass}
+inherit cmake-utils flag-o-matic ${git_eclass}
 
-DESCRIPTION="Library that provides a nice Qt interface to RDF storage solutions"
-HOMEPAGE="http://sourceforge.net/projects/soprano"
+DESCRIPTION="Library that provides a nice Qt interface to RDF storage solution"
+HOMEPAGE="http://soprano.sourceforge.net/"
 
 LICENSE="LGPL-2"
 SLOT="0"
 IUSE="+dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
 
+# bug 281712
+RESTRICT="test"
+
 COMMON_DEPEND="
 	>=dev-qt/qtcore-4.5.0:4
 	dbus? ( >=dev-qt/qtdbus-4.5.0:4 )
@@ -48,19 +51,15 @@ PATCHES=(
 
 pkg_setup() {
 	if [[ ${PV} = *9999* && -z $I_KNOW_WHAT_I_AM_DOING ]]; then
-		echo
 		ewarn "WARNING! This is an experimental ebuild of ${PN} Git tree. Use at your own risk."
 		ewarn "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!"
-		echo
 	fi
 
 	if ! use virtuoso; then
-		echo
 		ewarn "You have explicitly disabled the default soprano backend."
 		ewarn "Applications using soprano may need at least one backend"
 		ewarn "to be functional. If you experience any problems, enable"
 		ewarn "the virtuoso USE flag."
-		echo
 	fi
 }
 
@@ -70,7 +69,6 @@ src_configure() {
 	use elibc_FreeBSD && append-flags -pthread
 
 	local mycmakeargs=(
-		-DSOPRANO_BUILD_TESTS=OFF
 		-DCMAKE_SKIP_RPATH=OFF
 		-DSOPRANO_DISABLE_SESAME2_BACKEND=ON
 		-DSOPRANO_DISABLE_CLUCENE_INDEX=ON


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2013-05-06 19:15 Johannes Huber
  0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2013-05-06 19:15 UTC (permalink / raw
  To: gentoo-commits

commit:     c1fc8e848c90dd5a70489e10541413a7c54896c9
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon May  6 19:15:32 2013 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon May  6 19:15:32 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=c1fc8e84

[dev-libs/soprano] EAPI 5, sync KEYWORDS with tree.

Package-Manager: portage-2.2.0_alpha174

---
 dev-libs/soprano/soprano-9999.ebuild |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/soprano/soprano-9999.ebuild b/dev-libs/soprano/soprano-9999.ebuild
index f745e6e..b837cc1 100644
--- a/dev-libs/soprano/soprano-9999.ebuild
+++ b/dev-libs/soprano/soprano-9999.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 
 if [[ ${PV} == *9999* ]]; then
 	git_eclass="git-2"
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999* ]]; then
 	KEYWORDS=""
 else
 	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+	KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 
 inherit base cmake-utils flag-o-matic ${git_eclass}


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2013-02-07  5:21 Alexey Shvetsov
  0 siblings, 0 replies; 18+ messages in thread
From: Alexey Shvetsov @ 2013-02-07  5:21 UTC (permalink / raw
  To: gentoo-commits

commit:     43e571b50ad1cdc19ee31b9dcda75db9ff810170
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  7 05:10:46 2013 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Thu Feb  7 05:10:46 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=43e571b5

[dev-libs/soprano] Moved to tree

Package-Manager: portage-2.2.0_alpha161

---
 dev-libs/soprano/soprano-2.9.0.ebuild |  101 ---------------------------------
 1 files changed, 0 insertions(+), 101 deletions(-)

diff --git a/dev-libs/soprano/soprano-2.9.0.ebuild b/dev-libs/soprano/soprano-2.9.0.ebuild
deleted file mode 100644
index ffe9cb6..0000000
--- a/dev-libs/soprano/soprano-2.9.0.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/soprano/soprano-2.8.0.ebuild,v 1.6 2012/11/30 15:11:59 ago Exp $
-
-EAPI=4
-
-if [[ ${PV} == *9999* ]]; then
-	git_eclass="git-2"
-	EGIT_REPO_URI="git://anongit.kde.org/soprano"
-	KEYWORDS=""
-else
-	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-inherit base cmake-utils flag-o-matic ${git_eclass}
-
-DESCRIPTION="Library that provides a nice Qt interface to RDF storage solutions"
-HOMEPAGE="http://sourceforge.net/projects/soprano"
-
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="+dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
-
-RESTRICT=test
-# bug 281712
-
-COMMON_DEPEND="
-	>=x11-libs/qt-core-4.5.0:4
-	dbus? ( >=x11-libs/qt-dbus-4.5.0:4 )
-	raptor? ( >=media-libs/raptor-2.0.4:2 )
-	redland? (
-		>=dev-libs/rasqal-0.9.26
-		>=dev-libs/redland-1.0.14
-	)
-	virtuoso? ( dev-db/libiodbc:0 )
-"
-DEPEND="${COMMON_DEPEND}
-	doc? ( app-doc/doxygen )
-	test? ( >=x11-libs/qt-test-4.5.0:4 )
-"
-RDEPEND="${COMMON_DEPEND}
-	virtuoso? ( >=dev-db/virtuoso-server-6.1.6 )
-"
-
-CMAKE_IN_SOURCE_BUILD="1"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-2.4.4-make-broken-redland-fatal.cmake"
-)
-
-pkg_setup() {
-	if [[ ${PV} = *9999* && -z $I_KNOW_WHAT_I_AM_DOING ]]; then
-		echo
-		ewarn "WARNING! This is an experimental ebuild of ${PN} Git tree. Use at your own risk."
-		ewarn "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!"
-		echo
-	fi
-
-	if ! use virtuoso; then
-		echo
-		ewarn "You have explicitly disabled the default soprano backend."
-		ewarn "Applications using soprano may need at least one backend"
-		ewarn "to be functional. If you experience any problems, enable"
-		ewarn "the virtuoso USE flag."
-		echo
-	fi
-}
-
-src_configure() {
-	# Fix for missing pthread.h linking
-	# NOTE: temporarily fix until a better cmake files patch will be provided.
-	use elibc_FreeBSD && append-flags -pthread
-
-	local mycmakeargs=(
-		-DSOPRANO_BUILD_TESTS=OFF
-		-DCMAKE_SKIP_RPATH=OFF
-		-DSOPRANO_DISABLE_SESAME2_BACKEND=ON
-		-DSOPRANO_DISABLE_CLUCENE_INDEX=ON
-		$(cmake-utils_use !dbus SOPRANO_DISABLE_DBUS)
-		$(cmake-utils_use !raptor SOPRANO_DISABLE_RAPTOR_PARSER)
-		$(cmake-utils_use !redland SOPRANO_DISABLE_RAPTOR_SERIALIZER)
-		$(cmake-utils_use !redland SOPRANO_DISABLE_REDLAND_BACKEND)
-		$(cmake-utils_use !virtuoso SOPRANO_DISABLE_VIRTUOSO_BACKEND)
-		$(cmake-utils_use doc SOPRANO_BUILD_API_DOCS)
-		$(cmake-utils_use test SOPRANO_BUILD_TESTS)
-	)
-
-	cmake-utils_src_configure
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	dodoc AUTHORS ChangeLog README TODO
-	newdoc backends/virtuoso/README README.virtuoso
-	newdoc backends/sesame2/README README.sesame2
-	if use doc ; then
-		dohtml -r docs/html/
-	fi
-}


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2013-01-04  0:09 Marc Schiffbauer
  0 siblings, 0 replies; 18+ messages in thread
From: Marc Schiffbauer @ 2013-01-04  0:09 UTC (permalink / raw
  To: gentoo-commits

commit:     6a13142c39eb9310020d6ad5248e8f204c0cd691
Author:     Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  4 00:09:06 2013 +0000
Commit:     Marc Schiffbauer <marc <AT> schiffbauer <DOT> net>
CommitDate: Fri Jan  4 00:09:06 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=6a13142c

[dev-libs/soprano] Fixed keywording

---
 dev-libs/soprano/soprano-2.9.0.ebuild |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dev-libs/soprano/soprano-2.9.0.ebuild b/dev-libs/soprano/soprano-2.9.0.ebuild
index d68d90d..ffe9cb6 100644
--- a/dev-libs/soprano/soprano-2.9.0.ebuild
+++ b/dev-libs/soprano/soprano-2.9.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999* ]]; then
 	KEYWORDS=""
 else
 	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-	KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+	KEYWORDS="~amd64 ~x86"
 fi
 
 inherit base cmake-utils flag-o-matic ${git_eclass}


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2013-01-03 21:35 Marc Schiffbauer
  0 siblings, 0 replies; 18+ messages in thread
From: Marc Schiffbauer @ 2013-01-03 21:35 UTC (permalink / raw
  To: gentoo-commits

commit:     f5cb9f3f5dc7b3245e93c31ba7f962c8e5bee458
Author:     Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  3 21:34:48 2013 +0000
Commit:     Marc Schiffbauer <marc <AT> schiffbauer <DOT> net>
CommitDate: Thu Jan  3 21:34:48 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f5cb9f3f

[dev-libs/soprano] Added soprano 2.9.0

---
 dev-libs/soprano/soprano-2.9.0.ebuild |  101 +++++++++++++++++++++++++++++++++
 1 files changed, 101 insertions(+), 0 deletions(-)

diff --git a/dev-libs/soprano/soprano-2.9.0.ebuild b/dev-libs/soprano/soprano-2.9.0.ebuild
new file mode 100644
index 0000000..d68d90d
--- /dev/null
+++ b/dev-libs/soprano/soprano-2.9.0.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/soprano/soprano-2.8.0.ebuild,v 1.6 2012/11/30 15:11:59 ago Exp $
+
+EAPI=4
+
+if [[ ${PV} == *9999* ]]; then
+	git_eclass="git-2"
+	EGIT_REPO_URI="git://anongit.kde.org/soprano"
+	KEYWORDS=""
+else
+	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+	KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+fi
+
+inherit base cmake-utils flag-o-matic ${git_eclass}
+
+DESCRIPTION="Library that provides a nice Qt interface to RDF storage solutions"
+HOMEPAGE="http://sourceforge.net/projects/soprano"
+
+LICENSE="LGPL-2"
+SLOT="0"
+IUSE="+dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
+
+RESTRICT=test
+# bug 281712
+
+COMMON_DEPEND="
+	>=x11-libs/qt-core-4.5.0:4
+	dbus? ( >=x11-libs/qt-dbus-4.5.0:4 )
+	raptor? ( >=media-libs/raptor-2.0.4:2 )
+	redland? (
+		>=dev-libs/rasqal-0.9.26
+		>=dev-libs/redland-1.0.14
+	)
+	virtuoso? ( dev-db/libiodbc:0 )
+"
+DEPEND="${COMMON_DEPEND}
+	doc? ( app-doc/doxygen )
+	test? ( >=x11-libs/qt-test-4.5.0:4 )
+"
+RDEPEND="${COMMON_DEPEND}
+	virtuoso? ( >=dev-db/virtuoso-server-6.1.6 )
+"
+
+CMAKE_IN_SOURCE_BUILD="1"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-2.4.4-make-broken-redland-fatal.cmake"
+)
+
+pkg_setup() {
+	if [[ ${PV} = *9999* && -z $I_KNOW_WHAT_I_AM_DOING ]]; then
+		echo
+		ewarn "WARNING! This is an experimental ebuild of ${PN} Git tree. Use at your own risk."
+		ewarn "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!"
+		echo
+	fi
+
+	if ! use virtuoso; then
+		echo
+		ewarn "You have explicitly disabled the default soprano backend."
+		ewarn "Applications using soprano may need at least one backend"
+		ewarn "to be functional. If you experience any problems, enable"
+		ewarn "the virtuoso USE flag."
+		echo
+	fi
+}
+
+src_configure() {
+	# Fix for missing pthread.h linking
+	# NOTE: temporarily fix until a better cmake files patch will be provided.
+	use elibc_FreeBSD && append-flags -pthread
+
+	local mycmakeargs=(
+		-DSOPRANO_BUILD_TESTS=OFF
+		-DCMAKE_SKIP_RPATH=OFF
+		-DSOPRANO_DISABLE_SESAME2_BACKEND=ON
+		-DSOPRANO_DISABLE_CLUCENE_INDEX=ON
+		$(cmake-utils_use !dbus SOPRANO_DISABLE_DBUS)
+		$(cmake-utils_use !raptor SOPRANO_DISABLE_RAPTOR_PARSER)
+		$(cmake-utils_use !redland SOPRANO_DISABLE_RAPTOR_SERIALIZER)
+		$(cmake-utils_use !redland SOPRANO_DISABLE_REDLAND_BACKEND)
+		$(cmake-utils_use !virtuoso SOPRANO_DISABLE_VIRTUOSO_BACKEND)
+		$(cmake-utils_use doc SOPRANO_BUILD_API_DOCS)
+		$(cmake-utils_use test SOPRANO_BUILD_TESTS)
+	)
+
+	cmake-utils_src_configure
+}
+
+src_install() {
+	cmake-utils_src_install
+
+	dodoc AUTHORS ChangeLog README TODO
+	newdoc backends/virtuoso/README README.virtuoso
+	newdoc backends/sesame2/README README.sesame2
+	if use doc ; then
+		dohtml -r docs/html/
+	fi
+}


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2012-11-11 16:37 Johannes Huber
  0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2012-11-11 16:37 UTC (permalink / raw
  To: gentoo-commits

commit:     cfe9ef81b2df09c41eb6d856970685c0199f41ec
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 11 17:37:56 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Nov 11 17:38:26 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=cfe9ef81

[dev-libs/soprano] Drop unused use flag description.

Package-Manager: portage-2.2.0_alpha142

---
 dev-libs/soprano/metadata.xml |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/dev-libs/soprano/metadata.xml b/dev-libs/soprano/metadata.xml
index b992f4a..db92ac1 100644
--- a/dev-libs/soprano/metadata.xml
+++ b/dev-libs/soprano/metadata.xml
@@ -3,7 +3,6 @@
 <pkgmetadata>
 <herd>kde</herd>
 <use>
-	<flag name="clucene">Enable <pkg>dev-cpp/clucene</pkg> backend support.</flag>
 	<flag name="raptor">Enables support for <pkg>media-libs/raptor</pkg> RDF parser/serializer.</flag>
 	<flag name="redland">Enables support for the <pkg>dev-libs/redland</pkg> storage backend (really slow one).</flag>
 	<flag name="virtuoso">Enables support for <pkg>dev-db/virtuoso</pkg> storage backend.</flag>


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2012-09-10  8:50 Andreas Hüttel
  0 siblings, 0 replies; 18+ messages in thread
From: Andreas Hüttel @ 2012-09-10  8:50 UTC (permalink / raw
  To: gentoo-commits

commit:     3fa0edc9ec589087851d87032af68feefbdc5c88
Author:     Andreas K. Huettel (dilfridge) <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 10 08:52:22 2012 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Sep 10 08:52:22 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=3fa0edc9

Disable clucene index, since soprano 2.8.0 fails to build against current clucene and this combination is also not supported anymore. See http://sourceforge.net/p/soprano/bugs/19/

(Portage version: 2.2.0_alpha124/git/Linux x86_64, unsigned Manifest commit)

---
 dev-libs/soprano/soprano-9999.ebuild |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-libs/soprano/soprano-9999.ebuild b/dev-libs/soprano/soprano-9999.ebuild
index 45a9d65..2752421 100644
--- a/dev-libs/soprano/soprano-9999.ebuild
+++ b/dev-libs/soprano/soprano-9999.ebuild
@@ -20,11 +20,10 @@ HOMEPAGE="http://sourceforge.net/projects/soprano"
 
 LICENSE="LGPL-2"
 SLOT="0"
-IUSE="clucene +dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
+IUSE="+dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
 
 COMMON_DEPEND="
 	>=x11-libs/qt-core-4.5.0:4
-	clucene? ( dev-cpp/clucene )
 	dbus? ( >=x11-libs/qt-dbus-4.5.0:4 )
 	raptor? ( >=media-libs/raptor-2.0.4:2 )
 	redland? (
@@ -74,7 +73,7 @@ src_configure() {
 		-DSOPRANO_BUILD_TESTS=OFF
 		-DCMAKE_SKIP_RPATH=OFF
 		-DSOPRANO_DISABLE_SESAME2_BACKEND=ON
-		$(cmake-utils_use !clucene SOPRANO_DISABLE_CLUCENE_INDEX)
+		-DSOPRANO_DISABLE_CLUCENE_INDEX=ON
 		$(cmake-utils_use !dbus SOPRANO_DISABLE_DBUS)
 		$(cmake-utils_use !raptor SOPRANO_DISABLE_RAPTOR_PARSER)
 		$(cmake-utils_use !redland SOPRANO_DISABLE_RAPTOR_SERIALIZER)


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2012-08-05  9:53 Johannes Huber
  0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2012-08-05  9:53 UTC (permalink / raw
  To: gentoo-commits

commit:     76bca2a8651527042e414b7a90601eaf69103cfd
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  5 09:53:07 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Aug  5 09:53:07 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=76bca2a8

[dev-libs/soprano] Bump dep on dev-db/virtuoso-server.

(Portage version: 2.2.0_alpha120/git/Linux i686, unsigned Manifest commit)

---
 dev-libs/soprano/soprano-9999.ebuild |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dev-libs/soprano/soprano-9999.ebuild b/dev-libs/soprano/soprano-9999.ebuild
index 4aa9417..45a9d65 100644
--- a/dev-libs/soprano/soprano-9999.ebuild
+++ b/dev-libs/soprano/soprano-9999.ebuild
@@ -38,7 +38,7 @@ DEPEND="${COMMON_DEPEND}
 	test? ( >=x11-libs/qt-test-4.5.0:4 )
 "
 RDEPEND="${COMMON_DEPEND}
-	virtuoso? ( >=dev-db/virtuoso-server-6.1.0 )
+	virtuoso? ( >=dev-db/virtuoso-server-6.1.6 )
 "
 
 CMAKE_IN_SOURCE_BUILD="1"


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2012-08-01 23:18 Johannes Huber
  0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2012-08-01 23:18 UTC (permalink / raw
  To: gentoo-commits

commit:     a089fbc26513bba86d166ff6ec68d00e0d46de19
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  1 19:53:07 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Aug  1 19:53:07 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=a089fbc2

[dev-libs/soprano] Moved to tree.

(Portage version: 2.2.0_alpha120/git/Linux x86_64, unsigned Manifest commit)

---
 dev-libs/soprano/soprano-2.8.0.ebuild |  102 ---------------------------------
 1 files changed, 0 insertions(+), 102 deletions(-)

diff --git a/dev-libs/soprano/soprano-2.8.0.ebuild b/dev-libs/soprano/soprano-2.8.0.ebuild
deleted file mode 100644
index 5a5dfed..0000000
--- a/dev-libs/soprano/soprano-2.8.0.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-if [[ ${PV} == *9999* ]]; then
-	git_eclass="git-2"
-	EGIT_REPO_URI="git://anongit.kde.org/soprano"
-	KEYWORDS=""
-else
-	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
-fi
-
-inherit base cmake-utils flag-o-matic ${git_eclass}
-
-DESCRIPTION="Library that provides a nice Qt interface to RDF storage solutions"
-HOMEPAGE="http://sourceforge.net/projects/soprano"
-
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="clucene +dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
-
-RESTRICT=test
-# bug 281712
-
-COMMON_DEPEND="
-	>=x11-libs/qt-core-4.5.0:4
-	clucene? ( dev-cpp/clucene )
-	dbus? ( >=x11-libs/qt-dbus-4.5.0:4 )
-	raptor? ( >=media-libs/raptor-2.0.4:2 )
-	redland? (
-		>=dev-libs/rasqal-0.9.26
-		>=dev-libs/redland-1.0.14
-	)
-	virtuoso? ( dev-db/libiodbc:0 )
-"
-DEPEND="${COMMON_DEPEND}
-	doc? ( app-doc/doxygen )
-	test? ( >=x11-libs/qt-test-4.5.0:4 )
-"
-RDEPEND="${COMMON_DEPEND}
-	virtuoso? ( >=dev-db/virtuoso-server-6.1.0 )
-"
-
-CMAKE_IN_SOURCE_BUILD="1"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-2.4.4-make-broken-redland-fatal.cmake"
-)
-
-pkg_setup() {
-	if [[ ${PV} = *9999* && -z $I_KNOW_WHAT_I_AM_DOING ]]; then
-		echo
-		ewarn "WARNING! This is an experimental ebuild of ${PN} Git tree. Use at your own risk."
-		ewarn "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!"
-		echo
-	fi
-
-	if ! use virtuoso; then
-		echo
-		ewarn "You have explicitly disabled the default soprano backend."
-		ewarn "Applications using soprano may need at least one backend"
-		ewarn "to be functional. If you experience any problems, enable"
-		ewarn "the virtuoso USE flag."
-		echo
-	fi
-}
-
-src_configure() {
-	# Fix for missing pthread.h linking
-	# NOTE: temporarily fix until a better cmake files patch will be provided.
-	use elibc_FreeBSD && append-flags -pthread
-
-	local mycmakeargs=(
-		-DSOPRANO_BUILD_TESTS=OFF
-		-DCMAKE_SKIP_RPATH=OFF
-		-DSOPRANO_DISABLE_SESAME2_BACKEND=ON
-		$(cmake-utils_use !clucene SOPRANO_DISABLE_CLUCENE_INDEX)
-		$(cmake-utils_use !dbus SOPRANO_DISABLE_DBUS)
-		$(cmake-utils_use !raptor SOPRANO_DISABLE_RAPTOR_PARSER)
-		$(cmake-utils_use !redland SOPRANO_DISABLE_RAPTOR_SERIALIZER)
-		$(cmake-utils_use !redland SOPRANO_DISABLE_REDLAND_BACKEND)
-		$(cmake-utils_use !virtuoso SOPRANO_DISABLE_VIRTUOSO_BACKEND)
-		$(cmake-utils_use doc SOPRANO_BUILD_API_DOCS)
-		$(cmake-utils_use test SOPRANO_BUILD_TESTS)
-	)
-
-	cmake-utils_src_configure
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	dodoc AUTHORS ChangeLog README TODO
-	newdoc backends/virtuoso/README README.virtuoso
-	newdoc backends/sesame2/README README.sesame2
-	if use doc ; then
-		dohtml -r docs/html/
-	fi
-}


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2012-07-02 15:40 Johannes Huber
  0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2012-07-02 15:40 UTC (permalink / raw
  To: gentoo-commits

commit:     382b250cb8f0c1ba4684c201cdc2608fb9d8680c
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  2 15:39:10 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon Jul  2 15:39:10 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=382b250c

[dev-libs/soprano] Remove old.

(Portage version: 2.2.0_alpha114/git/Linux x86_64, unsigned Manifest commit)

---
 dev-libs/soprano/soprano-2.7.57.ebuild |  102 --------------------------------
 1 files changed, 0 insertions(+), 102 deletions(-)

diff --git a/dev-libs/soprano/soprano-2.7.57.ebuild b/dev-libs/soprano/soprano-2.7.57.ebuild
deleted file mode 100644
index 5a5dfed..0000000
--- a/dev-libs/soprano/soprano-2.7.57.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-if [[ ${PV} == *9999* ]]; then
-	git_eclass="git-2"
-	EGIT_REPO_URI="git://anongit.kde.org/soprano"
-	KEYWORDS=""
-else
-	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
-fi
-
-inherit base cmake-utils flag-o-matic ${git_eclass}
-
-DESCRIPTION="Library that provides a nice Qt interface to RDF storage solutions"
-HOMEPAGE="http://sourceforge.net/projects/soprano"
-
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="clucene +dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
-
-RESTRICT=test
-# bug 281712
-
-COMMON_DEPEND="
-	>=x11-libs/qt-core-4.5.0:4
-	clucene? ( dev-cpp/clucene )
-	dbus? ( >=x11-libs/qt-dbus-4.5.0:4 )
-	raptor? ( >=media-libs/raptor-2.0.4:2 )
-	redland? (
-		>=dev-libs/rasqal-0.9.26
-		>=dev-libs/redland-1.0.14
-	)
-	virtuoso? ( dev-db/libiodbc:0 )
-"
-DEPEND="${COMMON_DEPEND}
-	doc? ( app-doc/doxygen )
-	test? ( >=x11-libs/qt-test-4.5.0:4 )
-"
-RDEPEND="${COMMON_DEPEND}
-	virtuoso? ( >=dev-db/virtuoso-server-6.1.0 )
-"
-
-CMAKE_IN_SOURCE_BUILD="1"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-2.4.4-make-broken-redland-fatal.cmake"
-)
-
-pkg_setup() {
-	if [[ ${PV} = *9999* && -z $I_KNOW_WHAT_I_AM_DOING ]]; then
-		echo
-		ewarn "WARNING! This is an experimental ebuild of ${PN} Git tree. Use at your own risk."
-		ewarn "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!"
-		echo
-	fi
-
-	if ! use virtuoso; then
-		echo
-		ewarn "You have explicitly disabled the default soprano backend."
-		ewarn "Applications using soprano may need at least one backend"
-		ewarn "to be functional. If you experience any problems, enable"
-		ewarn "the virtuoso USE flag."
-		echo
-	fi
-}
-
-src_configure() {
-	# Fix for missing pthread.h linking
-	# NOTE: temporarily fix until a better cmake files patch will be provided.
-	use elibc_FreeBSD && append-flags -pthread
-
-	local mycmakeargs=(
-		-DSOPRANO_BUILD_TESTS=OFF
-		-DCMAKE_SKIP_RPATH=OFF
-		-DSOPRANO_DISABLE_SESAME2_BACKEND=ON
-		$(cmake-utils_use !clucene SOPRANO_DISABLE_CLUCENE_INDEX)
-		$(cmake-utils_use !dbus SOPRANO_DISABLE_DBUS)
-		$(cmake-utils_use !raptor SOPRANO_DISABLE_RAPTOR_PARSER)
-		$(cmake-utils_use !redland SOPRANO_DISABLE_RAPTOR_SERIALIZER)
-		$(cmake-utils_use !redland SOPRANO_DISABLE_REDLAND_BACKEND)
-		$(cmake-utils_use !virtuoso SOPRANO_DISABLE_VIRTUOSO_BACKEND)
-		$(cmake-utils_use doc SOPRANO_BUILD_API_DOCS)
-		$(cmake-utils_use test SOPRANO_BUILD_TESTS)
-	)
-
-	cmake-utils_src_configure
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	dodoc AUTHORS ChangeLog README TODO
-	newdoc backends/virtuoso/README README.virtuoso
-	newdoc backends/sesame2/README README.sesame2
-	if use doc ; then
-		dohtml -r docs/html/
-	fi
-}



^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2012-06-10 11:46 Andreas Hüttel
  0 siblings, 0 replies; 18+ messages in thread
From: Andreas Hüttel @ 2012-06-10 11:46 UTC (permalink / raw
  To: gentoo-commits

commit:     6f6a326303bb4ed3637d101b77bc1fc1120b2915
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Sun Jun 10 11:47:32 2012 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Jun 10 11:47:32 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=6f6a3263

[dev-libs/soprano] Version bump

(Portage version: 2.2.0_alpha110/git/Linux x86_64, unsigned Manifest commit)

---
 dev-libs/soprano/soprano-2.7.57.ebuild |  102 ++++++++++++++++++++++++++++++++
 1 files changed, 102 insertions(+), 0 deletions(-)

diff --git a/dev-libs/soprano/soprano-2.7.57.ebuild b/dev-libs/soprano/soprano-2.7.57.ebuild
new file mode 100644
index 0000000..5a5dfed
--- /dev/null
+++ b/dev-libs/soprano/soprano-2.7.57.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+if [[ ${PV} == *9999* ]]; then
+	git_eclass="git-2"
+	EGIT_REPO_URI="git://anongit.kde.org/soprano"
+	KEYWORDS=""
+else
+	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+	KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+fi
+
+inherit base cmake-utils flag-o-matic ${git_eclass}
+
+DESCRIPTION="Library that provides a nice Qt interface to RDF storage solutions"
+HOMEPAGE="http://sourceforge.net/projects/soprano"
+
+LICENSE="LGPL-2"
+SLOT="0"
+IUSE="clucene +dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
+
+RESTRICT=test
+# bug 281712
+
+COMMON_DEPEND="
+	>=x11-libs/qt-core-4.5.0:4
+	clucene? ( dev-cpp/clucene )
+	dbus? ( >=x11-libs/qt-dbus-4.5.0:4 )
+	raptor? ( >=media-libs/raptor-2.0.4:2 )
+	redland? (
+		>=dev-libs/rasqal-0.9.26
+		>=dev-libs/redland-1.0.14
+	)
+	virtuoso? ( dev-db/libiodbc:0 )
+"
+DEPEND="${COMMON_DEPEND}
+	doc? ( app-doc/doxygen )
+	test? ( >=x11-libs/qt-test-4.5.0:4 )
+"
+RDEPEND="${COMMON_DEPEND}
+	virtuoso? ( >=dev-db/virtuoso-server-6.1.0 )
+"
+
+CMAKE_IN_SOURCE_BUILD="1"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-2.4.4-make-broken-redland-fatal.cmake"
+)
+
+pkg_setup() {
+	if [[ ${PV} = *9999* && -z $I_KNOW_WHAT_I_AM_DOING ]]; then
+		echo
+		ewarn "WARNING! This is an experimental ebuild of ${PN} Git tree. Use at your own risk."
+		ewarn "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!"
+		echo
+	fi
+
+	if ! use virtuoso; then
+		echo
+		ewarn "You have explicitly disabled the default soprano backend."
+		ewarn "Applications using soprano may need at least one backend"
+		ewarn "to be functional. If you experience any problems, enable"
+		ewarn "the virtuoso USE flag."
+		echo
+	fi
+}
+
+src_configure() {
+	# Fix for missing pthread.h linking
+	# NOTE: temporarily fix until a better cmake files patch will be provided.
+	use elibc_FreeBSD && append-flags -pthread
+
+	local mycmakeargs=(
+		-DSOPRANO_BUILD_TESTS=OFF
+		-DCMAKE_SKIP_RPATH=OFF
+		-DSOPRANO_DISABLE_SESAME2_BACKEND=ON
+		$(cmake-utils_use !clucene SOPRANO_DISABLE_CLUCENE_INDEX)
+		$(cmake-utils_use !dbus SOPRANO_DISABLE_DBUS)
+		$(cmake-utils_use !raptor SOPRANO_DISABLE_RAPTOR_PARSER)
+		$(cmake-utils_use !redland SOPRANO_DISABLE_RAPTOR_SERIALIZER)
+		$(cmake-utils_use !redland SOPRANO_DISABLE_REDLAND_BACKEND)
+		$(cmake-utils_use !virtuoso SOPRANO_DISABLE_VIRTUOSO_BACKEND)
+		$(cmake-utils_use doc SOPRANO_BUILD_API_DOCS)
+		$(cmake-utils_use test SOPRANO_BUILD_TESTS)
+	)
+
+	cmake-utils_src_configure
+}
+
+src_install() {
+	cmake-utils_src_install
+
+	dodoc AUTHORS ChangeLog README TODO
+	newdoc backends/virtuoso/README README.virtuoso
+	newdoc backends/sesame2/README README.sesame2
+	if use doc ; then
+		dohtml -r docs/html/
+	fi
+}



^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2012-05-30 13:16 Johannes Huber
  0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2012-05-30 13:16 UTC (permalink / raw
  To: gentoo-commits

commit:     1d69271c80b182760c4541930dadc572d2669496
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed May 30 13:15:43 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed May 30 13:16:01 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=1d69271c

[dev-libs/soprano] Sync keywords with tree.

(Portage version: 2.2.0_alpha108/git/Linux x86_64, unsigned Manifest commit)

---
 dev-libs/soprano/soprano-9999.ebuild |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dev-libs/soprano/soprano-9999.ebuild b/dev-libs/soprano/soprano-9999.ebuild
index 92b0952..4aa9417 100644
--- a/dev-libs/soprano/soprano-9999.ebuild
+++ b/dev-libs/soprano/soprano-9999.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999* ]]; then
 	KEYWORDS=""
 else
 	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+	KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 
 inherit base cmake-utils flag-o-matic ${git_eclass}



^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2011-11-24  1:01 Maciej Mrozowski
  0 siblings, 0 replies; 18+ messages in thread
From: Maciej Mrozowski @ 2011-11-24  1:01 UTC (permalink / raw
  To: gentoo-commits

commit:     e5a40704284b54ad67b5006e35e736fc13de8f7f
Author:     Maciej Mrozowski <reavertm <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 24 01:01:05 2011 +0000
Commit:     Maciej Mrozowski <reavertm <AT> gentoo <DOT> org>
CommitDate: Thu Nov 24 01:01:05 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e5a40704

[dev-libs/soprano] Sync live version with latest from portage

---
 dev-libs/soprano/soprano-9999.ebuild |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-libs/soprano/soprano-9999.ebuild b/dev-libs/soprano/soprano-9999.ebuild
index b9b7255..6dc7bac 100644
--- a/dev-libs/soprano/soprano-9999.ebuild
+++ b/dev-libs/soprano/soprano-9999.ebuild
@@ -26,10 +26,10 @@ COMMON_DEPEND="
 	>=x11-libs/qt-core-4.5.0:4
 	clucene? ( dev-cpp/clucene )
 	dbus? ( >=x11-libs/qt-dbus-4.5.0:4 )
-	raptor? ( media-libs/raptor:2 )
+	raptor? ( >=media-libs/raptor-2.0.4:2 )
 	redland? (
-		>=dev-libs/rasqal-0.9.22
-		>=dev-libs/redland-1.0.12
+		>=dev-libs/rasqal-0.9.26
+		>=dev-libs/redland-1.0.14
 	)
 	virtuoso? ( dev-db/libiodbc:0 )
 "



^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2011-07-25 23:18 Jonathan Callen
  0 siblings, 0 replies; 18+ messages in thread
From: Jonathan Callen @ 2011-07-25 23:18 UTC (permalink / raw
  To: gentoo-commits

commit:     ba948cfb2f871d5fb9628770f8feaad0ed5fcfc8
Author:     Jonathan Callen <abcd <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 25 23:18:02 2011 +0000
Commit:     Jonathan Callen <abcd <AT> gentoo <DOT> org>
CommitDate: Mon Jul 25 23:18:39 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=ba948cfb

[dev-libs/soprano] Upstream now requires raptor2

---
 dev-libs/soprano/soprano-9999.ebuild |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dev-libs/soprano/soprano-9999.ebuild b/dev-libs/soprano/soprano-9999.ebuild
index 02156c4..faa494d 100644
--- a/dev-libs/soprano/soprano-9999.ebuild
+++ b/dev-libs/soprano/soprano-9999.ebuild
@@ -26,7 +26,7 @@ COMMON_DEPEND="
 	>=x11-libs/qt-core-4.5.0:4
 	clucene? ( dev-cpp/clucene )
 	dbus? ( >=x11-libs/qt-dbus-4.5.0:4 )
-	raptor? ( >=media-libs/raptor-1.4.16 )
+	raptor? ( media-libs/raptor:2 )
 	redland? (
 		>=dev-libs/rasqal-0.9.15
 		>=dev-libs/redland-1.0.10



^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
@ 2011-06-29  9:06 Alexey Shvetsov
  0 siblings, 0 replies; 18+ messages in thread
From: Alexey Shvetsov @ 2011-06-29  9:06 UTC (permalink / raw
  To: gentoo-commits

commit:     f9b9cda9bd04c4dd3f61eff1b291b2a1f7e39dd9
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 08:54:42 2011 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 08:54:42 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f9b9cda9

[dev-libs/soprano] Version bump for kde 4.7

(Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit with key F82F92E6)

---
 .../{soprano-9999.ebuild => soprano-2.6.51.ebuild} |   13 ++++++++++---
 dev-libs/soprano/soprano-9999.ebuild               |   13 ++++++++++---
 2 files changed, 20 insertions(+), 6 deletions(-)

diff --git a/dev-libs/soprano/soprano-9999.ebuild b/dev-libs/soprano/soprano-2.6.51.ebuild
similarity index 87%
copy from dev-libs/soprano/soprano-9999.ebuild
copy to dev-libs/soprano/soprano-2.6.51.ebuild
index d98db39..02156c4 100644
--- a/dev-libs/soprano/soprano-9999.ebuild
+++ b/dev-libs/soprano/soprano-2.6.51.ebuild
@@ -4,14 +4,21 @@
 
 EAPI=4
 
-inherit base cmake-utils flag-o-matic git-2
+if [[ ${PV} == *9999* ]]; then
+	git_eclass="git-2"
+	EGIT_REPO_URI="git://anongit.kde.org/soprano"
+	KEYWORDS=""
+else
+	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+	KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+fi
+
+inherit base cmake-utils flag-o-matic ${git_eclass}
 
 DESCRIPTION="Library that provides a nice Qt interface to RDF storage solutions"
 HOMEPAGE="http://sourceforge.net/projects/soprano"
-EGIT_REPO_URI="git://anongit.kde.org/soprano"
 
 LICENSE="LGPL-2"
-KEYWORDS=""
 SLOT="0"
 IUSE="clucene +dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
 

diff --git a/dev-libs/soprano/soprano-9999.ebuild b/dev-libs/soprano/soprano-9999.ebuild
index d98db39..02156c4 100644
--- a/dev-libs/soprano/soprano-9999.ebuild
+++ b/dev-libs/soprano/soprano-9999.ebuild
@@ -4,14 +4,21 @@
 
 EAPI=4
 
-inherit base cmake-utils flag-o-matic git-2
+if [[ ${PV} == *9999* ]]; then
+	git_eclass="git-2"
+	EGIT_REPO_URI="git://anongit.kde.org/soprano"
+	KEYWORDS=""
+else
+	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+	KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+fi
+
+inherit base cmake-utils flag-o-matic ${git_eclass}
 
 DESCRIPTION="Library that provides a nice Qt interface to RDF storage solutions"
 HOMEPAGE="http://sourceforge.net/projects/soprano"
-EGIT_REPO_URI="git://anongit.kde.org/soprano"
 
 LICENSE="LGPL-2"
-KEYWORDS=""
 SLOT="0"
 IUSE="clucene +dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
 



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

end of thread, other threads:[~2013-10-13 17:03 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-30 13:54 [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/ Johannes Huber
  -- strict thread matches above, loose matches on Subject: below --
2013-10-13 17:03 Johannes Huber
2013-06-21 16:24 Johannes Huber
2013-06-12 11:35 Michael Palimaka
2013-05-06 19:15 Johannes Huber
2013-02-07  5:21 Alexey Shvetsov
2013-01-04  0:09 Marc Schiffbauer
2013-01-03 21:35 Marc Schiffbauer
2012-11-11 16:37 Johannes Huber
2012-09-10  8:50 Andreas Hüttel
2012-08-05  9:53 Johannes Huber
2012-08-01 23:18 Johannes Huber
2012-07-02 15:40 Johannes Huber
2012-06-10 11:46 Andreas Hüttel
2012-05-30 13:16 Johannes Huber
2011-11-24  1:01 Maciej Mrozowski
2011-07-25 23:18 Jonathan Callen
2011-06-29  9:06 Alexey Shvetsov

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