public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-im/gajim: gajim-0.14.ebuild ChangeLog
@ 2010-09-04  6:20 Justin Lecher (jlec)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher (jlec) @ 2010-09-04  6:20 UTC (permalink / raw
  To: gentoo-commits

jlec        10/09/04 06:20:23

  Modified:             ChangeLog
  Added:                gajim-0.14.ebuild
  Log:
  Version Bump
  
  (Portage version: 2.2_rc74/cvs/Linux x86_64)

Revision  Changes    Path
1.100                net-im/gajim/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	7 Aug 2010 17:25:57 -0000	1.99
+++ ChangeLog	4 Sep 2010 06:20:23 -0000	1.100
@@ -1,6 +1,12 @@
 # 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.99 2010/08/07 17:25:57 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v 1.100 2010/09/04 06:20:23 jlec Exp $
+
+*gajim-0.14 (04 Sep 2010)
+
+  04 Sep 2010; Justin Lecher <jlec@gentoo.org>
+  +files/0.14-python-version.patch, +gajim-0.14.ebuild:
+  Version Bump
 
   07 Aug 2010; Raúl Porcel <armin76@gentoo.org> gajim-0.13.3.ebuild,
   gajim-0.13.4.ebuild, gajim-0.13.4-r1.ebuild:



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

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

Index: gajim-0.14.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.14.ebuild,v 1.1 2010/09/04 06:20:23 jlec Exp $

EAPI="2"

PYTHON_DEPEND="2"
PYTHON_USE_WITH="sqlite xml"
inherit autotools eutils python 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="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="avahi crypt dbus gnome idle libnotify nls spell srv trayicon X xhtml"

COMMON_DEPEND="
	x11-libs/gtk+:2
	>=dev-python/pygtk-2.16.0"

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

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

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
	python_set_active_version 2
}

src_prepare() {
	# install pyfiles in /usr/lib/python2.x/site-packages/gajim
	# upstream: http://trac.gajim.org/ticket/5460
	# Should be in 0.14
#	epatch "${FILESDIR}/${PN}-0.13-autotools-enable-site-packages_option.patch"
	epatch "${FILESDIR}"/${PV}-python-version.patch
	eautoreconf
	echo '#!/bin/sh' > config/py-compile
}

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} || die
	dohtml README.html || die
}

pkg_postinst() {
	python_mod_optimize $(python_get_sitedir)/${PN}
}

pkg_postrm() {
	python_mod_cleanup $(python_get_sitedir)/${PN}
}






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

* [gentoo-commits] gentoo-x86 commit in net-im/gajim: gajim-0.14.ebuild ChangeLog
@ 2010-09-06 17:08 Justin Lecher (jlec)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher (jlec) @ 2010-09-06 17:08 UTC (permalink / raw
  To: gentoo-commits

jlec        10/09/06 17:08:58

  Modified:             gajim-0.14.ebuild ChangeLog
  Log:
  Cleaned ebuild for fixing bug 336177
  
  (Portage version: 2.2_rc75/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  net-im/gajim/gajim-0.14.ebuild

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

Index: gajim-0.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/gajim/gajim-0.14.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gajim-0.14.ebuild	4 Sep 2010 06:20:23 -0000	1.1
+++ gajim-0.14.ebuild	6 Sep 2010 17:08:58 -0000	1.2
@@ -1,12 +1,13 @@
 # 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.14.ebuild,v 1.1 2010/09/04 06:20:23 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/gajim-0.14.ebuild,v 1.2 2010/09/06 17:08:58 jlec Exp $
 
 EAPI="2"
 
 PYTHON_DEPEND="2"
 PYTHON_USE_WITH="sqlite xml"
-inherit autotools eutils python versionator
+
+inherit eutils python versionator
 
 DESCRIPTION="Jabber client written in PyGTK"
 HOMEPAGE="http://www.gajim.org/"
@@ -15,7 +16,7 @@
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="avahi crypt dbus gnome idle libnotify nls spell srv trayicon X xhtml"
+IUSE="avahi crypt dbus gnome idle libnotify nls spell srv X xhtml"
 
 COMMON_DEPEND="
 	x11-libs/gtk+:2
@@ -42,7 +43,7 @@
 	gnome? (
 		dev-python/libgnome-python
 		dev-python/gnome-keyring-python
-		trayicon? ( dev-python/egg-python )
+		dev-python/egg-python
 		)
 	idle? ( x11-libs/libXScrnSaver )
 	srv? (
@@ -68,29 +69,17 @@
 }
 
 src_prepare() {
-	# install pyfiles in /usr/lib/python2.x/site-packages/gajim
-	# upstream: http://trac.gajim.org/ticket/5460
-	# Should be in 0.14
-#	epatch "${FILESDIR}/${PN}-0.13-autotools-enable-site-packages_option.patch"
 	epatch "${FILESDIR}"/${PV}-python-version.patch
-	eautoreconf
 	echo '#!/bin/sh' > config/py-compile
 }
 
 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}
+		--enable-site-packages
 }
 
 src_install() {



1.101                net-im/gajim/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	4 Sep 2010 06:20:23 -0000	1.100
+++ ChangeLog	6 Sep 2010 17:08:58 -0000	1.101
@@ -1,6 +1,10 @@
 # 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.100 2010/09/04 06:20:23 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v 1.101 2010/09/06 17:08:58 jlec Exp $
+
+  06 Sep 2010; Justin Lecher <jlec@gentoo.org> gajim-0.14.ebuild:
+  Cleaned ebuild for fixing bug 336177
+
 
 *gajim-0.14 (04 Sep 2010)
 






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

* [gentoo-commits] gentoo-x86 commit in net-im/gajim: gajim-0.14.ebuild ChangeLog
@ 2010-09-12  7:54 Justin Lecher (jlec)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher (jlec) @ 2010-09-12  7:54 UTC (permalink / raw
  To: gentoo-commits

jlec        10/09/12 07:54:37

  Modified:             gajim-0.14.ebuild ChangeLog
  Log:
  USE jingle and networkmanager added, 336272
  
  (Portage version: 2.2_rc79/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  net-im/gajim/gajim-0.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/gajim-0.14.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/gajim-0.14.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/gajim-0.14.ebuild?r1=1.2&r2=1.3

Index: gajim-0.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/gajim/gajim-0.14.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gajim-0.14.ebuild	6 Sep 2010 17:08:58 -0000	1.2
+++ gajim-0.14.ebuild	12 Sep 2010 07:54:37 -0000	1.3
@@ -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.14.ebuild,v 1.2 2010/09/06 17:08:58 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/gajim-0.14.ebuild,v 1.3 2010/09/12 07:54:37 jlec Exp $
 
 EAPI="2"
 
@@ -16,7 +16,7 @@
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="avahi crypt dbus gnome idle libnotify nls spell srv X xhtml"
+IUSE="avahi crypt dbus gnome idle jingle libnotify networkmanager nls spell srv X xhtml"
 
 COMMON_DEPEND="
 	x11-libs/gtk+:2
@@ -46,6 +46,11 @@
 		dev-python/egg-python
 		)
 	idle? ( x11-libs/libXScrnSaver )
+	jingle? ( net-libs/farsight2[python] )
+	networkmanager? (
+			dev-python/dbus-python
+			net-misc/networkmanager[gnome]
+		)
 	srv? (
 		|| (
 			dev-python/libasyncns-python



1.102                net-im/gajim/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	6 Sep 2010 17:08:58 -0000	1.101
+++ ChangeLog	12 Sep 2010 07:54:37 -0000	1.102
@@ -1,11 +1,13 @@
 # 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.101 2010/09/06 17:08:58 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v 1.102 2010/09/12 07:54:37 jlec Exp $
+
+  12 Sep 2010; Justin Lecher <jlec@gentoo.org> gajim-0.14.ebuild:
+  USE jingle and networkmanager added, 336272
 
   06 Sep 2010; Justin Lecher <jlec@gentoo.org> gajim-0.14.ebuild:
   Cleaned ebuild for fixing bug 336177
 
-
 *gajim-0.14 (04 Sep 2010)
 
   04 Sep 2010; Justin Lecher <jlec@gentoo.org>






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

* [gentoo-commits] gentoo-x86 commit in net-im/gajim: gajim-0.14.ebuild ChangeLog
@ 2010-09-19 19:35 Justin Lecher (jlec)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher (jlec) @ 2010-09-19 19:35 UTC (permalink / raw
  To: gentoo-commits

jlec        10/09/19 19:35:14

  Modified:             gajim-0.14.ebuild ChangeLog
  Log:
  Fixes DEPEND on networkmanager, 337496
  
  (Portage version: 2.2_rc84/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  net-im/gajim/gajim-0.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/gajim-0.14.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/gajim-0.14.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/gajim/gajim-0.14.ebuild?r1=1.3&r2=1.4

Index: gajim-0.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/gajim/gajim-0.14.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gajim-0.14.ebuild	12 Sep 2010 07:54:37 -0000	1.3
+++ gajim-0.14.ebuild	19 Sep 2010 19:35:14 -0000	1.4
@@ -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.14.ebuild,v 1.3 2010/09/12 07:54:37 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/gajim-0.14.ebuild,v 1.4 2010/09/19 19:35:14 jlec Exp $
 
 EAPI="2"
 
@@ -49,7 +49,7 @@
 	jingle? ( net-libs/farsight2[python] )
 	networkmanager? (
 			dev-python/dbus-python
-			net-misc/networkmanager[gnome]
+			|| ( >=net-misc/networkmanager-0.7.1 net-misc/networkmanager[gnome] )
 		)
 	srv? (
 		|| (



1.103                net-im/gajim/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog	12 Sep 2010 07:54:37 -0000	1.102
+++ ChangeLog	19 Sep 2010 19:35:14 -0000	1.103
@@ -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.102 2010/09/12 07:54:37 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/gajim/ChangeLog,v 1.103 2010/09/19 19:35:14 jlec Exp $
+
+  19 Sep 2010; Justin Lecher <jlec@gentoo.org> gajim-0.14.ebuild:
+  Fixes DEPEND on networkmanager, 337496
 
   12 Sep 2010; Justin Lecher <jlec@gentoo.org> gajim-0.14.ebuild:
   USE jingle and networkmanager added, 336272






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

end of thread, other threads:[~2010-09-19 19:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-19 19:35 [gentoo-commits] gentoo-x86 commit in net-im/gajim: gajim-0.14.ebuild ChangeLog Justin Lecher (jlec)
  -- strict thread matches above, loose matches on Subject: below --
2010-09-12  7:54 Justin Lecher (jlec)
2010-09-06 17:08 Justin Lecher (jlec)
2010-09-04  6:20 Justin Lecher (jlec)

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