public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2015-06-03 10:21 Justin Lecher
  0 siblings, 0 replies; 24+ messages in thread
From: Justin Lecher @ 2015-06-03 10:21 UTC (permalink / raw
  To: gentoo-commits

commit:     8fe1c83db07d02b9df38fc61bdabd64a464263b1
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sun May 31 09:30:29 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun May 31 09:30:29 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=8fe1c83d

dev-python/matplotlib2tikz: New ebuild written by me

Package-Manager: portage-2.2.18

 dev-python/matplotlib2tikz/ChangeLog               | 10 ++++++++
 .../matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild   |  1 +
 .../matplotlib2tikz/matplotlib2tikz-9999.ebuild    | 30 ++++++++++++++++++++++
 dev-python/matplotlib2tikz/metadata.xml            |  9 +++++++
 4 files changed, 50 insertions(+)

diff --git a/dev-python/matplotlib2tikz/ChangeLog b/dev-python/matplotlib2tikz/ChangeLog
new file mode 100644
index 0000000..b178e81
--- /dev/null
+++ b/dev-python/matplotlib2tikz/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-python/matplotlib2tikz
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*matplotlib2tikz-0.1.0 (31 May 2015)
+*matplotlib2tikz-9999 (31 May 2015)
+
+  31 May 2015; Marius Brehler <marbre@linux.sungazer.de>
+  +matplotlib2tikz-0.1.0.ebuild, +matplotlib2tikz-9999.ebuild, +metadata.xml:
+  New ebuild written by me

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild
new file mode 120000
index 0000000..49bc235
--- /dev/null
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild
@@ -0,0 +1 @@
+matplotlib2tikz-9999.ebuild
\ No newline at end of file

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
new file mode 100644
index 0000000..6af9d49
--- /dev/null
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python script for converting matplotlib figures into native Pgfplots (TikZ) figures"
+HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
+
+if [ ${PV} = "9999" ] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/nschloe/${PN}.git git://github.com/nschloe/${PN}.git"
+	KEYWORDS=""
+else
+	SRC_URI="https://github.com/nschloe/matplotlib2tikz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="LGPL-3"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
+	dev-texlive/texlive-pictures"
+DEPEND="${RDEPEND}"
+	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"

diff --git a/dev-python/matplotlib2tikz/metadata.xml b/dev-python/matplotlib2tikz/metadata.xml
new file mode 100644
index 0000000..865500b
--- /dev/null
+++ b/dev-python/matplotlib2tikz/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <herd>sci</herd>
+  <maintainer>
+    <email>marbre@linux.sungazer.de</email>
+    <name>Marius Brehler</name>
+  </maintainer>
+</pkgmetadata>


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2015-10-01  6:06 Justin Lecher
  0 siblings, 0 replies; 24+ messages in thread
From: Justin Lecher @ 2015-10-01  6:06 UTC (permalink / raw
  To: gentoo-commits

commit:     e96af048379f0346a5e239be4c10b3a30cf56f3f
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Wed Sep 30 18:30:11 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Sep 30 18:30:11 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=e96af048

dev-python/matplotlib2tikz: Drop python3 (only supported in 9999)

Package-Manager: portage-2.2.20.1

 dev-python/matplotlib2tikz/ChangeLog                    | 4 ++++
 dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-python/matplotlib2tikz/ChangeLog b/dev-python/matplotlib2tikz/ChangeLog
index 5058998..6e0a723 100644
--- a/dev-python/matplotlib2tikz/ChangeLog
+++ b/dev-python/matplotlib2tikz/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  30 Sep 2015; Marius Brehler <marbre@linux.sungazer.de>
+  matplotlib2tikz-0.1.0.ebuild:
+  dev-python/matplotlib2tikz: Drop python3 (only supported in 9999)
+
   05 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
   dev-python/matplotlib2tikz: Add github to remote-id in metadata.xml
 

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild
index 20ab8da..a0282d2 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_{3,4} )
+PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1
 


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2015-10-13  6:41 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2015-10-13  6:41 UTC (permalink / raw
  To: gentoo-commits

commit:     227556be4f45eb2a830fbd6ca6cabd828fc70c9b
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Oct 13 06:40:51 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Oct 13 06:40:51 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=227556be

dev-python/matplotlib2tikz: Cleanup ebuilds

Package-Manager: portage-2.2.20.1

 dev-python/matplotlib2tikz/ChangeLog                    |  4 ++++
 dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild | 11 ++---------
 dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild  | 13 +++----------
 3 files changed, 9 insertions(+), 19 deletions(-)

diff --git a/dev-python/matplotlib2tikz/ChangeLog b/dev-python/matplotlib2tikz/ChangeLog
index 06f0a5c..cb5531d 100644
--- a/dev-python/matplotlib2tikz/ChangeLog
+++ b/dev-python/matplotlib2tikz/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  13 Oct 2015; Marius Brehler <marbre@linux.sungazer.de>
+  matplotlib2tikz-0.1.0.ebuild, matplotlib2tikz-9999.ebuild:
+  dev-python/matplotlib2tikz: Cleanup ebuilds
+
 *matplotlib2tikz-0.2.0 (13 Oct 2015)
 
   13 Oct 2015; Marius Brehler <marbre@linux.sungazer.de>

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild
index a0282d2..ebf1d65 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild
@@ -10,15 +10,8 @@ inherit distutils-r1
 
 DESCRIPTION="Python script for converting matplotlib figures into native Pgfplots (TikZ) figures"
 HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
-
-if [ ${PV} = "9999" ] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/nschloe/${PN}.git git://github.com/nschloe/${PN}.git"
-	KEYWORDS=""
-else
-	SRC_URI="https://github.com/nschloe/matplotlib2tikz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
+SRC_URI="https://github.com/nschloe/matplotlib2tikz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
 
 LICENSE="LGPL-3"
 SLOT="0"

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
index 20ab8da..a0efa2d 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
@@ -6,19 +6,12 @@ EAPI=5
 
 PYTHON_COMPAT=( python2_7 python3_{3,4} )
 
-inherit distutils-r1
+inherit distutils-r1 git-r3
 
 DESCRIPTION="Python script for converting matplotlib figures into native Pgfplots (TikZ) figures"
 HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
-
-if [ ${PV} = "9999" ] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/nschloe/${PN}.git git://github.com/nschloe/${PN}.git"
-	KEYWORDS=""
-else
-	SRC_URI="https://github.com/nschloe/matplotlib2tikz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
+EGIT_REPO_URI="https://github.com/nschloe/${PN}.git git://github.com/nschloe/${PN}.git"
+KEYWORDS=""
 
 LICENSE="LGPL-3"
 SLOT="0"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2015-10-13 10:29 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2015-10-13 10:29 UTC (permalink / raw
  To: gentoo-commits

commit:     aaaabe05d4338fe00a51059f8427fe178139ba4e
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Oct 13 10:28:55 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Oct 13 10:28:55 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=aaaabe05

dev-python/matplotlib2tikz: License switched to MIT

Package-Manager: portage-2.2.20.1

 dev-python/matplotlib2tikz/ChangeLog                    | 4 ++++
 dev-python/matplotlib2tikz/matplotlib2tikz-0.2.0.ebuild | 2 +-
 dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild  | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/dev-python/matplotlib2tikz/ChangeLog b/dev-python/matplotlib2tikz/ChangeLog
index cb5531d..09a4a57 100644
--- a/dev-python/matplotlib2tikz/ChangeLog
+++ b/dev-python/matplotlib2tikz/ChangeLog
@@ -3,6 +3,10 @@
 # $Id$
 
   13 Oct 2015; Marius Brehler <marbre@linux.sungazer.de>
+  matplotlib2tikz-0.2.0.ebuild, matplotlib2tikz-9999.ebuild:
+  dev-python/matplotlib2tikz: License switched to MIT
+
+  13 Oct 2015; Marius Brehler <marbre@linux.sungazer.de>
   matplotlib2tikz-0.1.0.ebuild, matplotlib2tikz-9999.ebuild:
   dev-python/matplotlib2tikz: Cleanup ebuilds
 

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.2.0.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.2.0.ebuild
index cc7a667..a0a2216 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.2.0.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.2.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 KEYWORDS="~amd64"
 
-LICENSE="LGPL-3"
+LICENSE="MIT"
 SLOT="0"
 IUSE=""
 

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
index a0efa2d..b81eda2 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
 EGIT_REPO_URI="https://github.com/nschloe/${PN}.git git://github.com/nschloe/${PN}.git"
 KEYWORDS=""
 
-LICENSE="LGPL-3"
+LICENSE="MIT"
 SLOT="0"
 IUSE=""
 


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2015-10-21 21:01 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2015-10-21 21:01 UTC (permalink / raw
  To: gentoo-commits

commit:     848964f604ae83d7121fc45b7a7bfcb4705cabdb
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Wed Oct 21 21:00:45 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Wed Oct 21 21:00:45 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=848964f6

dev-python/matplotlib2tikz: Version bump to 0.2.4

Package-Manager: portage-2.2.20.1

 dev-python/matplotlib2tikz/ChangeLog               |  6 ++++++
 .../matplotlib2tikz/matplotlib2tikz-0.2.4.ebuild   | 23 ++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/dev-python/matplotlib2tikz/ChangeLog b/dev-python/matplotlib2tikz/ChangeLog
index 09a4a57..82f3a0a 100644
--- a/dev-python/matplotlib2tikz/ChangeLog
+++ b/dev-python/matplotlib2tikz/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*matplotlib2tikz-0.2.4 (21 Oct 2015)
+
+  21 Oct 2015; Marius Brehler <marbre@linux.sungazer.de>
+  +matplotlib2tikz-0.2.4.ebuild:
+  dev-python/matplotlib2tikz: Version bump to 0.2.4
+
   13 Oct 2015; Marius Brehler <marbre@linux.sungazer.de>
   matplotlib2tikz-0.2.0.ebuild, matplotlib2tikz-9999.ebuild:
   dev-python/matplotlib2tikz: License switched to MIT

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.2.4.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.2.4.ebuild
new file mode 100644
index 0000000..db655fe
--- /dev/null
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.2.4.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python script for converting matplotlib figures into native Pgfplots (TikZ) figures"
+HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
+	dev-texlive/texlive-pictures"
+DEPEND="${RDEPEND}"
+	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2015-11-02  7:49 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2015-11-02  7:49 UTC (permalink / raw
  To: gentoo-commits

commit:     0f21461a1205380deb0e84482d6302bc83f6cfed
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Mon Nov  2 07:43:56 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Mon Nov  2 07:43:56 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=0f21461a

dev-python/matplotlib2tikz: Version bump

Package-Manager: portage-2.2.20.1

 dev-python/matplotlib2tikz/ChangeLog               |  6 ++++++
 .../matplotlib2tikz/matplotlib2tikz-0.4.0.ebuild   | 24 ++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/dev-python/matplotlib2tikz/ChangeLog b/dev-python/matplotlib2tikz/ChangeLog
index 82f3a0a..f3f374e 100644
--- a/dev-python/matplotlib2tikz/ChangeLog
+++ b/dev-python/matplotlib2tikz/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*matplotlib2tikz-0.4.0 (02 Nov 2015)
+
+  02 Nov 2015; Marius Brehler <marbre@linux.sungazer.de>
+  +matplotlib2tikz-0.4.0.ebuild:
+  dev-python/matplotlib2tikz: Version bump
+
 *matplotlib2tikz-0.2.4 (21 Oct 2015)
 
   21 Oct 2015; Marius Brehler <marbre@linux.sungazer.de>

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.4.0.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.4.0.ebuild
new file mode 100644
index 0000000..f8677fb
--- /dev/null
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.4.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python script for converting matplotlib figures into native Pgfplots (TikZ) figures"
+HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-texlive/texlive-pictures"
+DEPEND="${RDEPEND}"
+	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2015-12-03 13:58 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2015-12-03 13:58 UTC (permalink / raw
  To: gentoo-commits

commit:     d99e59278a8b65c861fbb28193566cd7bf2e22ca
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Thu Dec  3 13:58:15 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Thu Dec  3 13:58:15 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=d99e5927

dev-python/matplotlib2tikz: Drop old

Package-Manager: portage-2.2.20.1

 dev-python/matplotlib2tikz/ChangeLog               |  4 ++++
 .../matplotlib2tikz/matplotlib2tikz-0.2.4.ebuild   | 23 ----------------------
 2 files changed, 4 insertions(+), 23 deletions(-)

diff --git a/dev-python/matplotlib2tikz/ChangeLog b/dev-python/matplotlib2tikz/ChangeLog
index b357a96..634f068 100644
--- a/dev-python/matplotlib2tikz/ChangeLog
+++ b/dev-python/matplotlib2tikz/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  03 Dec 2015; Marius Brehler <marbre@linux.sungazer.de>
+  -matplotlib2tikz-0.2.4.ebuild:
+  dev-python/matplotlib2tikz: Drop old
+
 *matplotlib2tikz-0.5.1 (03 Dec 2015)
 
   03 Dec 2015; Marius Brehler <marbre@linux.sungazer.de>

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.2.4.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.2.4.ebuild
deleted file mode 100644
index db655fe..0000000
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.2.4.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{3,4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python script for converting matplotlib figures into native Pgfplots (TikZ) figures"
-HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
-	dev-texlive/texlive-pictures"
-DEPEND="${RDEPEND}"
-	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2015-12-03 13:58 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2015-12-03 13:58 UTC (permalink / raw
  To: gentoo-commits

commit:     eecd0eea3205705d65dbfa01e86abc7a9396cbc1
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Thu Dec  3 13:57:54 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Thu Dec  3 13:57:54 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=eecd0eea

dev-python/matplotlib2tikz: Version bump

Package-Manager: portage-2.2.20.1

 dev-python/matplotlib2tikz/ChangeLog               |  6 ++++++
 .../matplotlib2tikz/matplotlib2tikz-0.5.1.ebuild   | 24 ++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/dev-python/matplotlib2tikz/ChangeLog b/dev-python/matplotlib2tikz/ChangeLog
index 09acef8..b357a96 100644
--- a/dev-python/matplotlib2tikz/ChangeLog
+++ b/dev-python/matplotlib2tikz/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*matplotlib2tikz-0.5.1 (03 Dec 2015)
+
+  03 Dec 2015; Marius Brehler <marbre@linux.sungazer.de>
+  +matplotlib2tikz-0.5.1.ebuild:
+  dev-python/matplotlib2tikz: Version bump
+
   02 Nov 2015; Marius Brehler <marbre@linux.sungazer.de>
   -files/matplotlib2tikz-0.2.0-setup.py.patch, -matplotlib2tikz-0.1.0.ebuild,
   -matplotlib2tikz-0.2.0.ebuild:

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.1.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.1.ebuild
new file mode 100644
index 0000000..f8677fb
--- /dev/null
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python script for converting matplotlib figures into native Pgfplots (TikZ) figures"
+HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-texlive/texlive-pictures"
+DEPEND="${RDEPEND}"
+	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2015-12-25 20:30 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2015-12-25 20:30 UTC (permalink / raw
  To: gentoo-commits

commit:     c9e673a1e8b6ab8fe133448db256a582f41c4ea0
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Fri Dec 25 20:29:36 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Fri Dec 25 20:29:36 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=c9e673a1

dev-python/matplotlib2tikz: Version bump; drop old

Package-Manager: portage-2.2.24

 dev-python/matplotlib2tikz/ChangeLog               |  7 +++++++
 .../matplotlib2tikz/matplotlib2tikz-0.4.0.ebuild   | 24 ----------------------
 ...z-0.5.1.ebuild => matplotlib2tikz-0.5.2.ebuild} |  0
 3 files changed, 7 insertions(+), 24 deletions(-)

diff --git a/dev-python/matplotlib2tikz/ChangeLog b/dev-python/matplotlib2tikz/ChangeLog
index 634f068..b0918b0 100644
--- a/dev-python/matplotlib2tikz/ChangeLog
+++ b/dev-python/matplotlib2tikz/ChangeLog
@@ -2,6 +2,13 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*matplotlib2tikz-0.5.2 (25 Dec 2015)
+
+  25 Dec 2015; Marius Brehler <marbre@linux.sungazer.de>
+  +matplotlib2tikz-0.5.2.ebuild, -matplotlib2tikz-0.4.0.ebuild,
+  -matplotlib2tikz-0.5.1.ebuild:
+  dev-python/matplotlib2tikz: Version bump; drop old
+
   03 Dec 2015; Marius Brehler <marbre@linux.sungazer.de>
   -matplotlib2tikz-0.2.4.ebuild:
   dev-python/matplotlib2tikz: Drop old

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.4.0.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.4.0.ebuild
deleted file mode 100644
index f8677fb..0000000
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.4.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python script for converting matplotlib figures into native Pgfplots (TikZ) figures"
-HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-texlive/texlive-pictures"
-DEPEND="${RDEPEND}"
-	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.1.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.2.ebuild
similarity index 100%
rename from dev-python/matplotlib2tikz/matplotlib2tikz-0.5.1.ebuild
rename to dev-python/matplotlib2tikz/matplotlib2tikz-0.5.2.ebuild


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2016-01-05  8:42 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2016-01-05  8:42 UTC (permalink / raw
  To: gentoo-commits

commit:     7b90123e41bd9e73a40bef00aeb2d35be8be53f9
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Jan  5 08:42:30 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Jan  5 08:42:30 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=7b90123e

dev-python/matplotlib2tikz: Version bump; drop old

Package-Manager: portage-2.2.26

 dev-python/matplotlib2tikz/ChangeLog                              | 8 +++++++-
 ...{matplotlib2tikz-0.5.2.ebuild => matplotlib2tikz-0.5.3.ebuild} | 2 +-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/dev-python/matplotlib2tikz/ChangeLog b/dev-python/matplotlib2tikz/ChangeLog
index b0918b0..5546961 100644
--- a/dev-python/matplotlib2tikz/ChangeLog
+++ b/dev-python/matplotlib2tikz/ChangeLog
@@ -1,7 +1,13 @@
 # ChangeLog for dev-python/matplotlib2tikz
-# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*matplotlib2tikz-0.5.3 (05 Jan 2016)
+
+  05 Jan 2016; Marius Brehler <marbre@linux.sungazer.de>
+  +matplotlib2tikz-0.5.3.ebuild, -matplotlib2tikz-0.5.2.ebuild:
+  dev-python/matplotlib2tikz: Version bump; drop old
+
 *matplotlib2tikz-0.5.2 (25 Dec 2015)
 
   25 Dec 2015; Marius Brehler <marbre@linux.sungazer.de>

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.2.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.3.ebuild
similarity index 93%
rename from dev-python/matplotlib2tikz/matplotlib2tikz-0.5.2.ebuild
rename to dev-python/matplotlib2tikz/matplotlib2tikz-0.5.3.ebuild
index f8677fb..b10d23d 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.2.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2016-01-21  8:07 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2016-01-21  8:07 UTC (permalink / raw
  To: gentoo-commits

commit:     3585e2a9db25496c8272b731a19eb50ae2dc26e6
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Thu Jan 21 08:04:48 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Thu Jan 21 08:04:48 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=3585e2a9

dev-python/matplotlib2tikz: Version bump, drop old, bump to EAPI=6

Package-Manager: portage-2.2.26

 ...{matplotlib2tikz-0.5.3.ebuild => matplotlib2tikz-0.5.4.ebuild} | 4 ++--
 dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild            | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.3.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.4.ebuild
similarity index 83%
rename from dev-python/matplotlib2tikz/matplotlib2tikz-0.5.3.ebuild
rename to dev-python/matplotlib2tikz/matplotlib2tikz-0.5.4.ebuild
index b10d23d..ec78e4f 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.3.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.4.ebuild
@@ -2,13 +2,13 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit distutils-r1
 
-DESCRIPTION="Python script for converting matplotlib figures into native Pgfplots (TikZ) figures"
+DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
 HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 KEYWORDS="~amd64"

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
index b81eda2..7495ab0 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
@@ -1,14 +1,14 @@
-# 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=( python2_7 python3_{3,4} )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit distutils-r1 git-r3
 
-DESCRIPTION="Python script for converting matplotlib figures into native Pgfplots (TikZ) figures"
+DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
 HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
 EGIT_REPO_URI="https://github.com/nschloe/${PN}.git git://github.com/nschloe/${PN}.git"
 KEYWORDS=""


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2016-04-01 13:58 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2016-04-01 13:58 UTC (permalink / raw
  To: gentoo-commits

commit:     3b2ee652252efb4287136d0713eecb199f5ff44f
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Fri Apr  1 13:57:57 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Fri Apr  1 13:57:57 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=3b2ee652

dev-python/matplotlib2tikz: Version bump

Package-Manager: portage-2.2.26

 .../matplotlib2tikz/matplotlib2tikz-0.5.6.ebuild   | 24 ++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.6.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.6.ebuild
new file mode 100644
index 0000000..ec78e4f
--- /dev/null
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.6.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
+HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-texlive/texlive-pictures"
+DEPEND="${RDEPEND}"
+	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2016-04-25  8:54 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2016-04-25  8:54 UTC (permalink / raw
  To: gentoo-commits

commit:     4b3c5cccb9eb4e78d0f0bd2ab79e7258ad64ecfa
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Mon Apr 25 08:53:28 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Mon Apr 25 08:53:28 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=4b3c5ccc

dev-python/matplotlib2tikz: Version bump; drop old

Package-Manager: portage-2.2.26

 .../{matplotlib2tikz-0.5.4.ebuild => matplotlib2tikz-0.5.7.ebuild}        | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.4.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.7.ebuild
similarity index 100%
rename from dev-python/matplotlib2tikz/matplotlib2tikz-0.5.4.ebuild
rename to dev-python/matplotlib2tikz/matplotlib2tikz-0.5.7.ebuild


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2016-06-28 12:59 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2016-06-28 12:59 UTC (permalink / raw
  To: gentoo-commits

commit:     d7660dfe16c4763345121d66112fb14c3174e489
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Jun 28 12:46:41 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Jun 28 12:46:41 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=d7660dfe

dev-python/matplotlib2tikz: Drop old

Package-Manager: portage-2.2.28

 .../matplotlib2tikz/matplotlib2tikz-0.5.6.ebuild   | 24 ----------------------
 1 file changed, 24 deletions(-)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.6.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.6.ebuild
deleted file mode 100644
index ec78e4f..0000000
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.6.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
-HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-texlive/texlive-pictures"
-DEPEND="${RDEPEND}"
-	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2016-06-28 12:59 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2016-06-28 12:59 UTC (permalink / raw
  To: gentoo-commits

commit:     ff322abaa6d16e6aa962cf7dea3dc98f1a9dbed6
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Jun 28 12:46:10 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Jun 28 12:46:10 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=ff322aba

dev-python/matplotlib2tikz: Fix deps

Package-Manager: portage-2.2.28

 dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
index 7495ab0..77decc9 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
@@ -18,6 +18,7 @@ SLOT="0"
 IUSE=""
 
 RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
 	dev-texlive/texlive-pictures"
 DEPEND="${RDEPEND}"
 	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2016-10-12  7:12 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2016-10-12  7:12 UTC (permalink / raw
  To: gentoo-commits

commit:     1ed88b3f6385598b9376b24e454264e9542758a0
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Wed Oct 12 07:09:11 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Wed Oct 12 07:09:11 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=1ed88b3f

dev-python/matplotlib2tikz: Version bump to 0.5.14

Package-Manager: portage-2.2.28

 .../matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild  | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild
new file mode 100644
index 0000000..8a22daf
--- /dev/null
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
+HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	>=dev-python/pillow-3.0.0[${PYTHON_USEDEP}]
+	dev-texlive/texlive-pictures"
+DEPEND="${RDEPEND}"
+	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2017-01-03  9:16 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2017-01-03  9:16 UTC (permalink / raw
  To: gentoo-commits

commit:     eb581b5e7710eb60f70c3ac25000efbaaff241b9
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Jan  3 09:13:51 2017 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Jan  3 09:13:51 2017 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=eb581b5e

dev-python/matplotlib2tikz: Drop python3_3

Package-Manager: portage-2.3.0

 dev-python/matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild | 4 ++--
 dev-python/matplotlib2tikz/matplotlib2tikz-0.5.7.ebuild  | 4 ++--
 dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild   | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild
index 8a22daf..2c29ff9 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
 
 inherit distutils-r1
 

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.7.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.7.ebuild
index ec78e4f..ada550e 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.7.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.7.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
 
 inherit distutils-r1
 

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
index 77decc9..265c8cb 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
 
 inherit distutils-r1 git-r3
 


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2017-01-03  9:16 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2017-01-03  9:16 UTC (permalink / raw
  To: gentoo-commits

commit:     9e222a2f6941fe86c70eba205579707757bc48c9
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Jan  3 09:12:54 2017 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Jan  3 09:12:54 2017 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=9e222a2f

dev-python/matplotlib2tikz: Version bump to 0.5.16

Package-Manager: portage-2.3.0

 .../matplotlib2tikz/matplotlib2tikz-0.5.16.ebuild  | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.16.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.16.ebuild
new file mode 100644
index 0000000..2c29ff9
--- /dev/null
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.16.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
+HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	>=dev-python/pillow-3.0.0[${PYTHON_USEDEP}]
+	dev-texlive/texlive-pictures"
+DEPEND="${RDEPEND}"
+	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2017-02-03 10:33 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2017-02-03 10:33 UTC (permalink / raw
  To: gentoo-commits

commit:     a48633c6d566e5f5bfe48bdfca76a554cde69ba4
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Fri Feb  3 10:32:30 2017 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Fri Feb  3 10:32:30 2017 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=a48633c6

dev-python/matplotlib2tikz: Version bump to 0.6.0

Package-Manager: portage-2.3.3

 .../matplotlib2tikz/matplotlib2tikz-0.6.0.ebuild   | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.0.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.0.ebuild
new file mode 100644
index 0000000..2c29ff9
--- /dev/null
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
+HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	>=dev-python/pillow-3.0.0[${PYTHON_USEDEP}]
+	dev-texlive/texlive-pictures"
+DEPEND="${RDEPEND}"
+	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2017-02-03 10:33 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2017-02-03 10:33 UTC (permalink / raw
  To: gentoo-commits

commit:     29ae2bc9f08b68b3add33260588293d09c914922
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Fri Feb  3 10:31:07 2017 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Fri Feb  3 10:31:07 2017 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=29ae2bc9

dev-python/matplotlib2tikz: Drop old

Package-Manager: portage-2.3.3

 .../matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild  | 25 ----------------------
 .../matplotlib2tikz/matplotlib2tikz-0.5.7.ebuild   | 24 ---------------------
 2 files changed, 49 deletions(-)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild
deleted file mode 100644
index 2c29ff9..0000000
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.14.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
-HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
-	dev-python/numpy[${PYTHON_USEDEP}]
-	>=dev-python/pillow-3.0.0[${PYTHON_USEDEP}]
-	dev-texlive/texlive-pictures"
-DEPEND="${RDEPEND}"
-	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.7.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.7.ebuild
deleted file mode 100644
index ada550e..0000000
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.7.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
-HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-texlive/texlive-pictures"
-DEPEND="${RDEPEND}"
-	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2017-03-06 15:29 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2017-03-06 15:29 UTC (permalink / raw
  To: gentoo-commits

commit:     113f800934bd110c86306184fd7541358b817eea
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Mon Mar  6 15:26:49 2017 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Mon Mar  6 15:26:49 2017 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=113f8009

dev-python/matplotlib2tikz: Drop 0.6.0

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../matplotlib2tikz/matplotlib2tikz-0.6.0.ebuild   | 24 ----------------------
 1 file changed, 24 deletions(-)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.0.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.0.ebuild
deleted file mode 100644
index adbd5e028..000000000
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
-HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
-	dev-python/numpy[${PYTHON_USEDEP}]
-	>=dev-python/pillow-3.0.0[${PYTHON_USEDEP}]
-	dev-texlive/texlive-pictures"
-DEPEND="${RDEPEND}"
-	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2017-03-10  7:37 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2017-03-10  7:37 UTC (permalink / raw
  To: gentoo-commits

commit:     b5394306332c432c087b769c3db2263202e37ded
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Fri Mar 10 07:35:58 2017 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Fri Mar 10 07:35:58 2017 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=b5394306

dev-python/matplotlib2tikz: Update live ebuild

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
index bd25518c5..802c649b6 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
@@ -16,8 +16,11 @@ LICENSE="MIT"
 SLOT="0"
 IUSE=""
 
+PATCHES=( "${FILESDIR}/${PN}-0.6-init_pipdated.patch" )
+
 RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
 	dev-python/numpy[${PYTHON_USEDEP}]
+	>=dev-python/pillow-3.0.0[${PYTHON_USEDEP}]
 	dev-texlive/texlive-pictures"
 DEPEND="${RDEPEND}"
 	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2017-03-10  7:37 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2017-03-10  7:37 UTC (permalink / raw
  To: gentoo-commits

commit:     d1090a08b6e75c5ce7c6cc2ddbb3ad0dc95ffe92
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Fri Mar 10 07:35:33 2017 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Fri Mar 10 07:35:33 2017 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=d1090a08

dev-python/matplotlib2tikz: Moved to tree

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../matplotlib2tikz/matplotlib2tikz-0.5.16.ebuild  | 24 --------------------
 .../matplotlib2tikz/matplotlib2tikz-0.6.2.ebuild   | 26 ----------------------
 2 files changed, 50 deletions(-)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.16.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.16.ebuild
deleted file mode 100644
index adbd5e028..000000000
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.5.16.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
-HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
-	dev-python/numpy[${PYTHON_USEDEP}]
-	>=dev-python/pillow-3.0.0[${PYTHON_USEDEP}]
-	dev-texlive/texlive-pictures"
-DEPEND="${RDEPEND}"
-	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.2.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.2.ebuild
deleted file mode 100644
index e89b630d8..000000000
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.2.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
-HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-PATCHES=( "${FILESDIR}/${PN}-0.6-init_pipdated.patch" )
-
-RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
-	dev-python/numpy[${PYTHON_USEDEP}]
-	>=dev-python/pillow-3.0.0[${PYTHON_USEDEP}]
-	dev-texlive/texlive-pictures"
-DEPEND="${RDEPEND}"
-	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/
@ 2017-04-03 14:58 Marius Brehler
  0 siblings, 0 replies; 24+ messages in thread
From: Marius Brehler @ 2017-04-03 14:58 UTC (permalink / raw
  To: gentoo-commits

commit:     103099c4b4996f320f5c832d7d48daa398d1fcf7
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Mon Apr  3 14:56:14 2017 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Mon Apr  3 14:56:14 2017 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=103099c4

dev-python/matplotlib2tikz: Adopt changes from main tree

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../matplotlib2tikz/matplotlib2tikz-9999.ebuild    |  8 +++----
 dev-python/matplotlib2tikz/metadata.xml            | 25 +++++++++++-----------
 2 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
index 802c649b6..47853ce1e 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-9999.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5} )
 
 inherit distutils-r1 git-r3
 
-DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
 HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
 EGIT_REPO_URI="https://github.com/nschloe/${PN}.git git://github.com/nschloe/${PN}.git"
 KEYWORDS=""
@@ -18,9 +18,9 @@ IUSE=""
 
 PATCHES=( "${FILESDIR}/${PN}-0.6-init_pipdated.patch" )
 
-RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
+RDEPEND="
+	dev-python/matplotlib[${PYTHON_USEDEP}]
 	dev-python/numpy[${PYTHON_USEDEP}]
-	>=dev-python/pillow-3.0.0[${PYTHON_USEDEP}]
-	dev-texlive/texlive-pictures"
+	dev-python/pillow[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}"
 	#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"

diff --git a/dev-python/matplotlib2tikz/metadata.xml b/dev-python/matplotlib2tikz/metadata.xml
index 7d7b3f238..9c08eac01 100644
--- a/dev-python/matplotlib2tikz/metadata.xml
+++ b/dev-python/matplotlib2tikz/metadata.xml
@@ -1,16 +1,17 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="person">
-    <email>marbre@linux.sungazer.de</email>
-    <name>Marius Brehler</name>
-  </maintainer>
-  <maintainer type="project">
-    <email>sci@gentoo.org</email>
-    <name>Gentoo Science Project</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">nschloe/matplotlib2tikz</remote-id>
-    <remote-id type="pypi">matplotlib2tikz</remote-id>
-  </upstream>
+	<maintainer type="person">
+		<email>marbre@linux.sungazer.de</email>
+		<name>Marius Brehler</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>sci@gentoo.org</email>
+		<name>Gentoo Science Project</name>
+	</maintainer>
+	<longdescription>matplotlib2tikz is a Python tool for converting matplotlib figures into PGFPlots (TikZ) figures like for native inclusion into LaTeX documents. The output of matplotlib2tikz is in PGFPlots, a LaTeX library that sits on top of TikZ and describes graphs in terms of axes, data etc. Consequently, the output of matplotlib2tikz retains more information, can be more easily understood, and is more easily editable than raw TikZ output.</longdescription>
+	<upstream>
+		<remote-id type="github">nschloe/matplotlib2tikz</remote-id>
+		<remote-id type="pypi">matplotlib2tikz</remote-id>
+	</upstream>
 </pkgmetadata>


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

end of thread, other threads:[~2017-04-03 14:58 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-05  8:42 [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/ Marius Brehler
  -- strict thread matches above, loose matches on Subject: below --
2017-04-03 14:58 Marius Brehler
2017-03-10  7:37 Marius Brehler
2017-03-10  7:37 Marius Brehler
2017-03-06 15:29 Marius Brehler
2017-02-03 10:33 Marius Brehler
2017-02-03 10:33 Marius Brehler
2017-01-03  9:16 Marius Brehler
2017-01-03  9:16 Marius Brehler
2016-10-12  7:12 Marius Brehler
2016-06-28 12:59 Marius Brehler
2016-06-28 12:59 Marius Brehler
2016-04-25  8:54 Marius Brehler
2016-04-01 13:58 Marius Brehler
2016-01-21  8:07 Marius Brehler
2015-12-25 20:30 Marius Brehler
2015-12-03 13:58 Marius Brehler
2015-12-03 13:58 Marius Brehler
2015-11-02  7:49 Marius Brehler
2015-10-21 21:01 Marius Brehler
2015-10-13 10:29 Marius Brehler
2015-10-13  6:41 Marius Brehler
2015-10-01  6:06 Justin Lecher
2015-06-03 10:21 Justin Lecher

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