public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-im/gajim: ChangeLog gajim-0.13.1.ebuild
@ 2010-01-04 19:36 Peter Volkov (pva)
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Volkov (pva) @ 2010-01-04 19:36 UTC (permalink / raw
  To: gentoo-commits

pva         10/01/04 19:36:50

  Modified:             ChangeLog
  Added:                gajim-0.13.1.ebuild
  Log:
  Version bump, bug #273351, thank Bruno 'brubru' Tarquini for this work. Fixes bug #261130, missed dependency on libbonobo-python (gnome-python-desktop dep), thank Zhang Weiwu for report; bug #244304, use modules gnome python dependencies,thank Yu Yuwei for report.
  (Portage version: 2.1.7.16/cvs/Linux x86_64)

Revision  Changes    Path
1.83                 net-im/gajim/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/gajim/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/gajim/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/gajim/ChangeLog?r1=1.82&r2=1.83

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	25 Oct 2009 17:41:10 -0000	1.82
+++ ChangeLog	4 Jan 2010 19:36:50 -0000	1.83
@@ -1,6 +1,16 @@
 # ChangeLog for net-im/gajim
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v 1.82 2009/10/25 17:41:10 tove Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v 1.83 2010/01/04 19:36:50 pva Exp $
+
+*gajim-0.13.1 (04 Jan 2010)
+
+  04 Jan 2010; Peter Volkov <pva@gentoo.org> +gajim-0.13.1.ebuild,
+  +files/gajim-0.13.1-define-exception.patch,
+  +files/gajim-0.13-autotools--enable-site-packages_option.patch:
+  Version bump, bug #273351, thank Bruno 'brubru' Tarquini for this work.
+  Fixes bug #261130, missed dependency on libbonobo-python
+  (gnome-python-desktop dep), thank Zhang Weiwu for report; bug #244304, use
+  modules gnome python dependencies,thank Yu Yuwei for report.
 
   25 Oct 2009; Torsten Veller <tove@gentoo.org> metadata.xml:
   Remove welp from metadata.xml (#141007)



1.1                  net-im/gajim/gajim-0.13.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/gajim/gajim-0.13.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/gajim/gajim-0.13.1.ebuild?rev=1.1&content-type=text/plain

Index: gajim-0.13.1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/gajim-0.13.1.ebuild,v 1.1 2010/01/04 19:36:50 pva Exp $

EAPI="2"

NEED_PYTHON="2.5"
inherit python eutils autotools versionator

DESCRIPTION="Jabber client written in PyGTK"
HOMEPAGE="http://www.gajim.org/"
SRC_URI="http://www.gajim.org/downloads/$(get_version_component_range 1-2)/${P}.tar.bz2"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="avahi crypt dbus gnome idle libnotify nls spell srv trayicon X xhtml"

COMMON_DEPEND=">=dev-python/pygtk-2.12.0"

DEPEND="${COMMON_DEPEND}
	sys-devel/gettext
	>=dev-util/intltool-0.40.1
	dev-util/pkgconfig"

RDEPEND="${COMMON_DEPEND}
	>=dev-lang/python-2.5[sqlite,xml]
	dev-python/pyopenssl
	dev-python/sexy-python
	gnome? (
		dev-python/libgnome-python
		dev-python/gnome-keyring-python
		trayicon? ( dev-python/egg-python ) )
	dbus? (
		dev-python/dbus-python
		dev-libs/dbus-glib
		libnotify? ( dev-python/notify-python )
		avahi? ( net-dns/avahi[dbus,gtk,python] ) )
	xhtml? ( dev-python/docutils )
	srv? ( || (
			dev-python/libasyncns-python
			net-dns/bind-tools ) )
	idle? ( x11-libs/libXScrnSaver )
	spell? ( app-text/gtkspell )
	crypt? (
		app-crypt/gnupg
		dev-python/pycrypto )"

pkg_setup() {
	if ! use dbus; then
		if use libnotify; then
			eerror "The dbus USE flag is required for libnotify support"
			die "USE=\"dbus\" needed for libnotify support"
		fi
		if use avahi; then
			eerror "The dbus USE flag is required for avahi support"
			die "USE=\"dbus\" needed for avahi support"
		fi
	fi
}

src_prepare() {
	# install pyfiles in /usr/lib/python2.x/site-packages/gajim
	# upstream: http://trac.gajim.org/ticket/5460
	epatch "${FILESDIR}/${PN}-0.13-autotools--enable-site-packages_option.patch"
	# http://trac.gajim.org/ticket/5457
	epatch "${FILESDIR}/${P}-define-exception.patch"
	eautoreconf
}

src_configure() {
	local myconf

	if ! use gnome; then
		myconf+=" $(use_enable trayicon)"
	fi

	econf \
		$(use_enable nls) \
		$(use_with X x) \
		--docdir="/usr/share/doc/${PF}" \
		--libdir="$(python_get_sitedir)" \
		--enable-site-packages \
		${myconf}
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	rm "${D}/usr/share/doc/${PF}/{README.html,COPYING}"
	dohtml README.html
}






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

* [gentoo-commits] gentoo-x86 commit in net-im/gajim: ChangeLog gajim-0.13.1.ebuild
@ 2010-01-05  7:22 Peter Volkov (pva)
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Volkov (pva) @ 2010-01-05  7:22 UTC (permalink / raw
  To: gentoo-commits

pva         10/01/05 07:22:35

  Modified:             ChangeLog gajim-0.13.1.ebuild
  Log:
  Up gettext version as it's required for tests to pass.
  (Portage version: 2.1.7.16/cvs/Linux x86_64)

Revision  Changes    Path
1.84                 net-im/gajim/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/gajim/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/gajim/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/gajim/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	4 Jan 2010 19:36:50 -0000	1.83
+++ ChangeLog	5 Jan 2010 07:22:35 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/gajim
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v 1.83 2010/01/04 19:36:50 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v 1.84 2010/01/05 07:22:35 pva Exp $
+
+  05 Jan 2010; Peter Volkov <pva@gentoo.org> gajim-0.13.1.ebuild:
+  Up gettext version as it's required for tests to pass.
 
 *gajim-0.13.1 (04 Jan 2010)
 



1.2                  net-im/gajim/gajim-0.13.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/gajim/gajim-0.13.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/gajim/gajim-0.13.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/gajim/gajim-0.13.1.ebuild?r1=1.1&r2=1.2

Index: gajim-0.13.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/gajim/gajim-0.13.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gajim-0.13.1.ebuild	4 Jan 2010 19:36:50 -0000	1.1
+++ gajim-0.13.1.ebuild	5 Jan 2010 07:22:35 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/gajim-0.13.1.ebuild,v 1.1 2010/01/04 19:36:50 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/gajim-0.13.1.ebuild,v 1.2 2010/01/05 07:22:35 pva Exp $
 
 EAPI="2"
 
@@ -19,7 +19,7 @@
 COMMON_DEPEND=">=dev-python/pygtk-2.12.0"
 
 DEPEND="${COMMON_DEPEND}
-	sys-devel/gettext
+	>=sys-devel/gettext-0.17-r1
 	>=dev-util/intltool-0.40.1
 	dev-util/pkgconfig"
 






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

end of thread, other threads:[~2010-01-05  7:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-05  7:22 [gentoo-commits] gentoo-x86 commit in net-im/gajim: ChangeLog gajim-0.13.1.ebuild Peter Volkov (pva)
  -- strict thread matches above, loose matches on Subject: below --
2010-01-04 19:36 Peter Volkov (pva)

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