public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2011-05-16 22:54 Jonathan Callen
  0 siblings, 0 replies; 51+ messages in thread
From: Jonathan Callen @ 2011-05-16 22:54 UTC (permalink / raw
  To: gentoo-commits

commit:     3f30c50a4acce2f960325698f102486970bd51fb
Author:     Jonathan Callen <abcd <AT> gentoo <DOT> org>
AuthorDate: Mon May 16 07:02:57 2011 +0000
Commit:     Jonathan Callen <abcd <AT> gentoo <DOT> org>
CommitDate: Mon May 16 22:54:10 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=3f30c50a

[kde-base/kdepimlibs] Disable prison support until we have an ebuild for it

(Portage version: 2.2.0_alpha32/git/Linux x86_64, signed Manifest commit with key 229E5838)

---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index aa77b98..ae647b1 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -66,6 +66,8 @@ src_configure() {
 		$(cmake-utils_use_with semantic-desktop SharedDesktopOntologies)
 		$(cmake-utils_use_with semantic-desktop Soprano)
 		$(cmake-utils_use_with semantic-desktop Nepomuk)
+		# $(cmake-utils_use_with prison)
+		-DWITH_Prison=NO
 	)
 
 	kde4-base_src_configure



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2011-05-24  5:57 Jorge Manuel B. S. Vicetto
  0 siblings, 0 replies; 51+ messages in thread
From: Jorge Manuel B. S. Vicetto @ 2011-05-24  5:57 UTC (permalink / raw
  To: gentoo-commits

commit:     f82c45efa1fab950032cb7a0010e5ef09af1704d
Author:     Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
AuthorDate: Tue May 24 05:06:43 2011 +0000
Commit:     Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
CommitDate: Tue May 24 05:06:43 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f82c45ef

[kde-base/kdepimlibs] 4.6.80 version bump.

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

---
 kde-base/kdepimlibs/kdepimlibs-4.6.80.ebuild |   74 ++++++++++++++++++++++++++
 1 files changed, 74 insertions(+), 0 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.6.80.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.6.80.ebuild
new file mode 100644
index 0000000..cf9b2fa
--- /dev/null
+++ b/kde-base/kdepimlibs/kdepimlibs-4.6.80.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="4"
+
+KDE_HANDBOOK="optional"
+CPPUNIT_REQUIRED="optional"
+KDE_SCM="git"
+inherit kde4-base
+
+DESCRIPTION="Common library for KDE PIM apps."
+HOMEPAGE="http://www.kde.org/"
+
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+LICENSE="LGPL-2.1"
+IUSE="debug ldap semantic-desktop"
+
+# some akonadi tests timeout, that probaly needs more work as its ~700 tests
+RESTRICT="test"
+
+DEPEND="
+	>=app-crypt/gpgme-1.1.6
+	>=dev-libs/boost-1.35.0-r5
+	dev-libs/libgpg-error
+	>=dev-libs/libical-0.43
+	dev-libs/cyrus-sasl
+	$(add_kdebase_dep kdelibs 'semantic-desktop=')
+	semantic-desktop? (
+		>=app-office/akonadi-server-1.4.52
+		media-libs/phonon
+		x11-misc/shared-mime-info
+	)
+	ldap? ( net-nds/openldap )
+"
+RDEPEND="${DEPEND}"
+
+# libakonadi-kcal moved here from akonadi in 4.3.86
+add_blocker akonadi '<4.3.86'
+# @since 4.3 - libkholidays is in kdepimlibs now
+add_blocker libkholidays
+# @since 4.4 - kontactinterfaces is in kdepimlibs now
+add_blocker kontactinterfaces
+
+src_prepare() {
+	kde4-base_src_prepare
+
+	# Disable hardcoded checks
+	sed -r -e '/find_package\((Akonadi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \
+		-e '/macro_log_feature\((Akonadi|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \
+		-e '/add_subdirectory\((akonadi|mailtransport)/{/macro_optional_/!s/add/macro_optional_&/}' \
+		-i CMakeLists.txt || die
+	if ! use semantic-desktop; then
+		sed -e '/include(SopranoAddOntology)/s/^/#DISABLED /' \
+			-i CMakeLists.txt || die
+		# More reliable than -DBUILD_akonadi=OFF
+		rm -r akonadi mailtransport || die
+	fi
+}
+
+src_configure() {
+	mycmakeargs=(
+		$(cmake-utils_use_build handbook doc)
+		$(cmake-utils_use_with ldap)
+		$(cmake-utils_use_with semantic-desktop Akonadi)
+		$(cmake-utils_use_with semantic-desktop SharedDesktopOntologies)
+		$(cmake-utils_use_with semantic-desktop Soprano)
+		$(cmake-utils_use_with semantic-desktop Nepomuk)
+		# $(cmake-utils_use_with prison)
+		-DWITH_Prison=NO
+	)
+
+	kde4-base_src_configure
+}



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2011-05-29 23:48 David Heidelberger
  0 siblings, 0 replies; 51+ messages in thread
From: David Heidelberger @ 2011-05-29 23:48 UTC (permalink / raw
  To: gentoo-commits

commit:     0dd723e3f53fe81651a06369a3aaa8f06fae2c8e
Author:     David Heidelberger <d.okias <AT> gmail <DOT> com>
AuthorDate: Sun May 29 23:48:14 2011 +0000
Commit:     David Heidelberger <d.okias <AT> gmail <DOT> com>
CommitDate: Sun May 29 23:48:14 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=0dd723e3

[kde-base/kdepimlibs] depend on kde-base/nepomuk

---
 kde-base/kdepimlibs/kdepimlibs-4.6.80.ebuild |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.6.80.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.6.80.ebuild
index a1413bd..26507f7 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.6.80.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.6.80.ebuild
@@ -28,6 +28,7 @@ DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	semantic-desktop? (
 		>=app-office/akonadi-server-1.4.52
+		>=kde-base/nepomuk-4.6.80
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2011-07-09 22:48 Theo Chatzimichos
  0 siblings, 0 replies; 51+ messages in thread
From: Theo Chatzimichos @ 2011-07-09 22:48 UTC (permalink / raw
  To: gentoo-commits

commit:     9bb3fbd5d0ee8ec59fcdba023917a7de6a89f5ce
Author:     Johannes Huber <johu <AT> gmx <DOT> de>
AuthorDate: Sat Jul  9 22:44:57 2011 +0000
Commit:     Theo Chatzimichos <tampakrap <AT> gentoo <DOT> org>
CommitDate: Sat Jul  9 22:48:31 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=9bb3fbd5

[kde-base/kdepimlibs] bump app-office/akonadi-server depend

---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index ae647b1..0409202 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -27,7 +27,7 @@ DEPEND="
 	dev-libs/cyrus-sasl
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.4.52
+		>=app-office/akonadi-server-1.5.80
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2011-07-13 21:52 Andreas Hüttel
  0 siblings, 0 replies; 51+ messages in thread
From: Andreas Hüttel @ 2011-07-13 21:52 UTC (permalink / raw
  To: gentoo-commits

commit:     71b342781179589c463f2919c39431c8f5d0c7a7
Author:     Andreas K. Huettel (dilfridge) <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 13 21:51:58 2011 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Wed Jul 13 21:51:58 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=71b34278

[kde-base/kdepimlibs] Raise akonadi-server dependency, bug 374319

(Portage version: 2.1.10.5/git/Linux x86_64, signed Manifest commit with key 7887F787)

---
 kde-base/kdepimlibs/kdepimlibs-4.6.95.ebuild      |    2 +-
 kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.6.95.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.6.95.ebuild
index 7162a14..437ce50 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.6.95.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.6.95.ebuild
@@ -27,7 +27,7 @@ DEPEND="
 	dev-libs/cyrus-sasl
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.4.52
+		>=app-office/akonadi-server-1.5.80
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild
index ae647b1..0409202 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild
@@ -27,7 +27,7 @@ DEPEND="
 	dev-libs/cyrus-sasl
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.4.52
+		>=app-office/akonadi-server-1.5.80
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2011-07-31 20:39 Andreas Hüttel
  0 siblings, 0 replies; 51+ messages in thread
From: Andreas Hüttel @ 2011-07-31 20:39 UTC (permalink / raw
  To: gentoo-commits

commit:     5439172881cb8bd32c9d86994f3c0d18d9507a56
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Sun Jul 31 20:34:32 2011 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Jul 31 20:34:32 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=54391728

[kde-base/kdepimlibs] Boost is only DEPEND, bug 368787

(Portage version: 2.1.10.8/git/Linux x86_64, signed Manifest commit with key B6C5F7DE)

---
 kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild |    8 +++++---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild        |    8 +++++---
 2 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild
index 0409202..72627b0 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild
@@ -19,9 +19,8 @@ IUSE="debug ldap semantic-desktop"
 # some akonadi tests timeout, that probaly needs more work as its ~700 tests
 RESTRICT="test"
 
-DEPEND="
+COMMON_DEPEND="
 	>=app-crypt/gpgme-1.1.6
-	>=dev-libs/boost-1.35.0-r5
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl
@@ -33,7 +32,10 @@ DEPEND="
 	)
 	ldap? ( net-nds/openldap )
 "
-RDEPEND="${DEPEND}"
+DEPEND="${COMMON_DEPEND}
+	>=dev-libs/boost-1.35.0-r5
+"
+RDEPEND="${COMMON_DEPEND}"
 
 # libakonadi-kcal moved here from akonadi in 4.3.86
 add_blocker akonadi '<4.3.86'

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 0409202..72627b0 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -19,9 +19,8 @@ IUSE="debug ldap semantic-desktop"
 # some akonadi tests timeout, that probaly needs more work as its ~700 tests
 RESTRICT="test"
 
-DEPEND="
+COMMON_DEPEND="
 	>=app-crypt/gpgme-1.1.6
-	>=dev-libs/boost-1.35.0-r5
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl
@@ -33,7 +32,10 @@ DEPEND="
 	)
 	ldap? ( net-nds/openldap )
 "
-RDEPEND="${DEPEND}"
+DEPEND="${COMMON_DEPEND}
+	>=dev-libs/boost-1.35.0-r5
+"
+RDEPEND="${COMMON_DEPEND}"
 
 # libakonadi-kcal moved here from akonadi in 4.3.86
 add_blocker akonadi '<4.3.86'



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2011-09-04 12:36 Alexey Shvetsov
  0 siblings, 0 replies; 51+ messages in thread
From: Alexey Shvetsov @ 2011-09-04 12:36 UTC (permalink / raw
  To: gentoo-commits

commit:     929c148bbddaaef380de8da783d9e65385b9d7cf
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  4 12:33:33 2011 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Sun Sep  4 12:33:33 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=929c148b

[kde-base/kdepimlibs] Add qrcode support

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

---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild |    3 ++-
 kde-base/kdepimlibs/metadata.xml           |    5 ++++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 72627b0..42e9cdf 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://www.kde.org/"
 
 KEYWORDS=""
 LICENSE="LGPL-2.1"
-IUSE="debug ldap semantic-desktop"
+IUSE="barcode debug ldap semantic-desktop"
 
 # some akonadi tests timeout, that probaly needs more work as its ~700 tests
 RESTRICT="test"
@@ -25,6 +25,7 @@ COMMON_DEPEND="
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
+	barcode? ( media-libs/prison )
 	semantic-desktop? (
 		>=app-office/akonadi-server-1.5.80
 		media-libs/phonon

diff --git a/kde-base/kdepimlibs/metadata.xml b/kde-base/kdepimlibs/metadata.xml
index 8d1e86a..bdc55ff 100644
--- a/kde-base/kdepimlibs/metadata.xml
+++ b/kde-base/kdepimlibs/metadata.xml
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<herd>kde</herd>
+	<herd>kde</herd>
+	<use>
+		<flag name="barcode">Enable support for QRcodes in contacts</flag>
+	</use>
 </pkgmetadata>



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2011-09-04 15:05 Alexey Shvetsov
  0 siblings, 0 replies; 51+ messages in thread
From: Alexey Shvetsov @ 2011-09-04 15:05 UTC (permalink / raw
  To: gentoo-commits

commit:     720c95fb7e5cae43fb41264a5ee97ecc09826107
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  4 15:04:25 2011 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Sun Sep  4 15:04:25 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=720c95fb

[kde-base/kdepimlibs] Enable Prison

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

---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 42e9cdf..825d90f 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -69,8 +69,7 @@ src_configure() {
 		$(cmake-utils_use_with semantic-desktop SharedDesktopOntologies)
 		$(cmake-utils_use_with semantic-desktop Soprano)
 		$(cmake-utils_use_with semantic-desktop Nepomuk)
-		# $(cmake-utils_use_with prison)
-		-DWITH_Prison=NO
+		$(cmake-utils_use_with prison Prison)
 	)
 
 	kde4-base_src_configure



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2011-09-04 15:10 Alexey Shvetsov
  0 siblings, 0 replies; 51+ messages in thread
From: Alexey Shvetsov @ 2011-09-04 15:10 UTC (permalink / raw
  To: gentoo-commits

commit:     c54f391a96df4280454fca945e50374ad2c22ce2
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  4 15:09:25 2011 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Sun Sep  4 15:09:25 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=c54f391a

[kde-base/kdepimlibs] Rename use

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

---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild |    4 ++--
 kde-base/kdepimlibs/metadata.xml           |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 825d90f..b26c0ad 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://www.kde.org/"
 
 KEYWORDS=""
 LICENSE="LGPL-2.1"
-IUSE="barcode debug ldap semantic-desktop"
+IUSE="debug ldap +prison semantic-desktop"
 
 # some akonadi tests timeout, that probaly needs more work as its ~700 tests
 RESTRICT="test"
@@ -25,7 +25,7 @@ COMMON_DEPEND="
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
-	barcode? ( media-libs/prison )
+	prison? ( media-libs/prison )
 	semantic-desktop? (
 		>=app-office/akonadi-server-1.5.80
 		media-libs/phonon

diff --git a/kde-base/kdepimlibs/metadata.xml b/kde-base/kdepimlibs/metadata.xml
index bdc55ff..d19719a 100644
--- a/kde-base/kdepimlibs/metadata.xml
+++ b/kde-base/kdepimlibs/metadata.xml
@@ -3,6 +3,6 @@
 <pkgmetadata>
 	<herd>kde</herd>
 	<use>
-		<flag name="barcode">Enable support for QRcodes in contacts</flag>
+		<flag name="prison">Enable support for QRcodes in contacts</flag>
 	</use>
 </pkgmetadata>



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2011-09-07 21:23 Alexey Shvetsov
  0 siblings, 0 replies; 51+ messages in thread
From: Alexey Shvetsov @ 2011-09-07 21:23 UTC (permalink / raw
  To: gentoo-commits

commit:     e9da2ee2791665a80335fc1e7cd0cd0ffd45374c
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Wed Sep  7 21:22:39 2011 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Wed Sep  7 21:22:39 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e9da2ee2

[kde-base/kdepimlibs] Drop old blockers

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

---
 kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild |    7 -------
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild        |    7 -------
 2 files changed, 0 insertions(+), 14 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild
index 72627b0..7468608 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.7.49.9999.ebuild
@@ -37,13 +37,6 @@ DEPEND="${COMMON_DEPEND}
 "
 RDEPEND="${COMMON_DEPEND}"
 
-# libakonadi-kcal moved here from akonadi in 4.3.86
-add_blocker akonadi '<4.3.86'
-# @since 4.3 - libkholidays is in kdepimlibs now
-add_blocker libkholidays
-# @since 4.4 - kontactinterfaces is in kdepimlibs now
-add_blocker kontactinterfaces
-
 src_prepare() {
 	kde4-base_src_prepare
 

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index b26c0ad..ee98624 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -38,13 +38,6 @@ DEPEND="${COMMON_DEPEND}
 "
 RDEPEND="${COMMON_DEPEND}"
 
-# libakonadi-kcal moved here from akonadi in 4.3.86
-add_blocker akonadi '<4.3.86'
-# @since 4.3 - libkholidays is in kdepimlibs now
-add_blocker libkholidays
-# @since 4.4 - kontactinterfaces is in kdepimlibs now
-add_blocker kontactinterfaces
-
 src_prepare() {
 	kde4-base_src_prepare
 



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-01-24 23:02 Andreas Hüttel
  0 siblings, 0 replies; 51+ messages in thread
From: Andreas Hüttel @ 2012-01-24 23:02 UTC (permalink / raw
  To: gentoo-commits

commit:     ccacdad0183b3f61e09660c1b10e636a300bace6
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Tue Jan 24 23:03:28 2012 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue Jan 24 23:03:28 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=ccacdad0

[kde-base/kdepimlibs] Raise required akonadi-server version

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

---
 kde-base/kdepimlibs/kdepimlibs-4.8.0.ebuild       |    2 +-
 kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild |    2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild        |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.8.0.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.8.0.ebuild
index b79a86a..76614c8 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.8.0.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.8.0.ebuild
@@ -27,7 +27,7 @@ COMMON_DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.5.80
+		>=app-office/akonadi-server-1.7.0
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild
index eff6faf..da25079 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild
@@ -27,7 +27,7 @@ COMMON_DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.5.80
+		>=app-office/akonadi-server-1.7.0
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index eff6faf..da25079 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -27,7 +27,7 @@ COMMON_DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.5.80
+		>=app-office/akonadi-server-1.7.0
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-03-07 21:39 Andreas Hüttel
  0 siblings, 0 replies; 51+ messages in thread
From: Andreas Hüttel @ 2012-03-07 21:39 UTC (permalink / raw
  To: gentoo-commits

commit:     33aa910c7533dc45ac337c2018f3304b732df8f8
Author:     Andreas K. Huettel (dilfridge) <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  7 21:39:52 2012 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Wed Mar  7 21:39:52 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=33aa910c

[kde-base/kdepimlibs] Re-fix build without akonadi, bug 400827

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

---
 kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild |    1 +
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild        |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild
index da25079..efd2865 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild
@@ -62,6 +62,7 @@ src_configure() {
 		$(cmake-utils_use_with semantic-desktop SharedDesktopOntologies)
 		$(cmake-utils_use_with semantic-desktop Soprano)
 		$(cmake-utils_use_with semantic-desktop Nepomuk)
+		$(cmake-utils_use !semantic-desktop KALARM_USE_KRESOURCES)
 		$(cmake-utils_use_with prison Prison)
 	)
 

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index da25079..efd2865 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -62,6 +62,7 @@ src_configure() {
 		$(cmake-utils_use_with semantic-desktop SharedDesktopOntologies)
 		$(cmake-utils_use_with semantic-desktop Soprano)
 		$(cmake-utils_use_with semantic-desktop Nepomuk)
+		$(cmake-utils_use !semantic-desktop KALARM_USE_KRESOURCES)
 		$(cmake-utils_use_with prison Prison)
 	)
 



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-04-02 15:57 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2012-04-02 15:57 UTC (permalink / raw
  To: gentoo-commits

commit:     fedf257bfa25a11f31d525a46fd353044187f83f
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  2 15:57:28 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon Apr  2 15:57:28 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=fedf257b

[kde-base/kdepimlibs] Drop default enabled use flag prison as it is not a critical feature.

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

---
 kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild |    2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild        |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild
index efd2865..f4909b1 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://www.kde.org/"
 
 KEYWORDS=""
 LICENSE="LGPL-2.1"
-IUSE="debug ldap +prison semantic-desktop"
+IUSE="debug ldap prison semantic-desktop"
 
 # some akonadi tests timeout, that probaly needs more work as its ~700 tests
 RESTRICT="test"

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index efd2865..f4909b1 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://www.kde.org/"
 
 KEYWORDS=""
 LICENSE="LGPL-2.1"
-IUSE="debug ldap +prison semantic-desktop"
+IUSE="debug ldap prison semantic-desktop"
 
 # some akonadi tests timeout, that probaly needs more work as its ~700 tests
 RESTRICT="test"



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-05-25 18:12 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2012-05-25 18:12 UTC (permalink / raw
  To: gentoo-commits

commit:     3cc9b6f682c646637e460f6e73ed274e0fd3fb7e
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Fri May 25 18:11:43 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Fri May 25 18:11:43 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=3cc9b6f6

[kde-base/kdepimlibs] Drop dep on nepomuk-core here.

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

---
 kde-base/kdepimlibs/kdepimlibs-4.8.80.ebuild |    1 -
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild   |    1 -
 2 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.8.80.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.8.80.ebuild
index 64caf45..09911bb 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.8.80.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.8.80.ebuild
@@ -24,7 +24,6 @@ COMMON_DEPEND="
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl
-	$(add_kdebase_dep nepomuk-core)
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 00cb1eb..2d5c96a 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -24,7 +24,6 @@ COMMON_DEPEND="
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl
-	$(add_kdebase_dep nepomuk-core)
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-05-30  8:57 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2012-05-30  8:57 UTC (permalink / raw
  To: gentoo-commits

commit:     391584b3c64710c56ee02a3f36b3ba6165290df2
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed May 30 08:56:43 2012 +0000
Commit:     Michael Palimaka <kensington <AT> astralcloak <DOT> net>
CommitDate: Wed May 30 08:56:43 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=391584b3

[kde-base/kdepimlibs] Make boost an rdep too, for bug #418071.

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

---
 kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild |   10 +++++-----
 kde-base/kdepimlibs/kdepimlibs-4.8.80.ebuild      |   10 +++++-----
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild        |   10 +++++-----
 3 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild
index 2d5c96a..c8f21f7 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.8.49.9999.ebuild
@@ -19,8 +19,9 @@ IUSE="debug ldap prison semantic-desktop"
 # some akonadi tests timeout, that probaly needs more work as its ~700 tests
 RESTRICT="test"
 
-COMMON_DEPEND="
+DEPEND="
 	>=app-crypt/gpgme-1.1.6
+	>=dev-libs/boost-1.35.0-r5
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl
@@ -33,10 +34,9 @@ COMMON_DEPEND="
 	)
 	ldap? ( net-nds/openldap )
 "
-DEPEND="${COMMON_DEPEND}
-	>=dev-libs/boost-1.35.0-r5
-"
-RDEPEND="${COMMON_DEPEND}"
+# boost is not linked to, but headers which include it are installed
+# bug #418071
+RDEPEND="${DEPEND}"
 
 src_prepare() {
 	kde4-base_src_prepare

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.8.80.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.8.80.ebuild
index 09911bb..a41c99c 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.8.80.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.8.80.ebuild
@@ -19,8 +19,9 @@ IUSE="debug ldap prison semantic-desktop"
 # some akonadi tests timeout, that probaly needs more work as its ~700 tests
 RESTRICT="test"
 
-COMMON_DEPEND="
+DEPEND="
 	>=app-crypt/gpgme-1.1.6
+	>=dev-libs/boost-1.35.0-r5
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl
@@ -33,10 +34,9 @@ COMMON_DEPEND="
 	)
 	ldap? ( net-nds/openldap )
 "
-DEPEND="${COMMON_DEPEND}
-	>=dev-libs/boost-1.35.0-r5
-"
-RDEPEND="${COMMON_DEPEND}"
+# boost is not linked to, but headers which include it are installed
+# bug #418071
+RDEPEND="${DEPEND}"
 
 src_prepare() {
 	kde4-base_src_prepare

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 2d5c96a..c8f21f7 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -19,8 +19,9 @@ IUSE="debug ldap prison semantic-desktop"
 # some akonadi tests timeout, that probaly needs more work as its ~700 tests
 RESTRICT="test"
 
-COMMON_DEPEND="
+DEPEND="
 	>=app-crypt/gpgme-1.1.6
+	>=dev-libs/boost-1.35.0-r5
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl
@@ -33,10 +34,9 @@ COMMON_DEPEND="
 	)
 	ldap? ( net-nds/openldap )
 "
-DEPEND="${COMMON_DEPEND}
-	>=dev-libs/boost-1.35.0-r5
-"
-RDEPEND="${COMMON_DEPEND}"
+# boost is not linked to, but headers which include it are installed
+# bug #418071
+RDEPEND="${DEPEND}"
 
 src_prepare() {
 	kde4-base_src_prepare



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-06-28 13:16 Andreas Hüttel
  0 siblings, 0 replies; 51+ messages in thread
From: Andreas Hüttel @ 2012-06-28 13:16 UTC (permalink / raw
  To: gentoo-commits

commit:     113408902bae5f14fb86dd29e637021e8bd0d41a
Author:     Andreas K. Huettel <mail <AT> akhuettel <DOT> de>
AuthorDate: Thu Jun 28 13:15:57 2012 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Jun 28 13:15:57 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=11340890

[kde-base/kdepimlibs] Raise akonadi-server version requirement

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

---
 kde-base/kdepimlibs/kdepimlibs-4.8.95.ebuild      |    2 +-
 kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild |    2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild        |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.8.95.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.8.95.ebuild
index a41c99c..e29ff4e 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.8.95.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.8.95.ebuild
@@ -28,7 +28,7 @@ DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.7.0
+		>=app-office/akonadi-server-1.7.90
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild
index c8f21f7..4d69e6c 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild
@@ -28,7 +28,7 @@ DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.7.0
+		>=app-office/akonadi-server-1.7.90
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index c8f21f7..4d69e6c 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -28,7 +28,7 @@ DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.7.0
+		>=app-office/akonadi-server-1.7.90
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)



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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-07-25 21:15 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2012-07-25 21:15 UTC (permalink / raw
  To: gentoo-commits

commit:     7b6c0fe3be07c6abc81abb04ca996addc20eb877
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 25 21:14:10 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Jul 25 21:14:10 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=7b6c0fe3

[kde-base/kdepimlibs] Bump required akonadi-server.

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

---
 kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild |    2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild        |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild
index 4d69e6c..758d5ac 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild
@@ -28,7 +28,7 @@ DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.7.90
+		>=app-office/akonadi-server-1.8.0
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 4d69e6c..758d5ac 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -28,7 +28,7 @@ DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.7.90
+		>=app-office/akonadi-server-1.8.0
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-10-09  7:29 Patrick Lauer
  0 siblings, 0 replies; 51+ messages in thread
From: Patrick Lauer @ 2012-10-09  7:29 UTC (permalink / raw
  To: gentoo-commits

commit:     e5f00734bd323b9857eca2bf0e954c71dab85119
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  9 07:28:51 2012 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Tue Oct  9 07:28:51 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e5f00734

Fixing kdepimlibs a bit

---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index c90a296..517e058 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -24,6 +24,7 @@ DEPEND="
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl
+	dev-libs/qjson
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
@@ -69,3 +70,8 @@ src_configure() {
 
 	kde4-base_src_configure
 }
+
+src_install() {
+	kde4-base_src_install
+	rm ${D}/usr/share/apps/cmake/modules/FindQJSON.cmake
+}


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-10-13 22:08 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2012-10-13 22:08 UTC (permalink / raw
  To: gentoo-commits

commit:     816ae4d18e57ca5e064073bf7d23f71d5b52fcd9
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 13 22:06:43 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sat Oct 13 22:06:43 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=816ae4d1

[kde-base/kdepimlibs] Drop HOMEPAGE, handled by eclass.

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

---
 kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild |    2 --
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild        |    4 +---
 2 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild
index c90a296..06632e4 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild
@@ -9,8 +9,6 @@ CPPUNIT_REQUIRED="optional"
 inherit kde4-base
 
 DESCRIPTION="Common library for KDE PIM apps."
-HOMEPAGE="http://www.kde.org/"
-
 KEYWORDS=""
 LICENSE="LGPL-2.1"
 IUSE="debug ldap prison semantic-desktop"

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 517e058..dc4b21e 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -9,8 +9,6 @@ CPPUNIT_REQUIRED="optional"
 inherit kde4-base
 
 DESCRIPTION="Common library for KDE PIM apps."
-HOMEPAGE="http://www.kde.org/"
-
 KEYWORDS=""
 LICENSE="LGPL-2.1"
 IUSE="debug ldap prison semantic-desktop"
@@ -73,5 +71,5 @@ src_configure() {
 
 src_install() {
 	kde4-base_src_install
-	rm ${D}/usr/share/apps/cmake/modules/FindQJSON.cmake
+	rm "${D}"/usr/share/apps/cmake/modules/FindQJSON.cmake
 }


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-11-06 11:13 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2012-11-06 11:13 UTC (permalink / raw
  To: gentoo-commits

commit:     f52579f956feca0820efa60e0e5d5bbb66a9d465
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  6 11:10:33 2012 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Tue Nov  6 11:10:33 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f52579f9

[kde-base/kdepimlibs] Raise minimum dependency on app-office/akonadi-server, wrt bug #441016.

Package-Manager: portage-2.1.11.31

---
 kde-base/kdepimlibs/kdepimlibs-4.9.3.ebuild       |    2 +-
 kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild |    2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild        |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.9.3.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.9.3.ebuild
index 8771790..68b45f9 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.9.3.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.9.3.ebuild
@@ -25,7 +25,7 @@ DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.8.0
+		>=app-office/akonadi-server-1.8.1
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild
index 06632e4..2604162 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.9.49.9999.ebuild
@@ -25,7 +25,7 @@ DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.8.0
+		>=app-office/akonadi-server-1.8.1
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index dc4b21e..6531870 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -26,7 +26,7 @@ DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.8.0
+		>=app-office/akonadi-server-1.8.1
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-11-11 10:58 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2012-11-11 10:58 UTC (permalink / raw
  To: gentoo-commits

commit:     78d94c417cee368da61a431b6e88d0945c2c7d6f
Author:     layman <layman <AT> localhost>
AuthorDate: Sun Nov 11 11:55:29 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Nov 11 11:55:29 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=78d94c41

[kde-base/kdepimlibs] Bump dep on app-office/akonadi-server.

Package-Manager: portage-2.2.0_alpha142

---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 6531870..8f8dcaf 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -26,7 +26,7 @@ DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.8.1
+		>=app-office/akonadi-server-1.8.51
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-11-16 21:23 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2012-11-16 21:23 UTC (permalink / raw
  To: gentoo-commits

commit:     e05a32ce9715fc945e613c933ef4853a4f668068
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 16 22:22:34 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Fri Nov 16 22:22:34 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e05a32ce

[kde-base/kdepimlibs] Bump req app-office/akonadi-server.

Package-Manager: portage-2.2.0_alpha142

---
 kde-base/kdepimlibs/kdepimlibs-4.9.80.ebuild |    2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.9.80.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.9.80.ebuild
index e94c711..1a22b88 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.9.80.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.9.80.ebuild
@@ -26,7 +26,7 @@ DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.8.51
+		>=app-office/akonadi-server-1.8.80
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index ce2bae8..ca29624 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -26,7 +26,7 @@ DEPEND="
 	$(add_kdebase_dep kdelibs 'semantic-desktop=')
 	prison? ( media-libs/prison )
 	semantic-desktop? (
-		>=app-office/akonadi-server-1.8.51
+		>=app-office/akonadi-server-1.8.80
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-11-23  4:37 Chris Reffett
  0 siblings, 0 replies; 51+ messages in thread
From: Chris Reffett @ 2012-11-23  4:37 UTC (permalink / raw
  To: gentoo-commits

commit:     91505e282ae110cc6b2b548648bb074c9fc9de1d
Author:     Chris Reffett <creffett <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 23 04:36:28 2012 +0000
Commit:     Chris Reffett <geekboy72 <AT> gmail <DOT> com>
CommitDate: Fri Nov 23 04:36:28 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=91505e28

[kde-base/kdepimlibs] Block akonadi-social-utils (merged into kdepimlibs for 4.10) and remove a cmake file that collides with net-im/choqok

Package-Manager: portage-2.2.0_alpha142

---
 kde-base/kdepimlibs/kdepimlibs-4.9.80.ebuild |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.9.80.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.9.80.ebuild
index 1a22b88..f578478 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.9.80.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.9.80.ebuild
@@ -17,6 +17,7 @@ IUSE="debug ldap prison semantic-desktop"
 RESTRICT="test"
 
 DEPEND="
+	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
 	>=dev-libs/boost-1.35.0-r5
 	dev-libs/libgpg-error
@@ -72,4 +73,5 @@ src_configure() {
 src_install() {
 	kde4-base_src_install
 	rm "${D}"/usr/share/apps/cmake/modules/FindQJSON.cmake
+	rm "${D}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with	net-im/choqok
 }


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2012-11-23  4:41 Chris Reffett
  0 siblings, 0 replies; 51+ messages in thread
From: Chris Reffett @ 2012-11-23  4:41 UTC (permalink / raw
  To: gentoo-commits

commit:     26f44c82a25cb159ddf5cf694df9ddaf70548437
Author:     Chris Reffett <creffett <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 23 04:40:59 2012 +0000
Commit:     Chris Reffett <geekboy72 <AT> gmail <DOT> com>
CommitDate: Fri Nov 23 04:40:59 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=26f44c82

[kde-base/kdepimlibs] Also add collision fixes to live version

Package-Manager: portage-2.2.0_alpha142

---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index ca29624..227c711 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -17,6 +17,7 @@ IUSE="debug ldap prison semantic-desktop"
 RESTRICT="test"
 
 DEPEND="
+	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
 	>=dev-libs/boost-1.35.0-r5
 	dev-libs/libgpg-error
@@ -72,4 +73,5 @@ src_configure() {
 src_install() {
 	kde4-base_src_install
 	rm "${D}"/usr/share/apps/cmake/modules/FindQJSON.cmake
+	rm "${D}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with	net-im/choqok
 }


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2013-01-05 15:59 Chris Reffett
  0 siblings, 0 replies; 51+ messages in thread
From: Chris Reffett @ 2013-01-05 15:59 UTC (permalink / raw
  To: gentoo-commits

commit:     59f1933732fffb8d1279b566cd7a2dbe5ef04dd7
Author:     Chris Reffett <creffett <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  5 15:56:41 2013 +0000
Commit:     Chris Reffett <geekboy72 <AT> gmail <DOT> com>
CommitDate: Sat Jan  5 15:56:41 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=59f19337

[kde-base/kdepimlibs] Change sed line to fix bug 450350, credit to Franz Fellner for the fix

Package-Manager: portage-2.2.0_alpha149

---
 kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild |    2 +-
 kde-base/kdepimlibs/kdepimlibs-4.9.97.ebuild       |    2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
index 28c12db..be92a75 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
@@ -44,7 +44,7 @@ src_prepare() {
 
 	# Disable hardcoded checks
 	sed -r -e '/find_package\((Akonadi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \
-		-e '/macro_log_feature\((Akonadi|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \
+		-e '/set_package_properties\((Akonadi|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)/s/ REQUIRED / OPTIONAL /' \
 		-e '/add_subdirectory\((akonadi|mailtransport)/{/macro_optional_/!s/add/macro_optional_&/}' \
 		-i CMakeLists.txt || die
 	if ! use semantic-desktop; then

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.9.97.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.9.97.ebuild
index 8ccb8d1..9cf3f20 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.9.97.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.9.97.ebuild
@@ -44,7 +44,7 @@ src_prepare() {
 
 	# Disable hardcoded checks
 	sed -r -e '/find_package\((Akonadi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \
-		-e '/macro_log_feature\((Akonadi|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \
+		-e '/set_package_properties\((Akonadi|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)/s/ REQUIRED / OPTIONAL /' \
 		-e '/add_subdirectory\((akonadi|mailtransport)/{/macro_optional_/!s/add/macro_optional_&/}' \
 		-i CMakeLists.txt || die
 	if ! use semantic-desktop; then

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 28c12db..be92a75 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -44,7 +44,7 @@ src_prepare() {
 
 	# Disable hardcoded checks
 	sed -r -e '/find_package\((Akonadi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \
-		-e '/macro_log_feature\((Akonadi|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \
+		-e '/set_package_properties\((Akonadi|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)/s/ REQUIRED / OPTIONAL /' \
 		-e '/add_subdirectory\((akonadi|mailtransport)/{/macro_optional_/!s/add/macro_optional_&/}' \
 		-i CMakeLists.txt || die
 	if ! use semantic-desktop; then


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2013-02-01 16:39 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2013-02-01 16:39 UTC (permalink / raw
  To: gentoo-commits

commit:     9d0fa4bf95f71ea64dcb24c83b19ed3869cd2833
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  1 16:38:52 2013 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Feb  1 16:38:52 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=9d0fa4bf

[kde-base/kdepimlibs] Use nepomuk-core wrt bug #453190.

Package-Manager: portage-2.1.11.50

---
 kde-base/kdepimlibs/kdepimlibs-4.10.0.ebuild       |    3 ++-
 kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild |    3 ++-
 kde-base/kdepimlibs/kdepimlibs-4.9.98.ebuild       |    3 ++-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         |    3 ++-
 4 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.10.0.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.10.0.ebuild
index 9cf3f20..0602c0f 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.10.0.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.10.0.ebuild
@@ -28,6 +28,7 @@ DEPEND="
 	prison? ( media-libs/prison )
 	semantic-desktop? (
 		>=app-office/akonadi-server-1.9.0
+		$(add_kdebase_dep nepomuk-core)
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)
@@ -62,7 +63,7 @@ src_configure() {
 		$(cmake-utils_use_with semantic-desktop Akonadi)
 		$(cmake-utils_use_with semantic-desktop SharedDesktopOntologies)
 		$(cmake-utils_use_with semantic-desktop Soprano)
-		$(cmake-utils_use_with semantic-desktop Nepomuk)
+		$(cmake-utils_use_with semantic-desktop NepomukCore)
 		$(cmake-utils_use !semantic-desktop KALARM_USE_KRESOURCES)
 		$(cmake-utils_use_with prison)
 	)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
index be92a75..9cf2461 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
@@ -28,6 +28,7 @@ DEPEND="
 	prison? ( media-libs/prison )
 	semantic-desktop? (
 		>=app-office/akonadi-server-1.9.0
+		$(add_kdebase_dep nepomuk-core)
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)
@@ -62,7 +63,7 @@ src_configure() {
 		$(cmake-utils_use_with semantic-desktop Akonadi)
 		$(cmake-utils_use_with semantic-desktop SharedDesktopOntologies)
 		$(cmake-utils_use_with semantic-desktop Soprano)
-		$(cmake-utils_use_with semantic-desktop Nepomuk)
+		$(cmake-utils_use_with semantic-desktop NepomukCore)
 		$(cmake-utils_use !semantic-desktop KALARM_USE_KRESOURCES)
 		$(cmake-utils_use_with prison)
 	)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.9.98.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.9.98.ebuild
index 9cf3f20..0602c0f 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.9.98.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.9.98.ebuild
@@ -28,6 +28,7 @@ DEPEND="
 	prison? ( media-libs/prison )
 	semantic-desktop? (
 		>=app-office/akonadi-server-1.9.0
+		$(add_kdebase_dep nepomuk-core)
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)
@@ -62,7 +63,7 @@ src_configure() {
 		$(cmake-utils_use_with semantic-desktop Akonadi)
 		$(cmake-utils_use_with semantic-desktop SharedDesktopOntologies)
 		$(cmake-utils_use_with semantic-desktop Soprano)
-		$(cmake-utils_use_with semantic-desktop Nepomuk)
+		$(cmake-utils_use_with semantic-desktop NepomukCore)
 		$(cmake-utils_use !semantic-desktop KALARM_USE_KRESOURCES)
 		$(cmake-utils_use_with prison)
 	)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index be92a75..9cf2461 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -28,6 +28,7 @@ DEPEND="
 	prison? ( media-libs/prison )
 	semantic-desktop? (
 		>=app-office/akonadi-server-1.9.0
+		$(add_kdebase_dep nepomuk-core)
 		media-libs/phonon
 		x11-misc/shared-mime-info
 	)
@@ -62,7 +63,7 @@ src_configure() {
 		$(cmake-utils_use_with semantic-desktop Akonadi)
 		$(cmake-utils_use_with semantic-desktop SharedDesktopOntologies)
 		$(cmake-utils_use_with semantic-desktop Soprano)
-		$(cmake-utils_use_with semantic-desktop Nepomuk)
+		$(cmake-utils_use_with semantic-desktop NepomukCore)
 		$(cmake-utils_use !semantic-desktop KALARM_USE_KRESOURCES)
 		$(cmake-utils_use_with prison)
 	)


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2013-02-08 15:18 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2013-02-08 15:18 UTC (permalink / raw
  To: gentoo-commits

commit:     8b28c4d91d6f01822370c68b3ccd1cc082947b94
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  8 15:18:12 2013 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Feb  8 15:18:12 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=8b28c4d9

[kde-base/kdepimlibs] Fix automagic dependencies wrt bug #456156.

Package-Manager: portage-2.1.11.50

---
 kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild |    4 ++--
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
index 9cf2461..e62ce45 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
@@ -59,13 +59,13 @@ src_prepare() {
 src_configure() {
 	mycmakeargs=(
 		$(cmake-utils_use_build handbook doc)
-		$(cmake-utils_use_with ldap)
+		$(cmake-utils_use_find_package ldap)
 		$(cmake-utils_use_with semantic-desktop Akonadi)
 		$(cmake-utils_use_with semantic-desktop SharedDesktopOntologies)
 		$(cmake-utils_use_with semantic-desktop Soprano)
 		$(cmake-utils_use_with semantic-desktop NepomukCore)
 		$(cmake-utils_use !semantic-desktop KALARM_USE_KRESOURCES)
-		$(cmake-utils_use_with prison)
+		$(cmake-utils_use_find_package prison)
 	)
 
 	kde4-base_src_configure

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 9cf2461..e62ce45 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -59,13 +59,13 @@ src_prepare() {
 src_configure() {
 	mycmakeargs=(
 		$(cmake-utils_use_build handbook doc)
-		$(cmake-utils_use_with ldap)
+		$(cmake-utils_use_find_package ldap)
 		$(cmake-utils_use_with semantic-desktop Akonadi)
 		$(cmake-utils_use_with semantic-desktop SharedDesktopOntologies)
 		$(cmake-utils_use_with semantic-desktop Soprano)
 		$(cmake-utils_use_with semantic-desktop NepomukCore)
 		$(cmake-utils_use !semantic-desktop KALARM_USE_KRESOURCES)
-		$(cmake-utils_use_with prison)
+		$(cmake-utils_use_find_package prison)
 	)
 
 	kde4-base_src_configure


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2013-03-03 15:57 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2013-03-03 15:57 UTC (permalink / raw
  To: gentoo-commits

commit:     022bd55dd7185da4b183124d53d9b777343e4f8c
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  3 15:56:58 2013 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Mar  3 15:56:58 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=022bd55d

[kde-base/kdepimlibs] Add subslot dependency for boost.

Package-Manager: portage-2.1.11.53

---
 kde-base/kdepimlibs/kdepimlibs-4.10.1.ebuild       |    2 +-
 kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild |    2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.10.1.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.10.1.ebuild
index 0df302e..b2bf9b5 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.10.1.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.10.1.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=dev-libs/boost-1.35.0-r5
+	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
index e62ce45..e58ab30 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=dev-libs/boost-1.35.0-r5
+	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index e62ce45..e58ab30 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=dev-libs/boost-1.35.0-r5
+	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2013-06-02 11:43 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2013-06-02 11:43 UTC (permalink / raw
  To: gentoo-commits

commit:     76926b33d173182d91608e2100fd27052130f2c7
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  2 11:39:53 2013 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Jun  2 11:39:53 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=76926b33

[kde-base/kdepimlibs] Raise dep on app-office/akonadi-server.

Package-Manager: portage-2.2.0_alpha177

---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index e9f342e..d927966 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -20,7 +20,7 @@ DEPEND="
 	!kde-misc/akonadi-social-utils
 	$(add_kdebase_dep nepomuk-core)
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.9.0
+	>=app-office/akonadi-server-1.9.52
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2013-06-12  8:09 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2013-06-12  8:09 UTC (permalink / raw
  To: gentoo-commits

commit:     db3920fc0062eeef8a049b036e0f831620f07a44
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 12 08:07:43 2013 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Jun 12 08:07:43 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=db3920fc

[kde-base/kdepimlibs] Raise qjson dep wrt bug #472988.

Package-Manager: portage-2.1.12.4

---
 kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild | 2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
index 423d124..7b33d34 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.10.49.9999.ebuild
@@ -23,7 +23,7 @@ DEPEND="
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl
-	dev-libs/qjson
+	>=dev-libs/qjson-0.8.1
 	$(add_kdebase_dep kdelibs 'semantic-desktop(+)?')
 	prison? ( media-libs/prison )
 	semantic-desktop? (

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index d927966..93ba5ef 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -25,7 +25,7 @@ DEPEND="
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43
 	dev-libs/cyrus-sasl
-	dev-libs/qjson
+	>=dev-libs/qjson-0.8.1
 	media-libs/phonon
 	x11-misc/shared-mime-info
 	prison? ( media-libs/prison )


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2013-07-25 22:21 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2013-07-25 22:21 UTC (permalink / raw
  To: gentoo-commits

commit:     15f5f2dd9fcd5cc502adb895bff288c61aa230bc
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 25 22:18:57 2013 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu Jul 25 22:18:57 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=15f5f2dd

[kde-base/kdepimlibs] Raise dep on app-office/akonadi-server by upstream.

Package-Manager: portage-2.2.0_alpha188

---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 93ba5ef..565cdb9 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -20,7 +20,7 @@ DEPEND="
 	!kde-misc/akonadi-social-utils
 	$(add_kdebase_dep nepomuk-core)
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.9.52
+	>=app-office/akonadi-server-1.10.43
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2013-08-19 16:25 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2013-08-19 16:25 UTC (permalink / raw
  To: gentoo-commits

commit:     dfac3a542368333c28eb491028e5d5d1ee7973bb
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 19 16:21:23 2013 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Mon Aug 19 16:22:11 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=dfac3a54

[kde-base/kdepimlibs] Use ED instead of D when dealing with installation image.

Package-Manager: portage-2.2.0

---
 kde-base/kdepimlibs/kdepimlibs-4.11.49.9999.ebuild | 4 ++--
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.11.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.11.49.9999.ebuild
index 1d0de82..8bb82b0 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.11.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.11.49.9999.ebuild
@@ -49,6 +49,6 @@ src_configure() {
 
 src_install() {
 	kde4-base_src_install
-	rm "${D}"/usr/share/apps/cmake/modules/FindQJSON.cmake
-	rm "${D}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with	net-im/choqok
+	rm "${ED}"/usr/share/apps/cmake/modules/FindQJSON.cmake
+	rm "${ED}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with	net-im/choqok
 }

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 565cdb9..fd38028 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -49,6 +49,6 @@ src_configure() {
 
 src_install() {
 	kde4-base_src_install
-	rm "${D}"/usr/share/apps/cmake/modules/FindQJSON.cmake
-	rm "${D}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with	net-im/choqok
+	rm "${ED}"/usr/share/apps/cmake/modules/FindQJSON.cmake
+	rm "${ED}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with net-im/choqok
 }


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2013-10-06 19:57 Chris Reffett
  0 siblings, 0 replies; 51+ messages in thread
From: Chris Reffett @ 2013-10-06 19:57 UTC (permalink / raw
  To: gentoo-commits

commit:     b4b9aabb370292cbac0ba1e52c1ea1a27bcc2d3e
Author:     Chris Reffett <creffett <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  6 05:15:29 2013 +0000
Commit:     Chris Reffett <creffett <AT> gentoo <DOT> org>
CommitDate: Sun Oct  6 05:15:29 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b4b9aabb

[kde-base/kdepimlibs] Conversion back to semantic-desktop

Package-Manager: portage-2.2.7

---
 .../kdepimlibs/{kdepimlibs-4.11.2.ebuild => kdepimlibs-4.11.2-r1.ebuild} | 1 +
 kde-base/kdepimlibs/kdepimlibs-4.11.49.9999.ebuild                       | 1 +
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild                               | 1 +
 3 files changed, 3 insertions(+)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.11.2.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.11.2-r1.ebuild
similarity index 96%
rename from kde-base/kdepimlibs/kdepimlibs-4.11.2.ebuild
rename to kde-base/kdepimlibs/kdepimlibs-4.11.2-r1.ebuild
index bcf4105..effedf4 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.11.2.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.11.2-r1.ebuild
@@ -19,6 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	$(add_kdebase_dep nepomuk-core)
+	$(add_kdebase_dep kdelibs 'semantic-desktop')
 	>=app-crypt/gpgme-1.1.6
 	>=app-office/akonadi-server-1.10.1
 	>=dev-libs/boost-1.35.0-r5:=

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.11.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.11.49.9999.ebuild
index 8bb82b0..bb889d7 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.11.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.11.49.9999.ebuild
@@ -19,6 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	$(add_kdebase_dep nepomuk-core)
+	$(add_kdebase_dep kdelibs 'semantic-desktop')
 	>=app-crypt/gpgme-1.1.6
 	>=app-office/akonadi-server-1.10.1
 	>=dev-libs/boost-1.35.0-r5:=

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index fd38028..7ca7819 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -19,6 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	$(add_kdebase_dep nepomuk-core)
+	$(add_kdebase_dep kdelibs 'semantic-desktop')
 	>=app-crypt/gpgme-1.1.6
 	>=app-office/akonadi-server-1.10.43
 	>=dev-libs/boost-1.35.0-r5:=


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2013-10-14 20:34 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2013-10-14 20:34 UTC (permalink / raw
  To: gentoo-commits

commit:     98ca15b873b65331212fa6a370107f94dd6117ca
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 14 21:55:29 2013 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon Oct 14 21:55:29 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=98ca15b8

[kde-base/kdepimlibs] Fix file collision with kde-base/kdepim-runtime in KDE 4.12.

Package-Manager: portage-2.2.7

---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 7ca7819..e06d1c4 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -34,7 +34,9 @@ DEPEND="
 "
 # boost is not linked to, but headers which include it are installed
 # bug #418071
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}
+	!<kde-base/kdepim-runtime-4.11.50
+"
 
 PATCHES=( "${FILESDIR}/${PN}-4.9.1-boostincludes.patch" )
 


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2013-12-15 14:14 Andreas Hüttel
  0 siblings, 0 replies; 51+ messages in thread
From: Andreas Hüttel @ 2013-12-15 14:14 UTC (permalink / raw
  To: gentoo-commits

commit:     0eb2f177350bd92297aaa3e68570cf957aa96ce0
Author:     Andreas K. Huettel (dilfridge) <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 14:14:41 2013 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 14:14:41 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=0eb2f177

[kde-base/kdepimlibs] allow also modified oldpim, eat this portage!

---
 kde-base/kdepimlibs/kdepimlibs-4.11.97.ebuild      | 2 +-
 kde-base/kdepimlibs/kdepimlibs-4.12.0.ebuild       | 2 +-
 kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild | 2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.11.97.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.11.97.ebuild
index 77c8149..39466e5 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.11.97.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.11.97.ebuild
@@ -35,7 +35,7 @@ DEPEND="
 # boost is not linked to, but headers which include it are installed
 # bug #418071
 RDEPEND="${DEPEND}
-	!<kde-base/kdepim-runtime-4.11.50
+	|| ( !<kde-base/kdepim-runtime-4.11.50 =kde-base/kdepim-runtime-4.4.11.1-r2 )
 "
 
 PATCHES=( "${FILESDIR}/${PN}-4.9.1-boostincludes.patch" )

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.12.0.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.12.0.ebuild
index 77c8149..39466e5 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.12.0.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.12.0.ebuild
@@ -35,7 +35,7 @@ DEPEND="
 # boost is not linked to, but headers which include it are installed
 # bug #418071
 RDEPEND="${DEPEND}
-	!<kde-base/kdepim-runtime-4.11.50
+	|| ( !<kde-base/kdepim-runtime-4.11.50 =kde-base/kdepim-runtime-4.4.11.1-r2 )
 "
 
 PATCHES=( "${FILESDIR}/${PN}-4.9.1-boostincludes.patch" )

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
index e06d1c4..314f7b2 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
@@ -35,7 +35,7 @@ DEPEND="
 # boost is not linked to, but headers which include it are installed
 # bug #418071
 RDEPEND="${DEPEND}
-	!<kde-base/kdepim-runtime-4.11.50
+	|| ( !<kde-base/kdepim-runtime-4.11.50 =kde-base/kdepim-runtime-4.4.11.1-r2 )
 "
 
 PATCHES=( "${FILESDIR}/${PN}-4.9.1-boostincludes.patch" )

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index e06d1c4..314f7b2 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -35,7 +35,7 @@ DEPEND="
 # boost is not linked to, but headers which include it are installed
 # bug #418071
 RDEPEND="${DEPEND}
-	!<kde-base/kdepim-runtime-4.11.50
+	|| ( !<kde-base/kdepim-runtime-4.11.50 =kde-base/kdepim-runtime-4.4.11.1-r2 )
 "
 
 PATCHES=( "${FILESDIR}/${PN}-4.9.1-boostincludes.patch" )


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2013-12-20 23:21 Andreas Hüttel
  0 siblings, 0 replies; 51+ messages in thread
From: Andreas Hüttel @ 2013-12-20 23:21 UTC (permalink / raw
  To: gentoo-commits

commit:     5ffd964c68d7d00ee0d5347523b0c42bfc2b0ca1
Author:     Andreas K. Huettel (dilfridge) <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 23:23:35 2013 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Dec 20 23:23:35 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=5ffd964c

[kde-base/kdepimlibs] Improve dependency specification. Now this actually upgrades also with oldpim.

Package-Manager: portage-2.2.7

---
 kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild | 4 +++-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
index 314f7b2..25aa440 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
@@ -35,7 +35,9 @@ DEPEND="
 # boost is not linked to, but headers which include it are installed
 # bug #418071
 RDEPEND="${DEPEND}
-	|| ( !<kde-base/kdepim-runtime-4.11.50 =kde-base/kdepim-runtime-4.4.11.1-r2 )
+	!=kde-base/kdepim-runtime-4.10*
+	!=kde-base/kdepim-runtime-4.11*
+	!<kde-base/kdepim-runtime-4.4.11.1-r2
 "
 
 PATCHES=( "${FILESDIR}/${PN}-4.9.1-boostincludes.patch" )

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 314f7b2..25aa440 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -35,7 +35,9 @@ DEPEND="
 # boost is not linked to, but headers which include it are installed
 # bug #418071
 RDEPEND="${DEPEND}
-	|| ( !<kde-base/kdepim-runtime-4.11.50 =kde-base/kdepim-runtime-4.4.11.1-r2 )
+	!=kde-base/kdepim-runtime-4.10*
+	!=kde-base/kdepim-runtime-4.11*
+	!<kde-base/kdepim-runtime-4.4.11.1-r2
 "
 
 PATCHES=( "${FILESDIR}/${PN}-4.9.1-boostincludes.patch" )


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2014-02-05 19:31 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2014-02-05 19:31 UTC (permalink / raw
  To: gentoo-commits

commit:     cba746042d2ae3e52540ccff3f15fbf8a628facc
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  5 19:31:16 2014 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Feb  5 19:31:24 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=cba74604

[kde-base/kdepimlibs] Update no longer installs FindQJSON.cmake.

Upstream commit: cb96016dc74978a219b192f0355fe88548ad6a93

Package-Manager: portage-2.2.7

---
 kde-base/kdepimlibs/kdepimlibs-4.12.2.ebuild       | 1 -
 kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild | 1 -
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         | 1 -
 3 files changed, 3 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.12.2.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.12.2.ebuild
index 51eaf53..e379605 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.12.2.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.12.2.ebuild
@@ -54,6 +54,5 @@ src_configure() {
 
 src_install() {
 	kde4-base_src_install
-	rm "${ED}"/usr/share/apps/cmake/modules/FindQJSON.cmake
 	rm "${ED}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with net-im/choqok
 }

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
index c70b004..588e47c 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
@@ -54,6 +54,5 @@ src_configure() {
 
 src_install() {
 	kde4-base_src_install
-	rm "${ED}"/usr/share/apps/cmake/modules/FindQJSON.cmake
 	rm "${ED}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with net-im/choqok
 }

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index c70b004..588e47c 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -54,6 +54,5 @@ src_configure() {
 
 src_install() {
 	kde4-base_src_install
-	rm "${ED}"/usr/share/apps/cmake/modules/FindQJSON.cmake
 	rm "${ED}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with net-im/choqok
 }


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2014-03-09 16:11 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2014-03-09 16:11 UTC (permalink / raw
  To: gentoo-commits

commit:     cc462b099d82edcb3c507793ff074871cc7d95c5
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  9 16:10:16 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Mar  9 16:10:37 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=cc462b09

[kde-base/kdepimlibs] Upstream dropped DEPEND on kde-base/nepomuk-core

Package-Manager: portage-2.2.8-r1

---
 kde-base/kdepimlibs/kdepimlibs-4.12.80.ebuild      | 2 --
 kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild | 2 --
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         | 2 --
 3 files changed, 6 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.12.80.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.12.80.ebuild
index e937603..37eb9f7 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.12.80.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.12.80.ebuild
@@ -18,8 +18,6 @@ RESTRICT="test"
 
 DEPEND="
 	!kde-misc/akonadi-social-utils
-	$(add_kdebase_dep nepomuk-core)
-	$(add_kdebase_dep kdelibs 'semantic-desktop')
 	>=app-crypt/gpgme-1.1.6
 	>=app-office/akonadi-server-1.10.43
 	>=dev-libs/boost-1.35.0-r5:=

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
index 588e47c..9ee1f8a 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
@@ -18,8 +18,6 @@ RESTRICT="test"
 
 DEPEND="
 	!kde-misc/akonadi-social-utils
-	$(add_kdebase_dep nepomuk-core)
-	$(add_kdebase_dep kdelibs 'semantic-desktop')
 	>=app-crypt/gpgme-1.1.6
 	>=app-office/akonadi-server-1.10.43
 	>=dev-libs/boost-1.35.0-r5:=

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 588e47c..9ee1f8a 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -18,8 +18,6 @@ RESTRICT="test"
 
 DEPEND="
 	!kde-misc/akonadi-social-utils
-	$(add_kdebase_dep nepomuk-core)
-	$(add_kdebase_dep kdelibs 'semantic-desktop')
 	>=app-crypt/gpgme-1.1.6
 	>=app-office/akonadi-server-1.10.43
 	>=dev-libs/boost-1.35.0-r5:=


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2014-03-30  9:47 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2014-03-30  9:47 UTC (permalink / raw
  To: gentoo-commits

commit:     48f15e33c6031cc5326c965f256bf1610392418b
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 30 09:40:40 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Mar 30 09:40:40 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=48f15e33

[kde-base/kdepimlibs] Raise DEPEND on app-office/akonadi-server

Package-Manager: portage-2.2.10

---
 kde-base/kdepimlibs/kdepimlibs-4.12.97.ebuild      | 2 +-
 kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild | 2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.12.97.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.12.97.ebuild
index 5077722..f84bdc8 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.12.97.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.12.97.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.10.43
+	>=app-office/akonadi-server-1.12.0
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
index 9ee1f8a..c5b7ff4 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.10.43
+	>=app-office/akonadi-server-1.12.0
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 9ee1f8a..c5b7ff4 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.10.43
+	>=app-office/akonadi-server-1.12.0
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.43


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2014-04-14 15:22 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2014-04-14 15:22 UTC (permalink / raw
  To: gentoo-commits

commit:     c6e836e01cd79b79745285ab0a4694b183fa9d2f
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 14 15:22:19 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon Apr 14 15:22:19 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=c6e836e0

[kde-base/kdepimlibs] Use subslot on dev-libs/libical

Package-Manager: portage-2.2.10

---
 kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild | 2 +-
 kde-base/kdepimlibs/kdepimlibs-4.12.97.ebuild      | 2 +-
 kde-base/kdepimlibs/kdepimlibs-4.13.0.ebuild       | 2 +-
 kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild | 2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
index 588e47c..6976716 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
@@ -24,7 +24,7 @@ DEPEND="
 	>=app-office/akonadi-server-1.10.43
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
-	>=dev-libs/libical-0.43
+	>=dev-libs/libical-0.48-r2:=
 	dev-libs/cyrus-sasl
 	>=dev-libs/qjson-0.8.1
 	media-libs/phonon

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.12.97.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.12.97.ebuild
index 628530a..a8bc79d 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.12.97.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.12.97.ebuild
@@ -22,7 +22,7 @@ DEPEND="
 	>=app-office/akonadi-server-1.12.1
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
-	>=dev-libs/libical-0.43
+	>=dev-libs/libical-0.48-r2:=
 	dev-libs/cyrus-sasl
 	>=dev-libs/qjson-0.8.1
 	media-libs/phonon

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.13.0.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.13.0.ebuild
index 3218383..db6e4a3 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.13.0.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.13.0.ebuild
@@ -22,7 +22,7 @@ DEPEND="
 	>=app-office/akonadi-server-1.12.1
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
-	>=dev-libs/libical-0.43
+	>=dev-libs/libical-0.48-r2:=
 	dev-libs/cyrus-sasl
 	>=dev-libs/qjson-0.8.1
 	media-libs/phonon

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
index 66b204d..fdb60b4 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
@@ -22,7 +22,7 @@ DEPEND="
 	>=app-office/akonadi-server-1.12.1
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
-	>=dev-libs/libical-0.43
+	>=dev-libs/libical-0.48-r2:=
 	dev-libs/cyrus-sasl
 	>=dev-libs/qjson-0.8.1
 	media-libs/phonon

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 66b204d..fdb60b4 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -22,7 +22,7 @@ DEPEND="
 	>=app-office/akonadi-server-1.12.1
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
-	>=dev-libs/libical-0.43
+	>=dev-libs/libical-0.48-r2:=
 	dev-libs/cyrus-sasl
 	>=dev-libs/qjson-0.8.1
 	media-libs/phonon


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2014-04-21 12:47 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2014-04-21 12:47 UTC (permalink / raw
  To: gentoo-commits

commit:     7d026bd5a52fd4c27c98d22c33d45168448e9f80
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 21 12:44:51 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon Apr 21 12:44:51 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=7d026bd5

[kde-base/kdepimlibs] Add use dep on app-office/akonadi-server[soprano]

Package-Manager: portage-2.2.10

---
 kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild | 2 +-
 kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild | 2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
index 6976716..41e979d 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.12.49.9999.ebuild
@@ -21,7 +21,7 @@ DEPEND="
 	$(add_kdebase_dep nepomuk-core)
 	$(add_kdebase_dep kdelibs 'semantic-desktop')
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.10.43
+	>=app-office/akonadi-server-1.10.43[soprano(+)]
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.48-r2:=

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
index fdb60b4..25f1e24 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.12.1
+	>=app-office/akonadi-server-1.12.1[-soprano]
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.48-r2:=

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index fdb60b4..25f1e24 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.12.1
+	>=app-office/akonadi-server-1.12.1[-soprano]
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.48-r2:=


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2014-04-22 22:15 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2014-04-22 22:15 UTC (permalink / raw
  To: gentoo-commits

commit:     4bf12fe7a9699362ac55f36fb75d734b441d2996
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 22 22:11:21 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Tue Apr 22 22:11:21 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=4bf12fe7

[kde-base/kdepimlibs] Drop app-office/akonadi-server[-soprano]

Package-Manager: portage-2.2.10

---
 kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild | 2 +-
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
index 25f1e24..fdb60b4 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.12.1[-soprano]
+	>=app-office/akonadi-server-1.12.1
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.48-r2:=

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
index 25f1e24..fdb60b4 100644
--- a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.12.1[-soprano]
+	>=app-office/akonadi-server-1.12.1
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.48-r2:=


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2014-05-25 15:20 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2014-05-25 15:20 UTC (permalink / raw
  To: gentoo-commits

commit:     5caf3920de0213bee83d737458928dc5a68cb6c3
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun May 25 15:18:22 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun May 25 15:18:22 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=5caf3920

[kde-base/kdepimlibs] Pin media-libs/prison to SLOT 4

Package-Manager: portage-2.2.10

---
 kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild | 2 +-
 kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
index fdb60b4..e94f18a 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.13.49.9999.ebuild
@@ -27,7 +27,7 @@ DEPEND="
 	>=dev-libs/qjson-0.8.1
 	media-libs/phonon
 	x11-misc/shared-mime-info
-	prison? ( media-libs/prison )
+	prison? ( media-libs/prison:4 )
 	ldap? ( net-nds/openldap )
 "
 # boost is not linked to, but headers which include it are installed

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild
index fdb60b4..e94f18a 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild
@@ -27,7 +27,7 @@ DEPEND="
 	>=dev-libs/qjson-0.8.1
 	media-libs/phonon
 	x11-misc/shared-mime-info
-	prison? ( media-libs/prison )
+	prison? ( media-libs/prison:4 )
 	ldap? ( net-nds/openldap )
 "
 # boost is not linked to, but headers which include it are installed


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2014-07-18 14:07 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2014-07-18 14:07 UTC (permalink / raw
  To: gentoo-commits

commit:     0e6141798eafeff883ef011b4b7bcb23a9fd2ea2
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 18 14:07:11 2014 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Jul 18 14:07:11 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=0e614179

[kde-base/kdepimlibs] Raise dependency on app-office/akonadi-server

Package-Manager: portage-2.2.10

---
 kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild
index 3ae5d4c..e7b5ec8 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.12.1
+	>=app-office/akonadi-server-1.12.90
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.48-r2:=


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2014-07-18 15:01 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2014-07-18 15:01 UTC (permalink / raw
  To: gentoo-commits

commit:     07f118dee142bfda12c0f27c1c70b443f36000ff
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 18 15:00:58 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Fri Jul 18 15:00:58 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=07f118de

[kde-base/kdepimlibs] Raise DEPEND on app-office/akonadi-server

Package-Manager: portage-2.2.10

---
 kde-base/kdepimlibs/kdepimlibs-4.13.90.ebuild | 2 +-
 kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.13.90.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.13.90.ebuild
index b9ca9eb..5831c73 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.13.90.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.13.90.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.12.1
+	>=app-office/akonadi-server-1.12.90
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.48-r2:=

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild
index 3ae5d4c..e7b5ec8 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.12.1
+	>=app-office/akonadi-server-1.12.90
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.48-r2:=


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2014-08-06 17:37 Johannes Huber
  0 siblings, 0 replies; 51+ messages in thread
From: Johannes Huber @ 2014-08-06 17:37 UTC (permalink / raw
  To: gentoo-commits

commit:     31f474b6fc72c3ba1a392bd9c7f0025c3f2ecbd3
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  6 17:36:50 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Aug  6 17:36:50 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=31f474b6

[kde-base/kdepimlibs] DEPEND on app-office/akonadi-server[qt4], bug #519066

Package-Manager: portage-2.2.11-r1

---
 kde-base/kdepimlibs/kdepimlibs-4.13.97.ebuild      | 2 +-
 kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.13.97.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.13.97.ebuild
index 6d4728b..d9b9f9a 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.13.97.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.13.97.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.12.90
+	>=app-office/akonadi-server-1.12.90[qt4]
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.48-r2:=

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild
index d9c5250..b095792 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild
@@ -19,7 +19,7 @@ RESTRICT="test"
 DEPEND="
 	!kde-misc/akonadi-social-utils
 	>=app-crypt/gpgme-1.1.6
-	>=app-office/akonadi-server-1.12.90
+	>=app-office/akonadi-server-1.12.90[qt4]
 	>=dev-libs/boost-1.35.0-r5:=
 	dev-libs/libgpg-error
 	>=dev-libs/libical-0.48-r2:=


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2014-08-17  9:37 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2014-08-17  9:37 UTC (permalink / raw
  To: gentoo-commits

commit:     5d066b0fd4b70e81a5d6e278a2d9de68ee5c1f68
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 17 09:37:16 2014 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Aug 17 09:37:16 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=5d066b0f

[kde-base/kdepimlibs] Require media-libs/phonon to be built against Qt4 wrt bug #519312.

Package-Manager: portage-2.2.10

---
 kde-base/kdepimlibs/kdepimlibs-4.13.97.ebuild      | 2 +-
 kde-base/kdepimlibs/kdepimlibs-4.14.0.ebuild       | 2 +-
 kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.13.97.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.13.97.ebuild
index d9b9f9a..f763b7b 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.13.97.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.13.97.ebuild
@@ -25,7 +25,7 @@ DEPEND="
 	>=dev-libs/libical-0.48-r2:=
 	dev-libs/cyrus-sasl
 	>=dev-libs/qjson-0.8.1
-	media-libs/phonon
+	+media-libs/phonon[qt4]
 	x11-misc/shared-mime-info
 	prison? ( media-libs/prison:4 )
 	ldap? ( net-nds/openldap )

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.14.0.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.14.0.ebuild
index 217a125..188f7bd 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.14.0.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.14.0.ebuild
@@ -25,7 +25,7 @@ DEPEND="
 	>=dev-libs/libical-0.48-r2:=
 	dev-libs/cyrus-sasl
 	>=dev-libs/qjson-0.8.1
-	media-libs/phonon
+	media-libs/phonon[qt4]
 	x11-misc/shared-mime-info
 	prison? ( media-libs/prison:4 )
 	ldap? ( net-nds/openldap )

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild
index b095792..4c56a93 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.14.49.9999.ebuild
@@ -25,7 +25,7 @@ DEPEND="
 	>=dev-libs/libical-0.48-r2:=
 	dev-libs/cyrus-sasl
 	>=dev-libs/qjson-0.8.1
-	media-libs/phonon
+	media-libs/phonon[qt4]
 	x11-misc/shared-mime-info
 	prison? ( media-libs/prison:4 )
 	ldap? ( net-nds/openldap )


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2014-12-01 12:38 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2014-12-01 12:38 UTC (permalink / raw
  To: gentoo-commits

commit:     9a0c30b26f029d97f3f14d9bcd69a145ecc7654a
Author:     Karol Herbst <git <AT> karolherbst <DOT> de>
AuthorDate: Sat Nov 22 10:08:34 2014 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Mon Dec  1 12:38:29 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=9a0c30b2

[kde-base/kdepimlibs] added KF5 based version

---
 kde-base/kdepimlibs/kdepimlibs-9999.ebuild | 64 ++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)

diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
new file mode 100644
index 0000000..4da6496
--- /dev/null
+++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit kde5
+
+DESCRIPTION="Common library for KDE PIM apps"
+KEYWORDS=""
+LICENSE="LGPL-2.1"
+IUSE=""
+
+# some akonadi tests timeout, that probaly needs more work as its ~700 tests
+RESTRICT="test"
+
+DEPEND="
+	$(add_frameworks_dep kcodecs)
+	$(add_frameworks_dep kcompletion)
+	$(add_frameworks_dep kconfig)
+	$(add_frameworks_dep kconfigwidgets)
+	$(add_frameworks_dep kcoreaddons)
+	$(add_frameworks_dep kdbusaddons)
+	$(add_frameworks_dep kdelibs4support)
+	$(add_frameworks_dep kemoticons)
+	$(add_frameworks_dep kguiaddons)
+	$(add_frameworks_dep ki18n)
+	$(add_frameworks_dep kiconthemes)
+	$(add_frameworks_dep kio)
+	$(add_frameworks_dep kitemmodels)
+	$(add_frameworks_dep kitemviews)
+	$(add_frameworks_dep kjobwidgets)
+	$(add_frameworks_dep kparts)
+	$(add_frameworks_dep kservice)
+	$(add_frameworks_dep ktextwidgets)
+	$(add_frameworks_dep kwallet)
+	$(add_frameworks_dep kwidgetsaddons)
+	$(add_frameworks_dep kwindowsystem)
+	$(add_frameworks_dep kxmlgui)
+	$(add_frameworks_dep sonnet)
+	app-crypt/gpgme
+	>=app-office/akonadi-server-5
+	dev-libs/cyrus-sasl
+	dev-libs/libical
+	dev-libs/libxml2
+	dev-qt/qtcore:5
+	dev-qt/qtdbus:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtsql:5
+	dev-qt/qttest:5
+	dev-qt/qtwidgets:5
+	dev-qt/qtxml:5
+	media-libs/phonon[qt5]
+	net-nds/openldap
+	sys-apps/util-linux
+"
+
+RDEPEND="${DEPEND}"
+
+src_configure() {
+	local mycmakeargs=( -DBUILD_TESTING=ON )
+	cmake-utils_src_configure
+}


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2015-02-04 16:14 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2015-02-04 16:14 UTC (permalink / raw
  To: gentoo-commits

commit:     30bfcf8e9c7c0ab6502d5c588c79f19501eba832
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  4 16:13:37 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Feb  4 16:13:37 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=30bfcf8e

[kde-base/kdepimlibs] Version bump.

Package-Manager: portage-2.2.14

---
 kde-base/kdepimlibs/kdepimlibs-4.14.5.ebuild | 56 ++++++++++++++++++++++++++++
 1 file changed, 56 insertions(+)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.14.5.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.14.5.ebuild
new file mode 100644
index 0000000..c13ca76
--- /dev/null
+++ b/kde-base/kdepimlibs/kdepimlibs-4.14.5.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_HANDBOOK="optional"
+CPPUNIT_REQUIRED="optional"
+inherit kde4-base
+
+DESCRIPTION="Common library for KDE PIM apps"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+LICENSE="LGPL-2.1"
+IUSE="debug ldap prison"
+
+# some akonadi tests timeout, that probaly needs more work as its ~700 tests
+RESTRICT="test"
+
+DEPEND="
+	!kde-misc/akonadi-social-utils
+	>=app-crypt/gpgme-1.1.6
+	>=app-office/akonadi-server-1.12.90[qt4]
+	>=dev-libs/boost-1.35.0-r5:=
+	dev-libs/libgpg-error
+	>=dev-libs/libical-0.48-r2:=
+	dev-libs/cyrus-sasl
+	>=dev-libs/qjson-0.8.1
+	media-libs/phonon[qt4]
+	x11-misc/shared-mime-info
+	prison? ( media-libs/prison:4 )
+	ldap? ( net-nds/openldap )
+"
+# boost is not linked to, but headers which include it are installed
+# bug #418071
+RDEPEND="${DEPEND}
+	!=kde-base/kdepim-runtime-4.10*
+	!=kde-base/kdepim-runtime-4.11*
+	!<kde-base/kdepim-runtime-4.4.11.1-r2
+"
+
+PATCHES=( "${FILESDIR}/${PN}-4.9.1-boostincludes.patch" )
+
+src_configure() {
+	local mycmakeargs=(
+		$(cmake-utils_use_build handbook doc)
+		$(cmake-utils_use_find_package ldap)
+		$(cmake-utils_use_find_package prison)
+	)
+
+	kde4-base_src_configure
+}
+
+src_install() {
+	kde4-base_src_install
+	rm "${ED}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with net-im/choqok
+}


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2015-04-29 15:49 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2015-04-29 15:49 UTC (permalink / raw
  To: gentoo-commits

commit:     fecbafd6aa0d74f6e5a82c675a94889ee8758c0f
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 29 15:49:05 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Apr 29 15:49:05 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=fecbafd6

[kde-base/kdepimlibs] Use correct branch wrt bug #548116.

Package-Manager: portage-2.2.18

 kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild
index 39cf892..9c9fe0c 100644
--- a/kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild
+++ b/kde-base/kdepimlibs/kdepimlibs-4.9999.ebuild
@@ -6,6 +6,7 @@ EAPI=5
 
 KDE_HANDBOOK="optional"
 CPPUNIT_REQUIRED="optional"
+EGIT_BRANCH="KDE/4.14"
 inherit kde4-base
 
 DESCRIPTION="Common library for KDE PIM apps"


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

* [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
@ 2015-07-03 17:45 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2015-07-03 17:45 UTC (permalink / raw
  To: gentoo-commits

commit:     a0b21671451b0d01ae10743c9576c80dfc9563bb
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  3 17:45:43 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Jul  3 17:45:43 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=a0b21671

[kde-base/kdepimlibs] Version bump.

Package-Manager: portage-2.2.20

 kde-base/kdepimlibs/kdepimlibs-4.14.10.ebuild | 57 +++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

diff --git a/kde-base/kdepimlibs/kdepimlibs-4.14.10.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.14.10.ebuild
new file mode 100644
index 0000000..24039e9
--- /dev/null
+++ b/kde-base/kdepimlibs/kdepimlibs-4.14.10.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_HANDBOOK="optional"
+CPPUNIT_REQUIRED="optional"
+EGIT_BRANCH="KDE/4.14"
+inherit kde4-base
+
+DESCRIPTION="Common library for KDE PIM apps"
+KEYWORDS=" ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+LICENSE="LGPL-2.1"
+IUSE="debug ldap prison"
+
+# some akonadi tests timeout, that probaly needs more work as its ~700 tests
+RESTRICT="test"
+
+DEPEND="
+	!kde-misc/akonadi-social-utils
+	>=app-crypt/gpgme-1.1.6
+	>=app-office/akonadi-server-1.12.90[qt4]
+	>=dev-libs/boost-1.35.0-r5:=
+	dev-libs/libgpg-error
+	>=dev-libs/libical-0.48-r2:=
+	dev-libs/cyrus-sasl
+	>=dev-libs/qjson-0.8.1
+	media-libs/phonon[qt4]
+	x11-misc/shared-mime-info
+	prison? ( media-libs/prison:4 )
+	ldap? ( net-nds/openldap )
+"
+# boost is not linked to, but headers which include it are installed
+# bug #418071
+RDEPEND="${DEPEND}
+	!=kde-base/kdepim-runtime-4.10*
+	!=kde-base/kdepim-runtime-4.11*
+	!<kde-base/kdepim-runtime-4.4.11.1-r2
+"
+
+PATCHES=( "${FILESDIR}/${PN}-4.9.1-boostincludes.patch" )
+
+src_configure() {
+	local mycmakeargs=(
+		$(cmake-utils_use_build handbook doc)
+		$(cmake-utils_use_find_package ldap)
+		$(cmake-utils_use_find_package prison)
+	)
+
+	kde4-base_src_configure
+}
+
+src_install() {
+	kde4-base_src_install
+	rm "${ED}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with net-im/choqok
+}


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

end of thread, other threads:[~2015-07-03 17:46 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-30  8:57 [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/ Michael Palimaka
  -- strict thread matches above, loose matches on Subject: below --
2015-07-03 17:45 Michael Palimaka
2015-04-29 15:49 Michael Palimaka
2015-02-04 16:14 Michael Palimaka
2014-12-01 12:38 Michael Palimaka
2014-08-17  9:37 Michael Palimaka
2014-08-06 17:37 Johannes Huber
2014-07-18 15:01 Johannes Huber
2014-07-18 14:07 Manuel Rüger
2014-05-25 15:20 Johannes Huber
2014-04-22 22:15 Johannes Huber
2014-04-21 12:47 Johannes Huber
2014-04-14 15:22 Johannes Huber
2014-03-30  9:47 Johannes Huber
2014-03-09 16:11 Johannes Huber
2014-02-05 19:31 Michael Palimaka
2013-12-20 23:21 Andreas Hüttel
2013-12-15 14:14 Andreas Hüttel
2013-10-14 20:34 Johannes Huber
2013-10-06 19:57 Chris Reffett
2013-08-19 16:25 Michael Palimaka
2013-07-25 22:21 Johannes Huber
2013-06-12  8:09 Michael Palimaka
2013-06-02 11:43 Johannes Huber
2013-03-03 15:57 Michael Palimaka
2013-02-08 15:18 Michael Palimaka
2013-02-01 16:39 Michael Palimaka
2013-01-05 15:59 Chris Reffett
2012-11-23  4:41 Chris Reffett
2012-11-23  4:37 Chris Reffett
2012-11-16 21:23 Johannes Huber
2012-11-11 10:58 Johannes Huber
2012-11-06 11:13 Michael Palimaka
2012-10-13 22:08 Johannes Huber
2012-10-09  7:29 Patrick Lauer
2012-07-25 21:15 Johannes Huber
2012-06-28 13:16 Andreas Hüttel
2012-05-25 18:12 Johannes Huber
2012-04-02 15:57 Johannes Huber
2012-03-07 21:39 Andreas Hüttel
2012-01-24 23:02 Andreas Hüttel
2011-09-07 21:23 Alexey Shvetsov
2011-09-04 15:10 Alexey Shvetsov
2011-09-04 15:05 Alexey Shvetsov
2011-09-04 12:36 Alexey Shvetsov
2011-07-31 20:39 Andreas Hüttel
2011-07-13 21:52 Andreas Hüttel
2011-07-09 22:48 Theo Chatzimichos
2011-05-29 23:48 David Heidelberger
2011-05-24  5:57 Jorge Manuel B. S. Vicetto
2011-05-16 22:54 Jonathan Callen

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