public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-office/kmymoney: kmymoney-4.6.2-r2.ebuild ChangeLog
@ 2012-05-15 22:34 Johannes Huber (johu)
  0 siblings, 0 replies; 3+ messages in thread
From: Johannes Huber (johu) @ 2012-05-15 22:34 UTC (permalink / raw
  To: gentoo-commits

johu        12/05/15 22:34:38

  Modified:             ChangeLog
  Added:                kmymoney-4.6.2-r2.ebuild
  Log:
  Revision bump adds upstream patch to fix crash when open sqlite db file by Stuart W. Finlayson <stu@santa-li.com> wrt bug #416157.
  
  (Portage version: 2.2.0_alpha105/cvs/Linux i686)

Revision  Changes    Path
1.34                 app-office/kmymoney/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/kmymoney/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	8 May 2012 11:04:08 -0000	1.33
+++ ChangeLog	15 May 2012 22:34:38 -0000	1.34
@@ -1,6 +1,13 @@
 # ChangeLog for app-office/kmymoney
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/ChangeLog,v 1.33 2012/05/08 11:04:08 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/ChangeLog,v 1.34 2012/05/15 22:34:38 johu Exp $
+
+*kmymoney-4.6.2-r2 (15 May 2012)
+
+  15 May 2012; Johannes Huber <johu@gentoo.org>
+  +files/kmymoney-4.6.2-sqlite-crash.patch, +kmymoney-4.6.2-r2.ebuild:
+  Revision bump adds upstream patch to fix crash when open sqlite db file by
+  Stuart W. Finlayson <stu@santa-li.com> wrt bug #416157.
 
   08 May 2012; Johannes Huber <johu@gentoo.org> kmymoney-4.6.2-r1.ebuild:
   Migrate to virtual/pkgconfig.



1.1                  app-office/kmymoney/kmymoney-4.6.2-r2.ebuild

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

Index: kmymoney-4.6.2-r2.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/kmymoney-4.6.2-r2.ebuild,v 1.1 2012/05/15 22:34:38 johu Exp $

EAPI=4

if [[ ${PV} != *9999* ]]; then
	KDE_LINGUAS="bg bs ca ca@valencia cs da de el en_GB eo es et
			eu fi fr ga gl hu it ja lt ms nds nl pl pt
			pt_BR ro ru sk sv tr ug uk zh_CN zh_TW"
	KDE_DOC_DIRS="doc doc-translations/%lingua_${PN}"
	KDE_HANDBOOK="optional"
	SRC_URI="mirror://sourceforge/kmymoney2/${P}.tar.bz2"
fi

VIRTUALX_REQUIRED=test

inherit kde4-base

DESCRIPTION="Personal finance manager for KDE"
HOMEPAGE="http://kmymoney2.sourceforge.net/"

LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="4"
IUSE="debug calendar doc hbci ofx quotes test"

COMMON_DEPEND="
	app-crypt/gpgme
	>=app-office/libalkimia-4.3.2
	dev-cpp/glibmm:2
	dev-cpp/libxmlpp:2.6
	dev-libs/boost
	dev-libs/glib:2
	dev-libs/gmp
	dev-libs/libgpg-error
	dev-libs/libxml2
	$(add_kdebase_dep kdepimlibs)
	x11-misc/shared-mime-info
	calendar? ( dev-libs/libical )
	hbci? (
		>=net-libs/aqbanking-5.0.1
		>=sys-libs/gwenhywfar-4.0.1[qt4]
	)
	ofx? ( >=dev-libs/libofx-0.9.4 )
"
RDEPEND="${COMMON_DEPEND}
	quotes? ( dev-perl/Finance-Quote )
"
DEPEND="${COMMON_DEPEND}
	virtual/pkgconfig
	doc? ( app-doc/doxygen )
	test? ( dev-util/cppunit )
"

PATCHES=(
	"${FILESDIR}/${PN}-4.6.1-qt48.patch"
	"${FILESDIR}/${P}-fix-parallel-build.patch"
	"${FILESDIR}/${P}-sqlite-crash.patch"
)

RESTRICT=test
# bug 399467

src_configure() {
	mycmakeargs=(
		-DUSE_QT_DESIGNER=OFF
		$(cmake-utils_use_enable calendar LIBICAL)
		$(cmake-utils_use_use doc DEVELOPER_DOC)
		$(cmake-utils_use_enable hbci KBANKING)
		$(cmake-utils_use_enable ofx LIBOFX)
		$(cmake-utils_use test KDE4_BUILD_TESTS)
	)
	kde4-base_src_configure
}

src_compile() {
	kde4-base_src_compile

	use doc && kde4-base_src_compile apidoc
}

src_install() {
	use doc && HTML_DOCS=("${CMAKE_BUILD_DIR}/apidocs/html/")
	kde4-base_src_install
}






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

* [gentoo-commits] gentoo-x86 commit in app-office/kmymoney: kmymoney-4.6.2-r2.ebuild ChangeLog
@ 2012-07-09 17:14 Michael Palimaka (kensington)
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Palimaka (kensington) @ 2012-07-09 17:14 UTC (permalink / raw
  To: gentoo-commits

kensington    12/07/09 17:14:35

  Modified:             kmymoney-4.6.2-r2.ebuild ChangeLog
  Log:
  Backport fix from upstream to fix build with GCC 4.7, wrt bug #425366.
  
  (Portage version: 2.1.11.5/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  app-office/kmymoney/kmymoney-4.6.2-r2.ebuild

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

Index: kmymoney-4.6.2-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/kmymoney/kmymoney-4.6.2-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kmymoney-4.6.2-r2.ebuild	15 May 2012 22:34:38 -0000	1.1
+++ kmymoney-4.6.2-r2.ebuild	9 Jul 2012 17:14:35 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/kmymoney-4.6.2-r2.ebuild,v 1.1 2012/05/15 22:34:38 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/kmymoney-4.6.2-r2.ebuild,v 1.2 2012/07/09 17:14:35 kensington Exp $
 
 EAPI=4
 
@@ -56,6 +56,7 @@
 PATCHES=(
 	"${FILESDIR}/${PN}-4.6.1-qt48.patch"
 	"${FILESDIR}/${P}-fix-parallel-build.patch"
+	"${FILESDIR}/${P}-gcc-4.7.patch"
 	"${FILESDIR}/${P}-sqlite-crash.patch"
 )
 



1.35                 app-office/kmymoney/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/kmymoney/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	15 May 2012 22:34:38 -0000	1.34
+++ ChangeLog	9 Jul 2012 17:14:35 -0000	1.35
@@ -1,6 +1,10 @@
 # ChangeLog for app-office/kmymoney
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/ChangeLog,v 1.34 2012/05/15 22:34:38 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/ChangeLog,v 1.35 2012/07/09 17:14:35 kensington Exp $
+
+  09 Jul 2012; Michael Palimaka <kensington@gentoo.org>
+  +files/kmymoney-4.6.2-gcc-4.7.patch, kmymoney-4.6.2-r2.ebuild:
+  Backport fix from upstream to fix build with GCC 4.7, wrt bug #425366.
 
 *kmymoney-4.6.2-r2 (15 May 2012)
 
@@ -160,4 +164,3 @@
   08 Jan 2010; Samuli Suominen <ssuominen@gentoo.org>
   +kmymoney-3.95.0.ebuild:
   Initial commit wrt #294010, thanks to Elias Probst, Soren Harward, Matija Suklje and others.
-






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

* [gentoo-commits] gentoo-x86 commit in app-office/kmymoney: kmymoney-4.6.2-r2.ebuild ChangeLog
@ 2012-07-27 21:57 Chris Reffett (creffett)
  0 siblings, 0 replies; 3+ messages in thread
From: Chris Reffett (creffett) @ 2012-07-27 21:57 UTC (permalink / raw
  To: gentoo-commits

creffett    12/07/27 21:57:49

  Modified:             kmymoney-4.6.2-r2.ebuild ChangeLog
  Log:
  Re-enable tests, add VIRTUALDBUS so test 26 passes
  
  (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  app-office/kmymoney/kmymoney-4.6.2-r2.ebuild

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

Index: kmymoney-4.6.2-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/kmymoney/kmymoney-4.6.2-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- kmymoney-4.6.2-r2.ebuild	15 Jul 2012 00:43:26 -0000	1.4
+++ kmymoney-4.6.2-r2.ebuild	27 Jul 2012 21:57:49 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/kmymoney-4.6.2-r2.ebuild,v 1.4 2012/07/15 00:43:26 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/kmymoney-4.6.2-r2.ebuild,v 1.5 2012/07/27 21:57:49 creffett Exp $
 
 EAPI=4
 
@@ -13,7 +13,8 @@
 	SRC_URI="mirror://sourceforge/kmymoney2/${P}.tar.bz2"
 fi
 
-VIRTUALX_REQUIRED=test
+VIRTUALX_REQUIRED="test"
+VIRTUALDBUS_TEST="true"
 
 inherit kde4-base
 
@@ -60,9 +61,6 @@
 	"${FILESDIR}/${P}-sqlite-crash.patch"
 )
 
-RESTRICT=test
-# bug 399467
-
 src_configure() {
 	mycmakeargs=(
 		-DUSE_QT_DESIGNER=OFF



1.39                 app-office/kmymoney/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/kmymoney/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	15 Jul 2012 00:45:27 -0000	1.38
+++ ChangeLog	27 Jul 2012 21:57:49 -0000	1.39
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/kmymoney
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/ChangeLog,v 1.38 2012/07/15 00:45:27 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/ChangeLog,v 1.39 2012/07/27 21:57:49 creffett Exp $
+
+  27 Jul 2012; Chris Reffett <creffett@gentoo.org> kmymoney-4.6.2-r2.ebuild:
+  Re-enable tests, add VIRTUALDBUS so test 26 passes
 
   15 Jul 2012; Johannes Huber <johu@gentoo.org> -kmymoney-4.6.2-r1.ebuild,
   -kmymoney-4.6.2.ebuild:





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

end of thread, other threads:[~2012-07-27 21:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-27 21:57 [gentoo-commits] gentoo-x86 commit in app-office/kmymoney: kmymoney-4.6.2-r2.ebuild ChangeLog Chris Reffett (creffett)
  -- strict thread matches above, loose matches on Subject: below --
2012-07-09 17:14 Michael Palimaka (kensington)
2012-05-15 22:34 Johannes Huber (johu)

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