public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] dev/yngwin:master commit in: dev-python/neovim-python-client/
@ 2015-02-26  5:00 Ben de Groot
  0 siblings, 0 replies; 3+ messages in thread
From: Ben de Groot @ 2015-02-26  5:00 UTC (permalink / raw
  To: gentoo-commits

commit:     93c4c71b2e3d0c389d44684de4d72424687bdd7a
Author:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 26 05:00:12 2015 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Thu Feb 26 05:00:12 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=dev/yngwin.git;a=commit;h=93c4c71b

dev-python/neovim-python-client: roll our own tarball

---
 dev-python/neovim-python-client/Manifest                           | 2 +-
 dev-python/neovim-python-client/neovim-python-client-0.0.28.ebuild | 7 +++----
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-python/neovim-python-client/Manifest b/dev-python/neovim-python-client/Manifest
index 5e04fa8..e71c8c2 100644
--- a/dev-python/neovim-python-client/Manifest
+++ b/dev-python/neovim-python-client/Manifest
@@ -1 +1 @@
-DIST neovim-python-client-0.0.28.tar.gz 42435 SHA256 de13a64d62b0e95264ce308f754189922472c9cd397428e986ee41e679e95f53 SHA512 5810cc83ac5edcefab38b20483cfad916124b5296cc6e8a4dc6229a600b3decfa76f0230826d6c15cce209eb78a8080717587dc783f175827a0eba5c39326c5b WHIRLPOOL d66b911c1e986c150ea559cfa28c8ecb8e969b0944823b57d0df934500aea1165ec26d57405b56058caa79c07128b7b6fa012151c6e0ecd01ac96791ff51a694
+DIST neovim-python-client-0.0.28.tar.xz 37940 SHA256 5e749cec8c2f43c58edee1726651a87f83ccc50f3184c18201bc529cbef4515d SHA512 a14b33fe4ebca04384c636ae6510c4866701862017b7a7e84d9ba72304e593162b888b08cf224f1d3aa2de4b645d1adf313044b7ef7ed8608722d22467c5e86b WHIRLPOOL 1f4b8e6a3f8b27d7f7a6810bcc1aaa8e683ebbfa58609e89c2905fc4b354d0df36a7e58adf0714c30c27479f235444dc32735ab7b76c7b86bb5559f7d03286a6

diff --git a/dev-python/neovim-python-client/neovim-python-client-0.0.28.ebuild b/dev-python/neovim-python-client/neovim-python-client-0.0.28.ebuild
index 1ccc930..9f78f00 100644
--- a/dev-python/neovim-python-client/neovim-python-client-0.0.28.ebuild
+++ b/dev-python/neovim-python-client/neovim-python-client-0.0.28.ebuild
@@ -3,12 +3,13 @@
 # $Header: $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+#PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+PYTHON_COMPAT=( python2_7 ) # currently only works on py2
 inherit distutils-r1
 
 DESCRIPTION="Python client to connect to Neovim thru its msgpack-rpc API"
 HOMEPAGE="https://github.com/neovim/python-client"
-SRC_URI="https://github.com/neovim/python-client/archive/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="http://dev.gentoo.org/~yngwin/distfiles/${P}.tar.xz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
@@ -20,5 +21,3 @@ DEPEND=">=dev-python/click-3.0[${PYTHON_USEDEP}]
 	$(python_gen_cond_dep 'python*' 'dev-python/greenlet[${PYTHON_USEDEP}]')
 	$(python_gen_cond_dep 'python{2_7,3_2,3_3} pypy*' 'dev-python/trollius[${PYTHON_USEDEP}]')"
 RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${P/neovim-/}


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

* [gentoo-commits] dev/yngwin:master commit in: dev-python/neovim-python-client/
@ 2015-02-26  5:17 Ben de Groot
  0 siblings, 0 replies; 3+ messages in thread
From: Ben de Groot @ 2015-02-26  5:17 UTC (permalink / raw
  To: gentoo-commits

commit:     adecfe726e1ea98c6b5ca085cd61177198132fc3
Author:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 26 05:17:07 2015 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Thu Feb 26 05:17:07 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=dev/yngwin.git;a=commit;h=adecfe72

dev-python/neovim-python-client: fix python_gen_cond_dep usage

---
 dev-python/neovim-python-client/neovim-python-client-0.0.28.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/neovim-python-client/neovim-python-client-0.0.28.ebuild b/dev-python/neovim-python-client/neovim-python-client-0.0.28.ebuild
index 9f78f00..6a52a48 100644
--- a/dev-python/neovim-python-client/neovim-python-client-0.0.28.ebuild
+++ b/dev-python/neovim-python-client/neovim-python-client-0.0.28.ebuild
@@ -18,6 +18,6 @@ IUSE=""
 
 DEPEND=">=dev-python/click-3.0[${PYTHON_USEDEP}]
 	>=dev-python/msgpack-0.4.0[${PYTHON_USEDEP}]
-	$(python_gen_cond_dep 'python*' 'dev-python/greenlet[${PYTHON_USEDEP}]')
-	$(python_gen_cond_dep 'python{2_7,3_2,3_3} pypy*' 'dev-python/trollius[${PYTHON_USEDEP}]')"
+	$(python_gen_cond_dep 'dev-python/greenlet[${PYTHON_USEDEP}]' 'python*')
+	$(python_gen_cond_dep 'dev-python/trollius[${PYTHON_USEDEP}]' python{2_7,3_2,3_3} 'pypy*')"
 RDEPEND="${DEPEND}"


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

* [gentoo-commits] dev/yngwin:master commit in: dev-python/neovim-python-client/
@ 2015-02-26  5:20 Ben de Groot
  0 siblings, 0 replies; 3+ messages in thread
From: Ben de Groot @ 2015-02-26  5:20 UTC (permalink / raw
  To: gentoo-commits

commit:     698516220408032b61db559777f0439188b6c988
Author:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 26 05:20:22 2015 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Thu Feb 26 05:20:22 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=dev/yngwin.git;a=commit;h=69851622

dev-python/neovim-python-client: update metadata

---
 dev-python/neovim-python-client/metadata.xml | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev-python/neovim-python-client/metadata.xml b/dev-python/neovim-python-client/metadata.xml
index f2b4a5d..087a225 100644
--- a/dev-python/neovim-python-client/metadata.xml
+++ b/dev-python/neovim-python-client/metadata.xml
@@ -1,8 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer>
-    <email>yngwin@gentoo.org</email>
-    <name>Ben de Groot</name>
-  </maintainer>
+  <herd>vim</herd>
+  <herd>python</herd>
 </pkgmetadata>


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

end of thread, other threads:[~2015-02-26  5:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-26  5:20 [gentoo-commits] dev/yngwin:master commit in: dev-python/neovim-python-client/ Ben de Groot
  -- strict thread matches above, loose matches on Subject: below --
2015-02-26  5:17 Ben de Groot
2015-02-26  5:00 Ben de Groot

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