Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
| Navigation: |
|
Lists:
gentoo-commits:
< Prev
By Thread
Next >
< Prev
By Date
Next >
|
| Headers: |
|
To:
|
gentoo-commits@g.o
|
|
From:
|
"Christian Faulhammer (opfer)" <opfer@g.o>
|
|
Subject:
|
gentoo-x86 commit in app-misc/gramps: ChangeLog gramps-3.0.3.ebuild gramps-3.0.2.ebuild
|
|
Date:
|
Mon, 27 Oct 2008 20:36:11 +0000
|
|
opfer 08/10/27 20:36:11
Modified: ChangeLog
Added: gramps-3.0.3.ebuild
Removed: gramps-3.0.2.ebuild
Log:
version bump and clean up: This is a bug fix release with translation updates and a fix for a hang with graphviz
(Portage version: 2.1.4.5)
Revision Changes Path
1.77 app-misc/gramps/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gramps/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gramps/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gramps/ChangeLog?r1=1.76&r2=1.77
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/gramps/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog 27 Oct 2008 20:13:01 -0000 1.76
+++ ChangeLog 27 Oct 2008 20:36:11 -0000 1.77
@@ -1,6 +1,13 @@
# ChangeLog for app-misc/gramps
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/gramps/ChangeLog,v 1.76 2008/10/27 20:13:01 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/gramps/ChangeLog,v 1.77 2008/10/27 20:36:11 opfer Exp $
+
+*gramps-3.0.3 (27 Oct 2008)
+
+ 27 Oct 2008; Christian Faulhammer <opfer@g.o> -gramps-3.0.2.ebuild,
+ +gramps-3.0.3.ebuild:
+ version bump and clean up: This is a bug fix release with translation
+ updates and a fix for a hang with graphviz
27 Oct 2008; Christian Faulhammer <opfer@g.o> gramps-3.0.2.ebuild:
add python_need_rebuild so python-updater will catch this package properly
1.1 app-misc/gramps/gramps-3.0.3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gramps/gramps-3.0.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gramps/gramps-3.0.3.ebuild?rev=1.1&content-type=text/plain
Index: gramps-3.0.3.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/gramps/gramps-3.0.3.ebuild,v 1.1 2008/10/27 20:36:11 opfer Exp $
NEED_PYTHON="2.5"
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
inherit autotools eutils gnome2 python
DESCRIPTION="Genealogical Research and Analysis Management Programming System"
HOMEPAGE="http://www.gramps-project.org/"
SRC_URI="mirror://sourceforge/gramps/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="reports"
RDEPEND=">=dev-python/pygtk-2.10.0
>=dev-python/gnome-python-2.6
reports? ( media-gfx/graphviz )"
DEPEND="${RDEPEND}
sys-devel/gettext
virtual/libiconv
dev-util/pkgconfig
app-text/gnome-doc-utils"
DOCS="NEWS README TODO"
pkg_setup() {
if ! built_with_use -a 'dev-lang/python' sqlite berkdb ; then
eerror "You need to install python with Berkely Database support."
eerror "Add 'dev-lang/python berkdb sqlite' to /etc/portage/package.use "
eerror "and then re-emerge python."
die "berkdb or sqlite support missing from Gnome"
fi
G2CONF="${G2CONF} --disable-mime-install"
}
src_unpack() {
gnome2_src_unpack
eautoreconf
# This is for bug 215944, so .pyo/.pyc files don't get into the
# file system
mv "${S}"/py-compile "${S}"/py-compile.orig
ln -s $(type -P true) "${S}"/py-compile
}
src_install() {
python_need_rebuild
gnome2_src_install
}
pkg_postinst() {
gnome2_pkg_postinst
python_mod_optimize /usr/share/${PN}
}
pkg_postrm() {
gnome2_pkg_postrm
python_mod_cleanup /usr/share/${PN}
}
|
|