[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/files/, dev-tex/dot2tex/

2024-04-11 Thread Sebastian Pipping
commit: ce55c48a686ce6ac2e3806c2dddce0d526f2763e
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Thu Apr 11 21:17:12 2024 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Thu Apr 11 21:17:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce55c48a

dev-tex/dot2tex: PEP 517 + Python 3.12

Closes: https://bugs.gentoo.org/909974
Signed-off-by: Sebastian Pipping  gentoo.org>

 dev-tex/dot2tex/dot2tex-2.11.3-r1.ebuild   | 63 ++
 .../files/dot2tex-2.11.3-setup-py-script.patch | 24 +
 2 files changed, 87 insertions(+)

diff --git a/dev-tex/dot2tex/dot2tex-2.11.3-r1.ebuild 
b/dev-tex/dot2tex/dot2tex-2.11.3-r1.ebuild
new file mode 100644
index ..85bf337ba030
--- /dev/null
+++ b/dev-tex/dot2tex/dot2tex-2.11.3-r1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..12} )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1
+
+DESCRIPTION="Graphviz to LaTeX converter"
+HOMEPAGE="https://dot2tex.readthedocs.org/ https://github.com/xyz2tex/dot2tex;
+SRC_URI="https://github.com/xyz2tex/dot2tex/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
+IUSE="doc examples"
+
+DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"
+RDEPEND="
+   dev-python/pydot[${PYTHON_USEDEP}]
+   media-gfx/graphviz
+"
+BDEPEND="doc? ( dev-python/sphinx )"
+
+EPYTEST_DESELECT=(
+   # https://github.com/xyz2tex/dot2tex/issues/94
+   tests/test_dot2tex.py::MultipleStatements::test_semicolon
+)
+
+PATCHES=(
+   "${FILESDIR}"/${P}-setup-py-script.patch
+)
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # Syntax failures (old-style print)
+   # Looks fixed in master: 
https://github.com/xyz2tex/dot2tex/commit/38aeef9615f90fe347c5c45d514eaf00b116422b
+   rm -r "${S}"/tests/experimental || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   if use doc ; then
+   cd "${S}/docs"
+   emake html
+   fi
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   if use doc; then
+   dodoc -r docs/_build/html
+   fi
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}

diff --git a/dev-tex/dot2tex/files/dot2tex-2.11.3-setup-py-script.patch 
b/dev-tex/dot2tex/files/dot2tex-2.11.3-setup-py-script.patch
new file mode 100644
index ..9bda03b5a484
--- /dev/null
+++ b/dev-tex/dot2tex/files/dot2tex-2.11.3-setup-py-script.patch
@@ -0,0 +1,24 @@
+From 7b4c3e2b62a0e988db06051976260faa3889377a Mon Sep 17 00:00:00 2001
+From: Sebastian Pipping 
+Date: Thu, 11 Apr 2024 23:11:15 +0200
+Subject: [PATCH] setup.py: Drop script "dot2tex" that collides with entrypoint
+
+---
+ setup.py | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/setup.py b/setup.py
+index d107eed..9f50c7c 100644
+--- a/setup.py
 b/setup.py
+@@ -25,7 +25,6 @@ Graphviz_, a more LaTeX friendly look and feel. This is 
accomplished by:
+   author_email='kjel...@gmail.com',
+   url="https://github.com/kjellmf/dot2tex;,
+   py_modules=['dot2tex.dot2tex', 'dot2tex.dotparsing'],
+-  scripts=['dot2tex/dot2tex'],
+   classifiers=[
+   'Development Status :: 4 - Beta',
+   'Environment :: Console',
+-- 
+2.44.0
+



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2023-07-07 Thread Conrad Kostecki
commit: 9763b3a3fbee872938d0ad65bfb431af1b3a7db9
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Jul  5 07:22:59 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Fri Jul  7 21:53:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9763b3a3

dev-tex/dot2tex: update HOMEPAGE

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-tex/dot2tex/dot2tex-2.11.3.ebuild | 10 +-
 dev-tex/dot2tex/metadata.xml  |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild 
b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
index ec5e1fafb509..a07837edfc11 100644
--- a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
@@ -6,9 +6,9 @@ EAPI=8
 PYTHON_COMPAT=( python3_{9..11} )
 inherit distutils-r1
 
-DESCRIPTION="A Graphviz to LaTeX converter"
-HOMEPAGE="https://dot2tex.readthedocs.org/ https://github.com/kjellmf/dot2tex;
-SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+DESCRIPTION="Graphviz to LaTeX converter"
+HOMEPAGE="https://dot2tex.readthedocs.org/ https://github.com/xyz2tex/dot2tex;
+SRC_URI="https://github.com/xyz2tex/dot2tex/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
@@ -23,7 +23,7 @@ RDEPEND="
 BDEPEND="doc? ( dev-python/sphinx )"
 
 EPYTEST_DESELECT=(
-   # https://github.com/kjellmf/dot2tex/issues/94
+   # https://github.com/xyz2tex/dot2tex/issues/94
tests/test_dot2tex.py::MultipleStatements::test_semicolon
 )
 
@@ -31,7 +31,7 @@ distutils_enable_tests pytest
 
 python_prepare_all() {
# Syntax failures (old-style print)
-   # Looks fixed in master: 
https://github.com/kjellmf/dot2tex/commit/38aeef9615f90fe347c5c45d514eaf00b116422b
+   # Looks fixed in master: 
https://github.com/xyz2tex/dot2tex/commit/38aeef9615f90fe347c5c45d514eaf00b116422b
rm -r "${S}"/tests/experimental || die
 
distutils-r1_python_prepare_all

diff --git a/dev-tex/dot2tex/metadata.xml b/dev-tex/dot2tex/metadata.xml
index 8ab60496f83c..07745c2362d7 100644
--- a/dev-tex/dot2tex/metadata.xml
+++ b/dev-tex/dot2tex/metadata.xml
@@ -8,6 +8,6 @@


dot2tex
-   kjellmf/dot2tex
+   xyz2tex/dot2tex

 



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2023-05-01 Thread Sam James
commit: e5125e3948e90b7a27e03eccba4f02b1e4aa5ac2
Author: Sam James  gentoo  org>
AuthorDate: Mon May  1 11:40:01 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon May  1 12:35:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5125e39

dev-tex/dot2tex: enable py3.11

Closes: https://bugs.gentoo.org/896910
Signed-off-by: Sam James  gentoo.org>

 dev-tex/dot2tex/dot2tex-2.11.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild 
b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
index d8cae5ac288e..61614ae16b48 100644
--- a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit distutils-r1
 
 DESCRIPTION="A Graphviz to LaTeX converter"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2022-05-21 Thread Sam James
commit: 1f7ec267854aaf1873f66ef379f14c1f68afabab
Author: Sam James  gentoo  org>
AuthorDate: Sun May 22 04:30:15 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun May 22 04:31:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f7ec267

dev-tex/dot2tex: add Python 3.10, tests

Closes: https://bugs.gentoo.org/798993
Closes: https://bugs.gentoo.org/845915
Signed-off-by: Sam James  gentoo.org>

 dev-tex/dot2tex/dot2tex-2.11.3.ebuild | 24 +++-
 1 file changed, 19 insertions(+), 5 deletions(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild 
b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
index 1e00e0e22341..f35891abaa5e 100644
--- a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
@@ -1,10 +1,9 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..9} )
+EAPI=8
 
+PYTHON_COMPAT=( python3_{8..10} )
 inherit distutils-r1
 
 DESCRIPTION="A Graphviz to LaTeX converter"
@@ -20,8 +19,23 @@ DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"
 RDEPEND="
dev-python/pydot[${PYTHON_USEDEP}]
media-gfx/graphviz"
-DEPEND="${DEPEND}
-   doc? ( dev-python/sphinx )"
+DEPEND="${DEPEND}"
+BDEPEND="doc? ( dev-python/sphinx )"
+
+EPYTEST_DESELECT=(
+   # https://github.com/kjellmf/dot2tex/issues/94
+   tests/test_dot2tex.py::MultipleStatements::test_semicolon
+)
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # Syntax failures (old-style print)
+   # Looks fixed in master: 
https://github.com/kjellmf/dot2tex/commit/38aeef9615f90fe347c5c45d514eaf00b116422b
+   rm -r "${S}"/tests/experimental || die
+
+   distutils-r1_python_prepare_all
+}
 
 python_compile_all() {
if use doc ; then



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2022-02-04 Thread Michał Górny
commit: 3b78f936c91a55b5f30c93c353053304522d55de
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  4 10:19:06 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  4 10:26:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b78f936

dev-tex/dot2tex: Drop to ~arch because of dev-python/pydot

Signed-off-by: Michał Górny  gentoo.org>

 dev-tex/dot2tex/dot2tex-2.11.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild 
b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
index 03afd69a0bc1..1e00e0e22341 100644
--- a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2021-01-06 Thread Fabian Groffen
commit: c42e568b5698cb4ed11c6fd4c1b987ed3da81d7a
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Jan  6 22:33:57 2021 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Jan  6 22:33:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c42e568b

dev-tex/dot2tex: drop x86-macos

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Fabian Groffen  gentoo.org>

 dev-tex/dot2tex/dot2tex-2.11.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild 
b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
index a37927ba5dc..36a51009f1c 100644
--- a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2020-12-03 Thread Sam James
commit: dfeb19b7c903119fba7cc3067915fee29adbd27e
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec  3 11:06:52 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec  3 11:06:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfeb19b7

dev-tex/dot2tex: mark ALLARCHES

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 dev-tex/dot2tex/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-tex/dot2tex/metadata.xml b/dev-tex/dot2tex/metadata.xml
index 00f39352db8..73de593c985 100644
--- a/dev-tex/dot2tex/metadata.xml
+++ b/dev-tex/dot2tex/metadata.xml
@@ -5,6 +5,7 @@
t...@gentoo.org
Gentoo TeX Project

+   

dot2tex
kjellmf/dot2tex



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2020-12-02 Thread Sam James
commit: f6fc7cb90cd31270a62d796274f4908eb0002874
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec  3 07:58:41 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec  3 07:59:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6fc7cb9

dev-tex/dot2tex: add Python 3.8, 3.9

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 dev-tex/dot2tex/dot2tex-2.11.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild 
b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
index cada554f8a6..d5d240c5d09 100644
--- a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7})
+PYTHON_COMPAT=( python3_{6,7,8,9})
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2020-01-19 Thread Mikle Kolyada
commit: 85c05f9f63252af46946bfd3924692e9f665c8c2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Jan 19 17:10:39 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Jan 19 17:10:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85c05f9f

dev-tex/dot2tex: drop old

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Mikle Kolyada  gentoo.org>

 dev-tex/dot2tex/Manifest |  1 -
 dev-tex/dot2tex/dot2tex-2.9.0.ebuild | 43 
 2 files changed, 44 deletions(-)

diff --git a/dev-tex/dot2tex/Manifest b/dev-tex/dot2tex/Manifest
index 132a09b856f..3e2b883d10e 100644
--- a/dev-tex/dot2tex/Manifest
+++ b/dev-tex/dot2tex/Manifest
@@ -1,2 +1 @@
 DIST dot2tex-2.11.3.tar.gz 664750 BLAKE2B 
9c7effeca0d71810ce37e126df9e7df2b9df19be41393916c85e49df0dc116f42e58a2b29cce9e2bac700fa00859c63c1a4a8c41c70a9db96a5fc210960f463b
 SHA512 
1595299811461b18cff490a8a56c0215f46989dd4a46fa087b455c717ed5d5f7a5782d04acaa3e4567b4e348bca866d5f24d21663012c4cd813445804ef6f714
-DIST dot2tex-2.9.0.tar.gz 663372 BLAKE2B 
807093c5bd7304a6c315568e69c8c8387a377a8aa47790d558feb84036ca6ce2d00534823254a50af9852206d0e27b2e15f2a8ba0e8333e2bb8b20a983947e74
 SHA512 
97ba9983643254d5a3034d2fc8c454c445849ac546bd285676b854e20c8aae9a25d61e73632717da1562541ce9b3a4ae8aa4daa29e33f78105e28a34b5ebae5d

diff --git a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild 
b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
deleted file mode 100644
index 6bc236af1bb..000
--- a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="A Graphviz to LaTeX converter"
-HOMEPAGE="https://dot2tex.readthedocs.org/ https://github.com/kjellmf/dot2tex;
-SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
-IUSE="doc examples"
-
-DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"
-RDEPEND="
-   dev-python/pydot[${PYTHON_USEDEP}]
-   media-gfx/graphviz"
-DEPEND="${DEPEND}
-   doc? ( dev-python/sphinx )"
-
-python_compile_all() {
-   if use doc ; then
-   cd "${S}/docs"
-   emake html
-   fi
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   if use doc; then
-   dohtml -r docs/_build/html/*
-   fi
-   if use examples; then
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2020-01-19 Thread Mikle Kolyada
commit: 5a75072feab2a037b2b39baacd3d951d5fc3c9bc
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Jan 19 17:13:12 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Jan 19 17:13:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a75072f

dev-tex/dot2tex: mark stable

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Mikle Kolyada  gentoo.org>

 dev-tex/dot2tex/dot2tex-2.11.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild 
b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
index 2126237077f..fc59139d298 100644
--- a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7})
+PYTHON_COMPAT=( python3_{6,7})
 
 inherit distutils-r1
 
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2019-12-05 Thread Bernard Cafarelli
commit: 8c484e328c2f74cc94eb1623ea112813013013ab
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Dec  5 23:50:36 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Dec  5 23:50:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c484e32

dev-tex/dot2tex: 2.11.3 bump

Ebuild update and add python 3 support

Closes: https://bugs.gentoo.org/699956
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Bernard Cafarelli  gentoo.org>

 dev-tex/dot2tex/Manifest  |  1 +
 dev-tex/dot2tex/dot2tex-2.11.3.ebuild | 43 +++
 2 files changed, 44 insertions(+)

diff --git a/dev-tex/dot2tex/Manifest b/dev-tex/dot2tex/Manifest
index 017a9d34e24..132a09b856f 100644
--- a/dev-tex/dot2tex/Manifest
+++ b/dev-tex/dot2tex/Manifest
@@ -1 +1,2 @@
+DIST dot2tex-2.11.3.tar.gz 664750 BLAKE2B 
9c7effeca0d71810ce37e126df9e7df2b9df19be41393916c85e49df0dc116f42e58a2b29cce9e2bac700fa00859c63c1a4a8c41c70a9db96a5fc210960f463b
 SHA512 
1595299811461b18cff490a8a56c0215f46989dd4a46fa087b455c717ed5d5f7a5782d04acaa3e4567b4e348bca866d5f24d21663012c4cd813445804ef6f714
 DIST dot2tex-2.9.0.tar.gz 663372 BLAKE2B 
807093c5bd7304a6c315568e69c8c8387a377a8aa47790d558feb84036ca6ce2d00534823254a50af9852206d0e27b2e15f2a8ba0e8333e2bb8b20a983947e74
 SHA512 
97ba9983643254d5a3034d2fc8c454c445849ac546bd285676b854e20c8aae9a25d61e73632717da1562541ce9b3a4ae8aa4daa29e33f78105e28a34b5ebae5d

diff --git a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild 
b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
new file mode 100644
index 000..2ea47959d68
--- /dev/null
+++ b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7})
+
+inherit distutils-r1
+
+DESCRIPTION="A Graphviz to LaTeX converter"
+HOMEPAGE="https://dot2tex.readthedocs.org/ https://github.com/kjellmf/dot2tex;
+SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+IUSE="doc examples"
+
+DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"
+RDEPEND="
+   dev-python/pydot[${PYTHON_USEDEP}]
+   media-gfx/graphviz"
+DEPEND="${DEPEND}
+   doc? ( dev-python/sphinx )"
+
+python_compile_all() {
+   if use doc ; then
+   cd "${S}/docs"
+   emake html
+   fi
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   if use doc; then
+   dodoc -r docs/_build/html
+   fi
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2018-12-30 Thread Mikle Kolyada
commit: fa9f431d98d9f390705a72a6bb0a01954e92def3
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Dec 30 17:50:53 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Dec 30 17:50:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa9f431d

dev-tex/dot2tex: mark s390 stable

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-tex/dot2tex/dot2tex-2.9.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild 
b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
index 3baa221b33b..91218b94147 100644
--- a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2017-06-17 Thread Alexis Ballier
commit: 1230a62d4d3eff9bb68249def68e02c32f1e4677
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jun 17 14:40:12 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Jun 17 14:41:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1230a62d

dev-tex/dot2tex: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-tex/dot2tex/dot2tex-2.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild 
b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
index 9b0cbf97f86..c7854bfe91b 100644
--- a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2017-02-17 Thread Michał Górny
commit: 0d0ca13a09dc027e5de4ab4a2aa3afd75d3cffd0
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 14:03:22 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 14:47:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d0ca13a

dev-tex/dot2tex: Clean up old version

 dev-tex/dot2tex/Manifest |  1 -
 dev-tex/dot2tex/dot2tex-2.8.7.ebuild | 38 
 2 files changed, 39 deletions(-)

diff --git a/dev-tex/dot2tex/Manifest b/dev-tex/dot2tex/Manifest
index 5b7966dd2b..b51ab0f467 100644
--- a/dev-tex/dot2tex/Manifest
+++ b/dev-tex/dot2tex/Manifest
@@ -1,2 +1 @@
-DIST dot2tex-2.8.7.tar.gz 571055 SHA256 
899168d976faff8768115648a1371bcb92c81e14cf371cafec056eff398d56d7 SHA512 
a74bf94e295571f066b836848a583c35c15a16117cb86dd849c6ba1ec1f9ebf815cdd3b5641f90740d0fc108819794d1960a240ad6838a189faac3889d0b7527
 WHIRLPOOL 
c71d1d1140b67669940e8a565435a7d8deea8ce70a5b33cee97b4d1dcb27b005fcb245494bf7189e49c2f8824ee6b0154cb4aebf4799ea04c76cbbefc02113b9
 DIST dot2tex-2.9.0.tar.gz 663372 SHA256 
7a182868f72fd5e59899f85006c3b559ac4157ade003f3e208341a9a5b46d2fa SHA512 
97ba9983643254d5a3034d2fc8c454c445849ac546bd285676b854e20c8aae9a25d61e73632717da1562541ce9b3a4ae8aa4daa29e33f78105e28a34b5ebae5d
 WHIRLPOOL 
22e8be55034cfda62091d1de7de34a07ccba9d695d41b18a9edf688d16c2219b24cba842344f1c3f7dd86b3a8293b8c94ccacba93097c46d7ab5d0407b03f88b

diff --git a/dev-tex/dot2tex/dot2tex-2.8.7.ebuild 
b/dev-tex/dot2tex/dot2tex-2.8.7.ebuild
deleted file mode 100644
index 51c858608f..00
--- a/dev-tex/dot2tex/dot2tex-2.8.7.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-inherit distutils
-
-DESCRIPTION="A Graphviz to LaTeX converter"
-HOMEPAGE="http://www.fauskes.net/code/dot2tex/;
-SRC_URI="https://dot2tex.googlecode.com/files/${P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
-IUSE="doc examples"
-
-DEPEND=""
-RDEPEND="dev-python/pyparsing
-   media-gfx/pydot
-   media-gfx/graphviz"
-
-DOCS="changelog.txt"
-
-src_install() {
-   distutils_src_install
-   if use doc; then
-   dohtml -r doc/*
-   dodoc doc/usage.{txt,pdf}
-   fi
-   if use examples; then
-   insinto "/usr/share/doc/${PF}/examples"
-   doins examples/*
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2017-01-31 Thread Jeroen Roovers
commit: 36d3bb7bdcfef90fdcf6cd22b296f2211e784abd
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jan 31 15:56:58 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jan 31 16:00:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36d3bb7b

dev-tex/dot2tex: Stable for HPPA (bug #593146).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-tex/dot2tex/dot2tex-2.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild 
b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
index 874731b..fda2399 100644
--- a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2017-01-17 Thread Agostino Sarubbo
commit: a23357dfb23f4e0871e49f16420f9f80bd70b97f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jan 17 14:20:55 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jan 17 14:24:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a23357df

dev-tex/dot2tex: ia64 stable wrt bug #593146

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-tex/dot2tex/dot2tex-2.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild 
b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
index d311127..874731b 100644
--- a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2017-01-15 Thread Pacho Ramos
commit: 12a8cd248fe48d01f7602a3405e7e259e661df85
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jan 15 10:21:49 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 15 10:32:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12a8cd24

dev-tex/dot2tex: Drop old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-tex/dot2tex/dot2tex-2.8.7-r1.ebuild | 36 -
 1 file changed, 36 deletions(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.8.7-r1.ebuild 
b/dev-tex/dot2tex/dot2tex-2.8.7-r1.ebuild
deleted file mode 100644
index c1624d4..
--- a/dev-tex/dot2tex/dot2tex-2.8.7-r1.ebuild
+++ /dev/null
@@ -1,36 +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 )
-
-inherit distutils-r1
-
-DESCRIPTION="A Graphviz to LaTeX converter"
-HOMEPAGE="http://www.fauskes.net/code/dot2tex/;
-SRC_URI="https://dot2tex.googlecode.com/files/${P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
-IUSE="doc examples"
-
-DEPEND=""
-RDEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]
-   media-gfx/pydot[${PYTHON_USEDEP}]
-   media-gfx/graphviz"
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   if use doc; then
-   dohtml -r doc/*
-   dodoc doc/usage.{txt,pdf}
-   fi
-   if use examples; then
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2017-01-11 Thread Agostino Sarubbo
commit: 37e5f5fe92aa202e534c6210c55cfa90e534d1a8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 11 10:34:30 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 11 10:34:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37e5f5fe

dev-tex/dot2tex: sparc stable wrt bug #593146

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-tex/dot2tex/dot2tex-2.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild 
b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
index 33d24bc..d311127 100644
--- a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2017-01-01 Thread Agostino Sarubbo
commit: 053a68bbf52ea3a234876f67780ccf91bb8086da
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Jan  1 12:41:52 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Jan  1 12:41:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=053a68bb

dev-tex/dot2tex: ppc stable wrt bug #593146

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-tex/dot2tex/dot2tex-2.9.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild 
b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
index 82cc052..b6c1397 100644
--- a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2016-10-01 Thread Pacho Ramos
commit: f1c2a47c686a1626a9f947ff6de72b3b36212837
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Oct  1 08:35:56 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Oct  1 08:35:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1c2a47c

dev-tex/dot2tex: x86 stable, bug #593146

Package-Manager: portage-2.3.0

 dev-tex/dot2tex/dot2tex-2.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild 
b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
index 345f75d..82cc052 100644
--- a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2016-10-01 Thread Markus Meier
commit: 4324fc8e2fec6382e770dc7a0663b6f56379c8b6
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Oct  1 08:00:41 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Oct  1 08:00:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4324fc8e

dev-tex/dot2tex: arm stable, bug #593146

Package-Manager: portage-2.3.1
RepoMan-Options: --include-arches="arm"

 dev-tex/dot2tex/dot2tex-2.9.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild 
b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
index 78fda19..345f75d 100644
--- a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.9.0.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$
 
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2016-09-26 Thread Agostino Sarubbo
commit: b7cd0bf06c52fc7f58ccf814713a72276643302c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Sep 26 12:33:47 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Sep 26 12:35:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7cd0bf0

dev-tex/dot2tex: amd64 stable wrt bug #593146

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-tex/dot2tex/dot2tex-2.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild 
b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
index aa5cce5..78fda19 100644
--- a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2016-09-21 Thread Tobias Klausmann
commit: 86e61fd99d025c5d590f7cfc0468384c166962aa
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Sep 21 17:48:13 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Sep 21 17:48:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86e61fd9

dev-tex/dot2tex-2.9.0-r0: add alpha keyword

Gentoo-Bug: 593146

 dev-tex/dot2tex/dot2tex-2.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild 
b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
index f35ba7f..aa5cce5 100644
--- a/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
+++ b/dev-tex/dot2tex/dot2tex-2.9.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="doc examples"
 
 DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"