public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: ChangeLog akonadi-server-1.5.2.ebuild
@ 2011-04-05 23:51 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 7+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2011-04-05 23:51 UTC (permalink / raw
  To: gentoo-commits

scarabeus    11/04/05 23:51:18

  Modified:             ChangeLog
  Added:                akonadi-server-1.5.2.ebuild
  Log:
  Version bump to latest
  
  (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)

Revision  Changes    Path
1.50                 app-office/akonadi-server/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?r1=1.49&r2=1.50

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	26 Jan 2011 19:44:22 -0000	1.49
+++ ChangeLog	5 Apr 2011 23:51:18 -0000	1.50
@@ -1,6 +1,12 @@
 # ChangeLog for app-office/akonadi-server
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.49 2011/01/26 19:44:22 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.50 2011/04/05 23:51:18 scarabeus Exp $
+
+*akonadi-server-1.5.2 (05 Apr 2011)
+
+  05 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org>
+  +akonadi-server-1.5.2.ebuild:
+  Version bump to latest
 
 *akonadi-server-1.5.0 (26 Jan 2011)
 



1.1                  app-office/akonadi-server/akonadi-server-1.5.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?rev=1.1&content-type=text/plain

Index: akonadi-server-1.5.2.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v 1.1 2011/04/05 23:51:18 scarabeus Exp $

EAPI=4

inherit cmake-utils

DESCRIPTION="The server part of Akonadi"
HOMEPAGE="http://pim.kde.org/akonadi"
SRC_URI="http://download.akonadi-project.org/${P/-server/}.tar.bz2"

LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
SLOT="0"
IUSE="mysql postgres +sqlite test"

CDEPEND="
	dev-libs/boost
	>=dev-libs/soprano-2.2
	>=x11-libs/qt-gui-4.5.0:4[dbus]
	>=x11-libs/qt-sql-4.5.0:4[mysql?,postgres?]
	>=x11-libs/qt-test-4.5.0:4
	x11-misc/shared-mime-info
"
DEPEND="${CDEPEND}
	dev-libs/libxslt
	>=dev-util/automoc-0.9.88
"
RDEPEND="${CDEPEND}
	postgres? ( dev-db/postgresql-server )
"

REQUIRED_USE="|| ( sqlite mysql postgres )"

S=${WORKDIR}/${P/-server/}

pkg_setup() {
	# Set default storage backend in order: SQLite, MySQL, PostgreSQL
	if use sqlite; then
		DRIVER="QSQLITE3"
		AVAILABLE+=" ${driver}"
	elif use mysql; then
		DRIVER="QMYSQL"
		AVAILABLE+=" ${driver}"
	elif use postgres; then
		DRIVER="QPSQL"
		AVAILABLE+=" ${driver}"
	fi

	# Notify about driver name change
	if use sqlite && has_version "<=${CATEGORY}/${PN}-1.4.0[sqlite]"; then
		ewarn
		ewarn "SQLite driver name changed from QSQLITE to QSQLITE3."
		ewarn "Please edit your ~/.config/akonadi/akonadiserverrc."
	fi

	# Notify about MySQL not being default anymore
	if ! use mysql && has_version "<=${CATEGORY}/${PN}-1.4.0[mysql]"; then
		ewarn
		ewarn "MySQL driver is not enabled by default in Gentoo anymore."
		ewarn "If you intend to use it, please enable mysql USE flag and reinstall"
		ewarn "${CATEGORY}/${PN}."
		ewarn "Otherwise select different driver in your ~/.config/akonadi/akonadiserverrc."
		ewarn "Available drivers are:${AVAILABLE}"
	fi
}

src_configure() {
	local mycmakeargs=(
		"-DAKONADI_USE_STRIGI_SEARCH=OFF"
		$(cmake-utils_use test AKONADI_BUILD_TESTS)
		$(cmake-utils_use sqlite INSTALL_QSQLITE_IN_QT_PREFIX)
	)

	cmake-utils_src_configure
}

src_install() {
	# Who knows, maybe it accidentally fixes our permission issues
	cat <<-EOF > "${T}"/akonadiserverrc
[%General]
Driver=${DRIVER}
EOF
	insinto /usr/share/config/akonadi
	doins "${T}"/akonadiserverrc || die "doins failed"

	cmake-utils_src_install
}

pkg_postinst() {
	echo
	elog "${DRIVER} has been set as your default akonadi storage backend."
	elog "You can override it in your ~/.config/akonadi/akonadiserverrc."
	elog "Available drivers are: ${AVAILABLE}"
}






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

* [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: ChangeLog akonadi-server-1.5.2.ebuild
@ 2011-05-08 20:54 Andreas HAttel (dilfridge)
  0 siblings, 0 replies; 7+ messages in thread
From: Andreas HAttel (dilfridge) @ 2011-05-08 20:54 UTC (permalink / raw
  To: gentoo-commits

dilfridge    11/05/08 20:54:59

  Modified:             ChangeLog
  Added:                akonadi-server-1.5.2.ebuild
  Log:
  Re-add because it is in the stabilization list
  
  (Portage version: 2.1.9.46/cvs/Linux x86_64)

Revision  Changes    Path
1.53                 app-office/akonadi-server/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?r1=1.52&r2=1.53

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog	7 May 2011 10:19:30 -0000	1.52
+++ ChangeLog	8 May 2011 20:54:59 -0000	1.53
@@ -1,6 +1,10 @@
 # ChangeLog for app-office/akonadi-server
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.52 2011/05/07 10:19:30 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.53 2011/05/08 20:54:59 dilfridge Exp $
+
+  08 May 2011; Andreas K. Huettel <dilfridge@gentoo.org>
+  +akonadi-server-1.5.2.ebuild:
+  Re-add because it is in the stabilization list
 
 *akonadi-server-1.5.3 (07 May 2011)
 



1.3                  app-office/akonadi-server/akonadi-server-1.5.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?r1=1.2&r2=1.3







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

* [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: ChangeLog akonadi-server-1.5.2.ebuild
@ 2011-05-09  8:15 Thomas Kahle (tomka)
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Kahle (tomka) @ 2011-05-09  8:15 UTC (permalink / raw
  To: gentoo-commits

tomka       11/05/09 08:15:44

  Modified:             ChangeLog akonadi-server-1.5.2.ebuild
  Log:
  x86 stable per bug 354033
  
  (Portage version: 2.1.9.46/cvs/Linux i686)

Revision  Changes    Path
1.54                 app-office/akonadi-server/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	8 May 2011 20:54:59 -0000	1.53
+++ ChangeLog	9 May 2011 08:15:44 -0000	1.54
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/akonadi-server
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.53 2011/05/08 20:54:59 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.54 2011/05/09 08:15:44 tomka Exp $
+
+  09 May 2011; Thomas Kahle <tomka@gentoo.org> akonadi-server-1.5.2.ebuild:
+  x86 stable per bug 354033
 
   08 May 2011; Andreas K. Huettel <dilfridge@gentoo.org>
   +akonadi-server-1.5.2.ebuild:



1.4                  app-office/akonadi-server/akonadi-server-1.5.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?r1=1.3&r2=1.4

Index: akonadi-server-1.5.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- akonadi-server-1.5.2.ebuild	8 May 2011 20:54:59 -0000	1.3
+++ akonadi-server-1.5.2.ebuild	9 May 2011 08:15:44 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v 1.3 2011/05/08 20:54:59 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v 1.4 2011/05/09 08:15:44 tomka Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 SRC_URI="http://download.akonadi-project.org/${P/-server/}.tar.bz2"
 
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 IUSE="mysql postgres +sqlite test"
 






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

* [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: ChangeLog akonadi-server-1.5.2.ebuild
@ 2011-05-09 23:00 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-05-09 23:00 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/05/09 23:00:19

  Modified:             ChangeLog akonadi-server-1.5.2.ebuild
  Log:
  Stable on amd64 wrt bug #354033
  
  (Portage version: 2.1.9.47/cvs/Linux x86_64)

Revision  Changes    Path
1.55                 app-office/akonadi-server/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?r1=1.54&r2=1.55

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog	9 May 2011 08:15:44 -0000	1.54
+++ ChangeLog	9 May 2011 23:00:19 -0000	1.55
@@ -1,6 +1,10 @@
 # ChangeLog for app-office/akonadi-server
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.54 2011/05/09 08:15:44 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.55 2011/05/09 23:00:19 hwoarang Exp $
+
+  09 May 2011; Markos Chandras <hwoarang@gentoo.org>
+  akonadi-server-1.5.2.ebuild:
+  Stable on amd64 wrt bug #354033
 
   09 May 2011; Thomas Kahle <tomka@gentoo.org> akonadi-server-1.5.2.ebuild:
   x86 stable per bug 354033



1.5                  app-office/akonadi-server/akonadi-server-1.5.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?r1=1.4&r2=1.5

Index: akonadi-server-1.5.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- akonadi-server-1.5.2.ebuild	9 May 2011 08:15:44 -0000	1.4
+++ akonadi-server-1.5.2.ebuild	9 May 2011 23:00:19 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v 1.4 2011/05/09 08:15:44 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v 1.5 2011/05/09 23:00:19 hwoarang Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 SRC_URI="http://download.akonadi-project.org/${P/-server/}.tar.bz2"
 
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 IUSE="mysql postgres +sqlite test"
 






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

* [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: ChangeLog akonadi-server-1.5.2.ebuild
@ 2011-06-01 19:30 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2011-06-01 19:30 UTC (permalink / raw
  To: gentoo-commits

ranger      11/06/01 19:30:33

  Modified:             ChangeLog akonadi-server-1.5.2.ebuild
  Log:
  Marking akonadi-server-1.5.2 ppc for bug 354033
  
  (Portage version: 2.1.9.42/cvs/Linux ppc64)

Revision  Changes    Path
1.56                 app-office/akonadi-server/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?r1=1.55&r2=1.56

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	9 May 2011 23:00:19 -0000	1.55
+++ ChangeLog	1 Jun 2011 19:30:32 -0000	1.56
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/akonadi-server
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.55 2011/05/09 23:00:19 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.56 2011/06/01 19:30:32 ranger Exp $
+
+  01 Jun 2011; Brent Baude <ranger@gentoo.org> akonadi-server-1.5.2.ebuild:
+  Marking akonadi-server-1.5.2 ppc stable for bug 354033
 
   09 May 2011; Markos Chandras <hwoarang@gentoo.org>
   akonadi-server-1.5.2.ebuild:



1.6                  app-office/akonadi-server/akonadi-server-1.5.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?r1=1.5&r2=1.6

Index: akonadi-server-1.5.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- akonadi-server-1.5.2.ebuild	9 May 2011 23:00:19 -0000	1.5
+++ akonadi-server-1.5.2.ebuild	1 Jun 2011 19:30:32 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v 1.5 2011/05/09 23:00:19 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v 1.6 2011/06/01 19:30:32 ranger Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 SRC_URI="http://download.akonadi-project.org/${P/-server/}.tar.bz2"
 
 LICENSE="LGPL-2.1"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 IUSE="mysql postgres +sqlite test"
 






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

* [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: ChangeLog akonadi-server-1.5.2.ebuild
@ 2011-07-13 14:41 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 7+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-07-13 14:41 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/07/13 14:41:51

  Modified:             ChangeLog akonadi-server-1.5.2.ebuild
  Log:
  ppc64 stable wrt #354033
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.57                 app-office/akonadi-server/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.57&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.57&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?r1=1.56&r2=1.57

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	1 Jun 2011 19:30:32 -0000	1.56
+++ ChangeLog	13 Jul 2011 14:41:51 -0000	1.57
@@ -1,6 +1,10 @@
 # ChangeLog for app-office/akonadi-server
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.56 2011/06/01 19:30:32 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.57 2011/07/13 14:41:51 xarthisius Exp $
+
+  13 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org>
+  akonadi-server-1.5.2.ebuild:
+  ppc64 stable wrt #354033
 
   01 Jun 2011; Brent Baude <ranger@gentoo.org> akonadi-server-1.5.2.ebuild:
   Marking akonadi-server-1.5.2 ppc stable for bug 354033



1.7                  app-office/akonadi-server/akonadi-server-1.5.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild?r1=1.6&r2=1.7

Index: akonadi-server-1.5.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- akonadi-server-1.5.2.ebuild	1 Jun 2011 19:30:32 -0000	1.6
+++ akonadi-server-1.5.2.ebuild	13 Jul 2011 14:41:51 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v 1.6 2011/06/01 19:30:32 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.5.2.ebuild,v 1.7 2011/07/13 14:41:51 xarthisius Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 SRC_URI="http://download.akonadi-project.org/${P/-server/}.tar.bz2"
 
 LICENSE="LGPL-2.1"
-KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 IUSE="mysql postgres +sqlite test"
 






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

* [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: ChangeLog akonadi-server-1.5.2.ebuild
@ 2012-03-12  9:53 Johannes Huber (johu)
  0 siblings, 0 replies; 7+ messages in thread
From: Johannes Huber (johu) @ 2012-03-12  9:53 UTC (permalink / raw
  To: gentoo-commits

johu        12/03/12 09:53:24

  Modified:             ChangeLog
  Removed:              akonadi-server-1.5.2.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.0_alpha90/cvs/Linux i686)

Revision  Changes    Path
1.75                 app-office/akonadi-server/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/akonadi-server/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	9 Mar 2012 14:26:12 -0000	1.74
+++ ChangeLog	12 Mar 2012 09:53:24 -0000	1.75
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/akonadi-server
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.74 2012/03/09 14:26:12 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.75 2012/03/12 09:53:24 johu Exp $
+
+  12 Mar 2012; Johannes Huber <johu@gentoo.org> -akonadi-server-1.5.2.ebuild:
+  Remove old.
 
   09 Mar 2012; Brent Baude <ranger@gentoo.org> akonadi-server-1.6.2-r1.ebuild:
   Marking akonadi-server-1.6.2-r1 ppc64 for bug 399661






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

end of thread, other threads:[~2012-03-12  9:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-01 19:30 [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: ChangeLog akonadi-server-1.5.2.ebuild Brent Baude (ranger)
  -- strict thread matches above, loose matches on Subject: below --
2012-03-12  9:53 Johannes Huber (johu)
2011-07-13 14:41 Kacper Kowalik (xarthisius)
2011-05-09 23:00 Markos Chandras (hwoarang)
2011-05-09  8:15 Thomas Kahle (tomka)
2011-05-08 20:54 Andreas HAttel (dilfridge)
2011-04-05 23:51 Tomas Chvatal (scarabeus)

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