diff options
author | Ian Delaney <idella4@gentoo.org> | 2015-03-05 08:52:52 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2015-03-05 08:52:52 +0000 |
commit | 9395509b46cff2f4cf77e0926c90e47d2fd49a93 (patch) | |
tree | 64110cd4782d0bfc42cbd5eaf33cc7fb40c93931 /net-im | |
parent | Old. (diff) | |
download | gentoo-2-9395509b46cff2f4cf77e0926c90e47d2fd49a93.tar.gz gentoo-2-9395509b46cff2f4cf77e0926c90e47d2fd49a93.tar.bz2 gentoo-2-9395509b46cff2f4cf77e0926c90e47d2fd49a93.zip |
revbump; conversion -> distutils-r1
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/msnlib/ChangeLog | 10 | ||||
-rw-r--r-- | net-im/msnlib/msnlib-3.8-r1.ebuild | 4 | ||||
-rw-r--r-- | net-im/msnlib/msnlib-3.8-r2.ebuild | 44 |
3 files changed, 54 insertions, 4 deletions
diff --git a/net-im/msnlib/ChangeLog b/net-im/msnlib/ChangeLog index 1610867a5cb5..84a41ee9eddc 100644 --- a/net-im/msnlib/ChangeLog +++ b/net-im/msnlib/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-im/msnlib -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/msnlib/ChangeLog,v 1.38 2014/08/05 18:34:07 mrueg Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/msnlib/ChangeLog,v 1.39 2015/03/05 08:52:52 idella4 Exp $ + +*msnlib-3.8-r2 (05 Mar 2015) + + 05 Mar 2015; Ian Delaney <idella4@gentoo.org> +msnlib-3.8-r2.ebuild, + msnlib-3.8-r1.ebuild: + revbump; conversion -> distutils-r1 05 Aug 2014; Manuel Rüger <mrueg@gentoo.org> msnlib-3.8-r1.ebuild: Remove trailing '.' from DESCRIPTION. diff --git a/net-im/msnlib/msnlib-3.8-r1.ebuild b/net-im/msnlib/msnlib-3.8-r1.ebuild index f3be61627edd..3c6c80c52dc6 100644 --- a/net-im/msnlib/msnlib-3.8-r1.ebuild +++ b/net-im/msnlib/msnlib-3.8-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/msnlib/msnlib-3.8-r1.ebuild,v 1.5 2014/08/05 18:34:07 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/msnlib/msnlib-3.8-r1.ebuild,v 1.6 2015/03/05 08:52:52 idella4 Exp $ EAPI="2" PYTHON_DEPEND="2" diff --git a/net-im/msnlib/msnlib-3.8-r2.ebuild b/net-im/msnlib/msnlib-3.8-r2.ebuild new file mode 100644 index 000000000000..2064f91c919d --- /dev/null +++ b/net-im/msnlib/msnlib-3.8-r2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/msnlib/msnlib-3.8-r2.ebuild,v 1.1 2015/03/05 08:52:52 idella4 Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +DISTUTILS_SINGLE_IMPL=1 +PYTHON_REQ_USE="tk" + +inherit distutils-r1 multilib + +DESCRIPTION="A Python MSN messenger protocol library and client" +HOMEPAGE="http://blitiri.com.ar/p/msnlib/" +SRC_URI="http://blitiri.com.ar/p/${PN}/files/${PV}/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="tk" + +DEPEND="" +RDEPEND="" + +pkg_setup() { + python-single-r1_pkg_setup +} + +python_prepare() { + distutils-r1_python_prepare + python_fix_shebang msn utils/msntk +} + +python_install_all() { + local DOCS=( README msnrc.sample ) + distutils-r1_python_install_all +} + +python_install() { + distutils-r1_python_install + dobin msnsetup + python_doscript msn + use tk && python_doscript utils/msntk +} |