* [gentoo-commits] dev/dev-zero:master commit in: dev-vcs/PyGitUp/
@ 2014-12-17 15:35 Tiziano Müller
0 siblings, 0 replies; 6+ messages in thread
From: Tiziano Müller @ 2014-12-17 15:35 UTC (permalink / raw
To: gentoo-commits
commit: 7440446c41b59a49a72bac124c847676a88133d6
Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 17 15:35:13 2014 +0000
Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Wed Dec 17 15:35:13 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=7440446c
initial commit
---
dev-vcs/PyGitUp/Manifest | 1 +
dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild | 25 +++++++++++++++++++++++++
2 files changed, 26 insertions(+)
diff --git a/dev-vcs/PyGitUp/Manifest b/dev-vcs/PyGitUp/Manifest
new file mode 100644
index 0000000..0f3d45b
--- /dev/null
+++ b/dev-vcs/PyGitUp/Manifest
@@ -0,0 +1 @@
+DIST PyGitUp-1.2.1.tar.gz 18026 SHA256 2e2da42622d0ba356eb804e3b6f414aaf2cf796e9e68356aca682d771fbb8368 SHA512 bd20dc53a11a62a95fdc692daff1dd6aa3e5c6d3a5bae887e4cac19e0890cedadfee479d93edf5cd640537104a04500980563c552c8495a8c98f550a40db5dcc WHIRLPOOL e04d87e803be99c535ffdab30cae022021001a70c5618def27300c5c416fff542c0aef812034fd33bdb48e978b68f9911f47dbef3b12df37f705091bb2fce0d2
diff --git a/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild b/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild
new file mode 100644
index 0000000..b7e4800
--- /dev/null
+++ b/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+DISTUTILS_SINGLE_IMPL=1
+
+inherit distutils-r1
+
+DESCRIPTION="A python implementation of git up"
+HOMEPAGE="https://github.com/msiemens/PyGitUp"
+SRC_URI="https://github.com/msiemens/PyGitUp/archive/v1.2.1.tar.gz -> ${P}.tar.gz"
+
+LICENSE=""
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=">=dev-python/git-python-0.3.2.1[${PYTHON_USEDEP}]
+ >=dev-python/colorama-0.3.2[${PYTHON_USEDEP}]
+ >=dev-python/termcolor-1.1.0[${PYTHON_USEDEP}]
+ >=dev-python/docopt-0.6.1[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] dev/dev-zero:master commit in: dev-vcs/PyGitUp/
@ 2014-12-17 15:50 Tiziano Müller
0 siblings, 0 replies; 6+ messages in thread
From: Tiziano Müller @ 2014-12-17 15:50 UTC (permalink / raw
To: gentoo-commits
commit: a10c5833c092e47d1219e6fd5e090353e792bf97
Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 17 15:50:42 2014 +0000
Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Wed Dec 17 15:50:42 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=a10c5833
fix setup.py to avoid dep on exact version
---
dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild b/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild
index b7e4800..654d953 100644
--- a/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild
+++ b/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild
@@ -23,3 +23,8 @@ DEPEND=">=dev-python/git-python-0.3.2.1[${PYTHON_USEDEP}]
>=dev-python/termcolor-1.1.0[${PYTHON_USEDEP}]
>=dev-python/docopt-0.6.1[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"
+
+python_prepare_all() {
+ sed -i -e 's|==|>=|g' setup.py || die
+ distutils-r1_python_prepare_all
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] dev/dev-zero:master commit in: dev-vcs/PyGitUp/
@ 2015-01-01 13:37 Tiziano Müller
0 siblings, 0 replies; 6+ messages in thread
From: Tiziano Müller @ 2015-01-01 13:37 UTC (permalink / raw
To: gentoo-commits
commit: a71df49404a59790441ec9865dc51b6e84ee24dc
Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 20 08:02:30 2014 +0000
Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Sat Dec 20 08:02:30 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=a71df494
use $PV in SRC_URI (doh\!)
---
dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild b/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild
index 654d953..51e5629 100644
--- a/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild
+++ b/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild
@@ -11,7 +11,7 @@ inherit distutils-r1
DESCRIPTION="A python implementation of git up"
HOMEPAGE="https://github.com/msiemens/PyGitUp"
-SRC_URI="https://github.com/msiemens/PyGitUp/archive/v1.2.1.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/msiemens/PyGitUp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE=""
SLOT="0"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] dev/dev-zero:master commit in: dev-vcs/PyGitUp/
@ 2015-01-01 13:37 Tiziano Müller
0 siblings, 0 replies; 6+ messages in thread
From: Tiziano Müller @ 2015-01-01 13:37 UTC (permalink / raw
To: gentoo-commits
commit: a2f64691bc791f30b3f8021eb70e49feb294edc2
Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 20 08:03:20 2014 +0000
Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Sat Dec 20 08:03:20 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=a2f64691
set license
---
dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild b/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild
index 51e5629..0ed52d2 100644
--- a/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild
+++ b/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="A python implementation of git up"
HOMEPAGE="https://github.com/msiemens/PyGitUp"
SRC_URI="https://github.com/msiemens/PyGitUp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE=""
+LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] dev/dev-zero:master commit in: dev-vcs/PyGitUp/
@ 2015-08-01 13:41 Tiziano Müller
0 siblings, 0 replies; 6+ messages in thread
From: Tiziano Müller @ 2015-08-01 13:41 UTC (permalink / raw
To: gentoo-commits
commit: 261d597e791c5cd52f045af40a404790fcb86bec
Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 24 09:17:18 2015 +0000
Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Fri Jul 24 09:17:18 2015 +0000
URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=261d597e
Version bump
dev-vcs/PyGitUp/Manifest | 2 +-
dev-vcs/PyGitUp/{PyGitUp-1.2.1.ebuild => PyGitUp-1.3.0.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/PyGitUp/Manifest b/dev-vcs/PyGitUp/Manifest
index 0f3d45b..c996175 100644
--- a/dev-vcs/PyGitUp/Manifest
+++ b/dev-vcs/PyGitUp/Manifest
@@ -1 +1 @@
-DIST PyGitUp-1.2.1.tar.gz 18026 SHA256 2e2da42622d0ba356eb804e3b6f414aaf2cf796e9e68356aca682d771fbb8368 SHA512 bd20dc53a11a62a95fdc692daff1dd6aa3e5c6d3a5bae887e4cac19e0890cedadfee479d93edf5cd640537104a04500980563c552c8495a8c98f550a40db5dcc WHIRLPOOL e04d87e803be99c535ffdab30cae022021001a70c5618def27300c5c416fff542c0aef812034fd33bdb48e978b68f9911f47dbef3b12df37f705091bb2fce0d2
+DIST PyGitUp-1.3.0.tar.gz 18869 SHA256 9ea833ee6a52359813da82c7ca4f80db757691a271a1e62e5fb53d1b7bcb5e41 SHA512 d5f943230766395895cf13cb2c0f7dab7843709f3c722b177d24c22cda55442388794b1e8cbb767df8b5d70b8e40a2e6c0397f2c26667339301b285fe50a72d9 WHIRLPOOL e3c6d3191dbf46860722d8b22a02dd5fe3049b1f94b00ca1ea24da385817537a3b838ecc8531ab16af380f49824798dfe7d565e54dd5498c44dbeb2858bc7bac
diff --git a/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild b/dev-vcs/PyGitUp/PyGitUp-1.3.0.ebuild
similarity index 100%
rename from dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild
rename to dev-vcs/PyGitUp/PyGitUp-1.3.0.ebuild
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] dev/dev-zero:master commit in: dev-vcs/PyGitUp/
@ 2016-02-22 11:31 Tiziano Müller
0 siblings, 0 replies; 6+ messages in thread
From: Tiziano Müller @ 2016-02-22 11:31 UTC (permalink / raw
To: gentoo-commits
commit: 9c5aa428b0f0b9b66a84a72c7e1d6bf456d60592
Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 22 11:31:06 2016 +0000
Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Mon Feb 22 11:31:06 2016 +0000
URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=9c5aa428
dev-vcs/PyGitUp: version bump
dev-vcs/PyGitUp/Manifest | 2 +-
dev-vcs/PyGitUp/PyGitUp-1.3.1.ebuild | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-vcs/PyGitUp/Manifest b/dev-vcs/PyGitUp/Manifest
index c996175..57cb141 100644
--- a/dev-vcs/PyGitUp/Manifest
+++ b/dev-vcs/PyGitUp/Manifest
@@ -1 +1 @@
-DIST PyGitUp-1.3.0.tar.gz 18869 SHA256 9ea833ee6a52359813da82c7ca4f80db757691a271a1e62e5fb53d1b7bcb5e41 SHA512 d5f943230766395895cf13cb2c0f7dab7843709f3c722b177d24c22cda55442388794b1e8cbb767df8b5d70b8e40a2e6c0397f2c26667339301b285fe50a72d9 WHIRLPOOL e3c6d3191dbf46860722d8b22a02dd5fe3049b1f94b00ca1ea24da385817537a3b838ecc8531ab16af380f49824798dfe7d565e54dd5498c44dbeb2858bc7bac
+DIST PyGitUp-1.3.1.tar.gz 19618 SHA256 91f351bb2b197b7b49a2de714191aed5aa5b26443b7c4dca2fea01b75808c6d3 SHA512 91b9b71e14f7b6c0e83348c92a6e452fc503fc2db75eaef6018fb812ec96aaea49be031ffbfd0a2762afb53e22ae6b595040d889922f5f5853b4f231959a137c WHIRLPOOL 6caadcd79ac43e1b5168d1d6348874c2a4a19a8303ffce5fc30195b6af7155ffdcd115790f45fb4b20709498ba5b74bcb8d9d0380edad56330a40933936ff423
diff --git a/dev-vcs/PyGitUp/PyGitUp-1.3.1.ebuild b/dev-vcs/PyGitUp/PyGitUp-1.3.1.ebuild
index 0ed52d2..3a560bd 100644
--- a/dev-vcs/PyGitUp/PyGitUp-1.3.1.ebuild
+++ b/dev-vcs/PyGitUp/PyGitUp-1.3.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=5
+EAPI=6
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
DISTUTILS_SINGLE_IMPL=1
inherit distutils-r1
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-02-22 11:31 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-01 13:37 [gentoo-commits] dev/dev-zero:master commit in: dev-vcs/PyGitUp/ Tiziano Müller
-- strict thread matches above, loose matches on Subject: below --
2016-02-22 11:31 Tiziano Müller
2015-08-01 13:41 Tiziano Müller
2015-01-01 13:37 Tiziano Müller
2014-12-17 15:50 Tiziano Müller
2014-12-17 15:35 Tiziano Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox