public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: akonadi-server-1.9.1-r1.ebuild ChangeLog
@ 2013-03-20 13:38 Michael Palimaka (kensington)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Palimaka (kensington) @ 2013-03-20 13:38 UTC (permalink / raw
  To: gentoo-commits

kensington    13/03/20 13:38:54

  Modified:             ChangeLog
  Added:                akonadi-server-1.9.1-r1.ebuild
  Log:
  Install QSQLITE3 plugin into same directory as other QtSQL plugins, wrt bug #459876.
  
  (Portage version: 2.1.11.57/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog	4 Mar 2013 19:14:29 -0000	1.102
+++ ChangeLog	20 Mar 2013 13:38:54 -0000	1.103
@@ -1,6 +1,13 @@
 # ChangeLog for app-office/akonadi-server
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.102 2013/03/04 19:14:29 mschiff Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.103 2013/03/20 13:38:54 kensington Exp $
+
+*akonadi-server-1.9.1-r1 (20 Mar 2013)
+
+  20 Mar 2013; Michael Palimaka <kensington@gentoo.org>
+  +akonadi-server-1.9.1-r1.ebuild:
+  Install QSQLITE3 plugin into same directory as other QtSQL plugins, wrt bug
+  #459876.
 
   04 Mar 2013; Marc Schiffbauer <mschiff@gentoo.org>
   akonadi-server-1.9.1.ebuild:



1.1                  app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild

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

Index: akonadi-server-1.9.1-r1.ebuild
===================================================================
# Copyright 1999-2013 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.9.1-r1.ebuild,v 1.1 2013/03/20 13:38:54 kensington Exp $

EAPI=4

if [[ $PV = *9999* ]]; then
	scm_eclass=git-2
	EGIT_REPO_URI="git://anongit.kde.org/akonadi"
	SRC_URI=""
	KEYWORDS=""
else
	SRC_URI="mirror://kde/stable/${PN/-server/}/src/${P/-server/}.tar.bz2"
	KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
	S="${WORKDIR}/${P/-server/}"
fi

inherit cmake-utils ${scm_eclass}

DESCRIPTION="The server part of Akonadi"
HOMEPAGE="http://pim.kde.org/akonadi"

LICENSE="LGPL-2.1"
SLOT="0"
IUSE="+mysql postgres sqlite test"

CDEPEND="
	dev-libs/boost
	>=dev-libs/soprano-2.6.51
	>=dev-qt/qtgui-4.5.0:4[dbus]
	>=dev-qt/qtsql-4.5.0:4[mysql?,postgres?]
	>=dev-qt/qttest-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 )"

RESTRICT=test

PATCHES=( "${FILESDIR}/${PN}-1.9.0-qt5.patch" )

pkg_setup() {
	# Set default storage backend in order: MySQL, SQLite PostgreSQL
	# reverse driver check to keep the order
	if use postgres; then
		DRIVER="QPSQL"
		AVAILABLE+=" ${DRIVER}"
	fi

	if use sqlite; then
		DRIVER="QSQLITE3"
		AVAILABLE+=" ${DRIVER}"
	fi

	if use mysql; then
		DRIVER="QMYSQL"
		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 sqlite && has_version "<=${CATEGORY}/${PN}-1.9.0[sqlite]"; then
		ewarn
		ewarn "The default storage drive has changed from SQLite to MySQL."
		ewarn "If you want to stay with SQLite, enable the sqlite USE flag and reinstall"
		ewarn "${CATEGORY}/${PN}."
		ewarn "Otherwise, select a different driver in your ~/.config/akonadi/akonadiserverrc."
		ewarn "Available drivers are:${AVAILABLE}"
	fi
}

src_configure() {
	local mycmakeargs=(
		-DAKONADI_USE_STRIGI_SEARCH=OFF
		-DINSTALL_QSQLITE_IN_QT_PREFIX=ON
		-DWITH_QT5=OFF
		$(cmake-utils_use test AKONADI_BUILD_TESTS)
		$(cmake-utils_use sqlite AKONADI_BUILD_QSQLITE)
	)

	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

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

* [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: akonadi-server-1.9.1-r1.ebuild ChangeLog
@ 2013-03-31 15:29 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-31 15:29 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/31 15:29:10

  Modified:             akonadi-server-1.9.1-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #462890
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild

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

Index: akonadi-server-1.9.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- akonadi-server-1.9.1-r1.ebuild	24 Mar 2013 18:42:02 -0000	1.2
+++ akonadi-server-1.9.1-r1.ebuild	31 Mar 2013 15:29:10 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 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.9.1-r1.ebuild,v 1.2 2013/03/24 18:42:02 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild,v 1.3 2013/03/31 15:29:10 ago Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 	KEYWORDS=""
 else
 	SRC_URI="mirror://kde/stable/${PN/-server/}/src/${P/-server/}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+	KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 	S="${WORKDIR}/${P/-server/}"
 fi
 



1.105                app-office/akonadi-server/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	24 Mar 2013 18:42:02 -0000	1.104
+++ ChangeLog	31 Mar 2013 15:29:10 -0000	1.105
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/akonadi-server
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.104 2013/03/24 18:42:02 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.105 2013/03/31 15:29:10 ago Exp $
+
+  31 Mar 2013; Agostino Sarubbo <ago@gentoo.org> akonadi-server-1.9.1-r1.ebuild:
+  Stable for amd64, wrt bug #462890
 
   24 Mar 2013; Andreas K. Huettel <dilfridge@gentoo.org>
   akonadi-server-1.9.0.ebuild, akonadi-server-1.9.1.ebuild,





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

* [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: akonadi-server-1.9.1-r1.ebuild ChangeLog
@ 2013-03-31 16:19 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-31 16:19 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/31 16:19:24

  Modified:             akonadi-server-1.9.1-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #462890
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild

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

Index: akonadi-server-1.9.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- akonadi-server-1.9.1-r1.ebuild	31 Mar 2013 15:29:10 -0000	1.3
+++ akonadi-server-1.9.1-r1.ebuild	31 Mar 2013 16:19:24 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 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.9.1-r1.ebuild,v 1.3 2013/03/31 15:29:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild,v 1.4 2013/03/31 16:19:24 ago Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 	KEYWORDS=""
 else
 	SRC_URI="mirror://kde/stable/${PN/-server/}/src/${P/-server/}.tar.bz2"
-	KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+	KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 	S="${WORKDIR}/${P/-server/}"
 fi
 



1.106                app-office/akonadi-server/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	31 Mar 2013 15:29:10 -0000	1.105
+++ ChangeLog	31 Mar 2013 16:19:24 -0000	1.106
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/akonadi-server
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.105 2013/03/31 15:29:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.106 2013/03/31 16:19:24 ago Exp $
+
+  31 Mar 2013; Agostino Sarubbo <ago@gentoo.org> akonadi-server-1.9.1-r1.ebuild:
+  Stable for x86, wrt bug #462890
 
   31 Mar 2013; Agostino Sarubbo <ago@gentoo.org> akonadi-server-1.9.1-r1.ebuild:
   Stable for amd64, wrt bug #462890





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

* [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: akonadi-server-1.9.1-r1.ebuild ChangeLog
@ 2013-04-01 13:10 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-01 13:10 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/01 13:10:16

  Modified:             akonadi-server-1.9.1-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #462890
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild

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

Index: akonadi-server-1.9.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- akonadi-server-1.9.1-r1.ebuild	31 Mar 2013 16:19:24 -0000	1.4
+++ akonadi-server-1.9.1-r1.ebuild	1 Apr 2013 13:10:16 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 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.9.1-r1.ebuild,v 1.4 2013/03/31 16:19:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild,v 1.5 2013/04/01 13:10:16 ago Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 	KEYWORDS=""
 else
 	SRC_URI="mirror://kde/stable/${PN/-server/}/src/${P/-server/}.tar.bz2"
-	KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+	KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 	S="${WORKDIR}/${P/-server/}"
 fi
 



1.107                app-office/akonadi-server/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog	31 Mar 2013 16:19:24 -0000	1.106
+++ ChangeLog	1 Apr 2013 13:10:16 -0000	1.107
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/akonadi-server
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.106 2013/03/31 16:19:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.107 2013/04/01 13:10:16 ago Exp $
+
+  01 Apr 2013; Agostino Sarubbo <ago@gentoo.org> akonadi-server-1.9.1-r1.ebuild:
+  Stable for ppc, wrt bug #462890
 
   31 Mar 2013; Agostino Sarubbo <ago@gentoo.org> akonadi-server-1.9.1-r1.ebuild:
   Stable for x86, wrt bug #462890





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

* [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: akonadi-server-1.9.1-r1.ebuild ChangeLog
@ 2013-04-02 20:55 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-02 20:55 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/02 20:55:51

  Modified:             akonadi-server-1.9.1-r1.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #462890
  
  (Portage version: 2.1.11.55/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild

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

Index: akonadi-server-1.9.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- akonadi-server-1.9.1-r1.ebuild	1 Apr 2013 13:10:16 -0000	1.5
+++ akonadi-server-1.9.1-r1.ebuild	2 Apr 2013 20:55:51 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 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.9.1-r1.ebuild,v 1.5 2013/04/01 13:10:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild,v 1.6 2013/04/02 20:55:51 ago Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 	KEYWORDS=""
 else
 	SRC_URI="mirror://kde/stable/${PN/-server/}/src/${P/-server/}.tar.bz2"
-	KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+	KEYWORDS="amd64 ~arm ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 	S="${WORKDIR}/${P/-server/}"
 fi
 



1.108                app-office/akonadi-server/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog	1 Apr 2013 13:10:16 -0000	1.107
+++ ChangeLog	2 Apr 2013 20:55:51 -0000	1.108
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/akonadi-server
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.107 2013/04/01 13:10:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.108 2013/04/02 20:55:51 ago Exp $
+
+  02 Apr 2013; Agostino Sarubbo <ago@gentoo.org> akonadi-server-1.9.1-r1.ebuild:
+  Stable for ppc64, wrt bug #462890
 
   01 Apr 2013; Agostino Sarubbo <ago@gentoo.org> akonadi-server-1.9.1-r1.ebuild:
   Stable for ppc, wrt bug #462890





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

end of thread, other threads:[~2013-04-02 21:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-31 16:19 [gentoo-commits] gentoo-x86 commit in app-office/akonadi-server: akonadi-server-1.9.1-r1.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-04-02 20:55 Agostino Sarubbo (ago)
2013-04-01 13:10 Agostino Sarubbo (ago)
2013-03-31 15:29 Agostino Sarubbo (ago)
2013-03-20 13:38 Michael Palimaka (kensington)

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