public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: dev-python/pydotplus/
@ 2016-02-09 13:18 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2016-02-09 13:18 UTC (permalink / raw
  To: gentoo-commits

commit:     86165950f7430b2591a9c282fe958b1a60778e99
Author:     Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Fri Feb  5 16:25:20 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Feb  5 16:25:20 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=86165950

dev-python/pydotplus: culd not test on python 3.*

Package-Manager: portage-2.2.27

 dev-python/pydotplus/pydotplus-2.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pydotplus/pydotplus-2.0.2.ebuild b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
index de5270b..6dd4159 100644
--- a/dev-python/pydotplus/pydotplus-2.0.2.ebuild
+++ b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_4 )
+PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1
 


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

* [gentoo-commits] proj/sci:master commit in: dev-python/pydotplus/
@ 2016-02-09 13:18 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2016-02-09 13:18 UTC (permalink / raw
  To: gentoo-commits

commit:     5b755d36ec20d428112e46f8487dcc8e5625a82a
Author:     Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Thu Feb  4 02:25:44 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Feb  4 02:25:44 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=5b755d36

dev-python/pydotplus: new package

Package-Manager: portage-2.2.27

 dev-python/pydotplus/metadata.xml           | 19 ++++++++++++++++++
 dev-python/pydotplus/pydotplus-2.0.2.ebuild | 31 +++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/dev-python/pydotplus/metadata.xml b/dev-python/pydotplus/metadata.xml
new file mode 100644
index 0000000..6efcdec
--- /dev/null
+++ b/dev-python/pydotplus/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>h.chr@mail.ru</email>
+    <name>Horea Christian</name>
+  </maintainer>
+  <maintainer type="project">
+    <email>sci@gentoo.org</email>
+    <name>Gentoo Science Project</name>
+  </maintainer>
+  <longdescription lang="en">
+    PyDotPlus is an improved version of the old pydot project that provides a Python Interface to
+    Graphviz’s Dot language.
+  </longdescription>
+  <upstream>
+    <remote-id type="pypi">pydotplus</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-python/pydotplus/pydotplus-2.0.2.ebuild b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
new file mode 100644
index 0000000..33dae98
--- /dev/null
+++ b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_4 )
+
+inherit distutils-r1
+
+DESCRIPTION="Improved version of the old pydot project"
+HOMEPAGE="http://pydotplus.readthedocs.org/"
+SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	"
+RDEPEND="
+	dev-python/pyparsing[${PYTHON_USEDEP}]
+	"
+
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+src_test() {
+	${PYTHON} -m unittest discover
+}


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

* [gentoo-commits] proj/sci:master commit in: dev-python/pydotplus/
@ 2016-02-09 13:18 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2016-02-09 13:18 UTC (permalink / raw
  To: gentoo-commits

commit:     ee9d01d1442c4e58d97e2c26f926006017378bed
Author:     Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Thu Feb  4 09:48:53 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Feb  4 09:48:53 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=ee9d01d1

dev-python/pydotplus: added die call

Package-Manager: portage-2.2.27

 dev-python/pydotplus/pydotplus-2.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pydotplus/pydotplus-2.0.2.ebuild b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
index 33dae98..de5270b 100644
--- a/dev-python/pydotplus/pydotplus-2.0.2.ebuild
+++ b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
@@ -27,5 +27,5 @@ RDEPEND="
 S="${WORKDIR}/${PN}-${MY_PV}"
 
 src_test() {
-	${PYTHON} -m unittest discover
+	${PYTHON} -m unittest discover || die
 }


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

* [gentoo-commits] proj/sci:master commit in: dev-python/pydotplus/
@ 2016-02-17 14:02 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2016-02-17 14:02 UTC (permalink / raw
  To: gentoo-commits

commit:     1520be2cb0aacfc20855d0b1b5472304dd050974
Author:     Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Mon Feb 15 19:35:28 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Feb 15 19:35:28 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=1520be2c

dev-python/pydotplus: deleted erroneous source dir

Package-Manager: portage-2.2.27

 dev-python/pydotplus/pydotplus-2.0.2.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dev-python/pydotplus/pydotplus-2.0.2.ebuild b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
index 6dd4159..d4d8965 100644
--- a/dev-python/pydotplus/pydotplus-2.0.2.ebuild
+++ b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
@@ -24,8 +24,6 @@ RDEPEND="
 	dev-python/pyparsing[${PYTHON_USEDEP}]
 	"
 
-S="${WORKDIR}/${PN}-${MY_PV}"
-
 src_test() {
 	${PYTHON} -m unittest discover || die
 }


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

* [gentoo-commits] proj/sci:master commit in: dev-python/pydotplus/
@ 2016-04-26 19:06 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2016-04-26 19:06 UTC (permalink / raw
  To: gentoo-commits

commit:     17c5e3ad25c425a5ad809f05dd8f000e255e0d5d
Author:     Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Tue Apr 26 18:08:53 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Apr 26 18:08:53 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=17c5e3ad

dev-python/pydotplus: added 3.4 compatibility

Package-Manager: portage-2.2.28

 dev-python/pydotplus/pydotplus-2.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pydotplus/pydotplus-2.0.2.ebuild b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
index d4d8965..3a9d159 100644
--- a/dev-python/pydotplus/pydotplus-2.0.2.ebuild
+++ b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python{2_7,3_4} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] proj/sci:master commit in: dev-python/pydotplus/
@ 2016-09-10  8:26 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2016-09-10  8:26 UTC (permalink / raw
  To: gentoo-commits

commit:     c0e95531e367eb647adec78b7f50d158764c8034
Author:     Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Sat Sep 10 08:12:55 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Sep 10 08:12:55 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=c0e95531

dev-python/pydotplus: updted EAPI and Python compatibility (#671)

Package-Manager: portage-2.3.0

 dev-python/pydotplus/pydotplus-2.0.2.ebuild | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-python/pydotplus/pydotplus-2.0.2.ebuild b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
index 3a9d159..d1edc85 100644
--- a/dev-python/pydotplus/pydotplus-2.0.2.ebuild
+++ b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_4} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
 
 inherit distutils-r1
 
@@ -24,6 +24,6 @@ RDEPEND="
 	dev-python/pyparsing[${PYTHON_USEDEP}]
 	"
 
-src_test() {
-	${PYTHON} -m unittest discover || die
+python_test() {
+	${EPYTHON} -m unittest discover || die
 }


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

* [gentoo-commits] proj/sci:master commit in: dev-python/pydotplus/
@ 2020-03-18  3:15 Horea Christian
  0 siblings, 0 replies; 8+ messages in thread
From: Horea Christian @ 2020-03-18  3:15 UTC (permalink / raw
  To: gentoo-commits

commit:     10596bfe2f001cbea67d5cdfe3725b9e6d626c8b
Author:     Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Wed Mar 18 03:15:02 2020 +0000
Commit:     Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Wed Mar 18 03:15:02 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=10596bfe

dev-python/pydotplus: updated PYTHON_COMPAT 3_6,3_7

Package-Manager: Portage-2.3.92, Repoman-2.3.20
Signed-off-by: Horea Christian <chr <AT> chymera.eu>

 dev-python/pydotplus/pydotplus-2.0.2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/pydotplus/pydotplus-2.0.2.ebuild b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
index 50f99069f..afe343d8f 100644
--- a/dev-python/pydotplus/pydotplus-2.0.2.ebuild
+++ b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_6,3_7} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] proj/sci:master commit in: dev-python/pydotplus/
@ 2020-09-27 21:24 Horea Christian
  0 siblings, 0 replies; 8+ messages in thread
From: Horea Christian @ 2020-09-27 21:24 UTC (permalink / raw
  To: gentoo-commits

commit:     df0e3b949c72e5e05c765deca248ed3e3320004f
Author:     Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Sun Sep 27 21:23:39 2020 +0000
Commit:     Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Sun Sep 27 21:23:39 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=df0e3b94

dev-python/pydotplus: superseded by Gentoo Main

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6af275b39b57cc7e008d7c6c4e816948b8f555ff

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Horea Christian <chr <AT> chymera.eu>

 dev-python/pydotplus/metadata.xml           | 19 -------------------
 dev-python/pydotplus/pydotplus-2.0.2.ebuild | 28 ----------------------------
 2 files changed, 47 deletions(-)

diff --git a/dev-python/pydotplus/metadata.xml b/dev-python/pydotplus/metadata.xml
deleted file mode 100644
index aa8f9c150..000000000
--- a/dev-python/pydotplus/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<email>horea.christ@gmail.com</email>
-		<name>Horea Christian</name>
-	</maintainer>
-	<maintainer type="project">
-		<email>sci@gentoo.org</email>
-		<name>Gentoo Science Project</name>
-	</maintainer>
-	<longdescription lang="en">
-PyDotPlus is an improved version of the old pydot project that provides a Python Interface to
-Graphviz’s Dot language.
-</longdescription>
-	<upstream>
-		<remote-id type="pypi">pydotplus</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/dev-python/pydotplus/pydotplus-2.0.2.ebuild b/dev-python/pydotplus/pydotplus-2.0.2.ebuild
deleted file mode 100644
index afe343d8f..000000000
--- a/dev-python/pydotplus/pydotplus-2.0.2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{2_7,3_6,3_7} )
-
-inherit distutils-r1
-
-DESCRIPTION="Improved version of the old pydot project"
-HOMEPAGE="http://pydotplus.readthedocs.org/"
-SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	"
-RDEPEND="
-	dev-python/pyparsing[${PYTHON_USEDEP}]
-	"
-
-python_test() {
-	${EPYTHON} -m unittest discover || die
-}


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

end of thread, other threads:[~2020-09-27 21:24 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-17 14:02 [gentoo-commits] proj/sci:master commit in: dev-python/pydotplus/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2020-09-27 21:24 Horea Christian
2020-03-18  3:15 Horea Christian
2016-09-10  8:26 Justin Lecher
2016-04-26 19:06 Justin Lecher
2016-02-09 13:18 Justin Lecher
2016-02-09 13:18 Justin Lecher
2016-02-09 13:18 Justin Lecher

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