public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2017-09-28 11:12 Andrey Grozin
  0 siblings, 0 replies; 17+ messages in thread
From: Andrey Grozin @ 2017-09-28 11:12 UTC (permalink / raw
  To: gentoo-commits

commit:     4da89647dbe7849a6f1f3101341b58782ce57883
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 28 11:12:24 2017 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Thu Sep 28 11:12:24 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4da89647

dev-tex/pythontex: initial import from science overlay

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-tex/pythontex/Manifest              |  1 +
 dev-tex/pythontex/metadata.xml          | 14 +++++++++
 dev-tex/pythontex/pythontex-0.16.ebuild | 55 +++++++++++++++++++++++++++++++++
 3 files changed, 70 insertions(+)

diff --git a/dev-tex/pythontex/Manifest b/dev-tex/pythontex/Manifest
new file mode 100644
index 00000000000..38f63312ba3
--- /dev/null
+++ b/dev-tex/pythontex/Manifest
@@ -0,0 +1 @@
+DIST pythontex-0.16.tar.gz 1787147 SHA256 b33cf0189319752ffd14bb5735d0f3570e68545da834793c6fa2c81e164b6f5e SHA512 9a84fd7b7f568308addf9ba01c46fadfaface54b9d484c766831f1048064288fd1ecb5c56774bb0041d8f5705f8d5f8a9cd7258dc33157467eca7b3c70259183 WHIRLPOOL 7c8bd31208e9c4dcb640cc79d1a1885233c544485fcd4bf65772f7d7bc4efa0a5a6c60d15bae9e7d9e27f833b1ef2b06ea313a7008c3f000ec9b017a63ad0fbd

diff --git a/dev-tex/pythontex/metadata.xml b/dev-tex/pythontex/metadata.xml
new file mode 100644
index 00000000000..9586dee6f5e
--- /dev/null
+++ b/dev-tex/pythontex/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="project">
+    <email>sci@gentoo.org</email>
+    <name>Gentoo Science Project</name>
+  </maintainer>
+  <use>
+    <flag name="highlighting">Syntax highlighting using <pkg>dev-python/pygments</pkg></flag>
+  </use>
+  <upstream>
+    <remote-id type="github">gpoore/pythontex</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-tex/pythontex/pythontex-0.16.ebuild b/dev-tex/pythontex/pythontex-0.16.ebuild
new file mode 100644
index 00000000000..4e2cabb8f62
--- /dev/null
+++ b/dev-tex/pythontex/pythontex-0.16.ebuild
@@ -0,0 +1,55 @@
+# 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,6} )
+
+inherit latex-package python-r1
+
+DESCRIPTION="Fast Access to Python from within LaTeX"
+HOMEPAGE="https://github.com/gpoore/pythontex"
+SRC_URI="https://github.com/gpoore/pythontex/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="LPPL-1.3 BSD"
+KEYWORDS="~amd64 ~x86"
+IUSE="highlighting"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+	>=dev-texlive/texlive-latex-2016"
+RDEPEND="${DEPEND}
+	>=dev-texlive/texlive-latex-2016
+	highlighting? ( dev-python/pygments[${PYTHON_USEDEP}] )"
+
+TEXMF=/usr/share/texmf-site
+
+src_compile() {
+	cd ${PN} || die
+	ebegin "Compiling ${PN}"
+	rm ${PN}.sty || die
+	VARTEXFONTS="${T}/fonts" latex ${PN}.ins extra || die
+	eend
+}
+
+src_install() {
+	dodoc ${PN}/README "${S}"/*rst ${PN}_quickstart/*
+
+	cd ${PN} || die
+
+	installation() {
+		if python_is_python3; then
+			python_domodule {de,}${PN}3.py
+		else
+			python_domodule {de,}${PN}2.py
+		fi
+		python_domodule ${PN}_{engines,utils}.py
+		python_doscript {de,}${PN}.py syncpdb.py
+		python_optimize
+	}
+	python_foreach_impl installation
+
+	latex-package_src_doinstall dtx ins sty
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2017-10-31 10:09 Andrey Grozin
  0 siblings, 0 replies; 17+ messages in thread
From: Andrey Grozin @ 2017-10-31 10:09 UTC (permalink / raw
  To: gentoo-commits

commit:     959ae26c53cb399ab135afd306bfcb7165b01368
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 31 10:09:11 2017 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Tue Oct 31 10:09:11 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=959ae26c

dev-tex/pythontex: dependencies fixed

Closes: https://bugs.gentoo.org/635594
Package-Manager: Portage-2.3.11, Repoman-2.3.3

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

diff --git a/dev-tex/pythontex/pythontex-0.16.ebuild b/dev-tex/pythontex/pythontex-0.16.ebuild
index 4e2cabb8f62..7e0fa1b7552 100644
--- a/dev-tex/pythontex/pythontex-0.16.ebuild
+++ b/dev-tex/pythontex/pythontex-0.16.ebuild
@@ -19,9 +19,9 @@ IUSE="highlighting"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 DEPEND="${PYTHON_DEPS}
-	>=dev-texlive/texlive-latex-2016"
+	>=dev-texlive/texlive-latexextra-2016
+	dev-tex/pgf"
 RDEPEND="${DEPEND}
-	>=dev-texlive/texlive-latex-2016
 	highlighting? ( dev-python/pygments[${PYTHON_USEDEP}] )"
 
 TEXMF=/usr/share/texmf-site


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2019-08-06  9:46 Andrey Grozin
  0 siblings, 0 replies; 17+ messages in thread
From: Andrey Grozin @ 2019-08-06  9:46 UTC (permalink / raw
  To: gentoo-commits

commit:     58d160337c973b698f74c671bd7e36e672596066
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  6 09:44:45 2019 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Tue Aug  6 09:45:45 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58d16033

dev-tex/pythontex: RDEPEND on dev-python/pygments always

Closes: https://bugs.gentoo.org/show_bug.cgi?id=691386
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>

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

diff --git a/dev-tex/pythontex/pythontex-0.16.ebuild b/dev-tex/pythontex/pythontex-0.16.ebuild
index 91e46e98f50..60a36dee8a0 100644
--- a/dev-tex/pythontex/pythontex-0.16.ebuild
+++ b/dev-tex/pythontex/pythontex-0.16.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
 
 inherit latex-package python-r1
 
@@ -22,7 +22,7 @@ DEPEND="${PYTHON_DEPS}
 	>=dev-texlive/texlive-latexextra-2016
 	dev-tex/pgf"
 RDEPEND="${DEPEND}
-	highlighting? ( dev-python/pygments[${PYTHON_USEDEP}] )"
+	dev-python/pygments[${PYTHON_USEDEP}]"
 
 TEXMF=/usr/share/texmf-site
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2020-01-19 14:25 Mikle Kolyada
  0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2020-01-19 14:25 UTC (permalink / raw
  To: gentoo-commits

commit:     5399484cc912bccd2810a149f1fbdfb73c7caaf6
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 19 14:25:05 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Jan 19 14:25:05 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5399484c

dev-tex/pythontex: port to EAPI=7

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

 dev-tex/pythontex/pythontex-0.16.ebuild | 12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/dev-tex/pythontex/pythontex-0.16.ebuild b/dev-tex/pythontex/pythontex-0.16.ebuild
index af900b7b225..267d1e51096 100644
--- a/dev-tex/pythontex/pythontex-0.16.ebuild
+++ b/dev-tex/pythontex/pythontex-0.16.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit latex-package python-r1
 
@@ -28,10 +28,8 @@ TEXMF=/usr/share/texmf-site
 
 src_compile() {
 	cd ${PN} || die
-	ebegin "Compiling ${PN}"
 	rm ${PN}.sty || die
 	VARTEXFONTS="${T}/fonts" latex ${PN}.ins extra || die
-	eend
 }
 
 src_install() {
@@ -40,11 +38,7 @@ src_install() {
 	cd ${PN} || die
 
 	installation() {
-		if python_is_python3; then
-			python_domodule {de,}${PN}3.py
-		else
-			python_domodule {de,}${PN}2.py
-		fi
+		python_domodule {de,}${PN}3.py
 		python_domodule ${PN}_{engines,utils}.py
 		python_doscript {de,}${PN}.py syncpdb.py
 		python_optimize


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2020-02-19 13:50 Andrey Grozin
  0 siblings, 0 replies; 17+ messages in thread
From: Andrey Grozin @ 2020-02-19 13:50 UTC (permalink / raw
  To: gentoo-commits

commit:     765f83ef451a27b168bea63b0c6a1ad57def6668
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 19 13:49:54 2020 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Wed Feb 19 13:49:54 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=765f83ef

dev-tex/pythontex: bump to 0.17

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>

 dev-tex/pythontex/Manifest              |  1 +
 dev-tex/pythontex/pythontex-0.17.ebuild | 49 +++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/dev-tex/pythontex/Manifest b/dev-tex/pythontex/Manifest
index 8a3280e789d..42092217ab3 100644
--- a/dev-tex/pythontex/Manifest
+++ b/dev-tex/pythontex/Manifest
@@ -1 +1,2 @@
 DIST pythontex-0.16.tar.gz 1787147 BLAKE2B b7b765fdf681f6a757d5dc14437ae433f8310d18ad9e2efe95a8853eaf9f53e2925d7f9e45e0393eb2720019270187fb400e7a6754f18015c4ce5db8a9280729 SHA512 9a84fd7b7f568308addf9ba01c46fadfaface54b9d484c766831f1048064288fd1ecb5c56774bb0041d8f5705f8d5f8a9cd7258dc33157467eca7b3c70259183
+DIST pythontex-0.17.tar.gz 1800631 BLAKE2B 5c4ab31ccd890ca708142e83d047a46d704d2eaead611521a9f272f7a63cfb4016b991741c0338b1874d8cd2949c83b9c5ab59c3004e26540c171666a4f05e63 SHA512 ac248579f8645c225839ca9698b6193d2a7d8360a50e9a8406fae5616f54418a173635d1c2e8c47b18e85cdd1fa1e81c9435169c44f06fb19505c280f9bbaee5

diff --git a/dev-tex/pythontex/pythontex-0.17.ebuild b/dev-tex/pythontex/pythontex-0.17.ebuild
new file mode 100644
index 00000000000..267d1e51096
--- /dev/null
+++ b/dev-tex/pythontex/pythontex-0.17.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit latex-package python-r1
+
+DESCRIPTION="Fast Access to Python from within LaTeX"
+HOMEPAGE="https://github.com/gpoore/pythontex"
+SRC_URI="https://github.com/gpoore/pythontex/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="LPPL-1.3 BSD"
+KEYWORDS="~amd64 ~x86"
+IUSE="highlighting"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+	>=dev-texlive/texlive-latexextra-2016
+	dev-tex/pgf"
+RDEPEND="${DEPEND}
+	dev-python/pygments[${PYTHON_USEDEP}]"
+
+TEXMF=/usr/share/texmf-site
+
+src_compile() {
+	cd ${PN} || die
+	rm ${PN}.sty || die
+	VARTEXFONTS="${T}/fonts" latex ${PN}.ins extra || die
+}
+
+src_install() {
+	dodoc ${PN}/README "${S}"/*rst ${PN}_quickstart/*
+
+	cd ${PN} || die
+
+	installation() {
+		python_domodule {de,}${PN}3.py
+		python_domodule ${PN}_{engines,utils}.py
+		python_doscript {de,}${PN}.py syncpdb.py
+		python_optimize
+	}
+	python_foreach_impl installation
+
+	latex-package_src_doinstall dtx ins sty
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2020-02-22  8:20 Andrey Grozin
  0 siblings, 0 replies; 17+ messages in thread
From: Andrey Grozin @ 2020-02-22  8:20 UTC (permalink / raw
  To: gentoo-commits

commit:     bdfafe0e4cbb664b050ba7c2ff9ba2baa3aa3a08
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 22 08:19:29 2020 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Sat Feb 22 08:19:29 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdfafe0e

dev-tex/pythontex: installation fixed

Closes: https://bugs.gentoo.org/show_bug.cgi?id=709882
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>

 dev-tex/pythontex/pythontex-0.17.ebuild | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/dev-tex/pythontex/pythontex-0.17.ebuild b/dev-tex/pythontex/pythontex-0.17.ebuild
index 267d1e51096..31f77063256 100644
--- a/dev-tex/pythontex/pythontex-0.17.ebuild
+++ b/dev-tex/pythontex/pythontex-0.17.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/gpoore/pythontex/archive/v${PV}.tar.gz -> ${P}.tar.g
 SLOT="0"
 LICENSE="LPPL-1.3 BSD"
 KEYWORDS="~amd64 ~x86"
-IUSE="highlighting"
+IUSE="doc highlighting"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
@@ -33,7 +33,8 @@ src_compile() {
 }
 
 src_install() {
-	dodoc ${PN}/README "${S}"/*rst ${PN}_quickstart/*
+	dodoc *rst
+	use doc && dodoc ${PN}_quickstart/*pdf ${PN}/*pdf
 
 	cd ${PN} || die
 
@@ -45,5 +46,5 @@ src_install() {
 	}
 	python_foreach_impl installation
 
-	latex-package_src_doinstall dtx ins sty
+	latex-package_src_doinstall sty
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2020-02-22  8:21 Andrey Grozin
  0 siblings, 0 replies; 17+ messages in thread
From: Andrey Grozin @ 2020-02-22  8:21 UTC (permalink / raw
  To: gentoo-commits

commit:     f11858e127f77edd57b0913159a9f9934ca64154
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 22 08:21:32 2020 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Sat Feb 22 08:21:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f11858e1

dev-tex/pythontex: clean old

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>

 dev-tex/pythontex/Manifest              |  1 -
 dev-tex/pythontex/pythontex-0.16.ebuild | 49 ---------------------------------
 2 files changed, 50 deletions(-)

diff --git a/dev-tex/pythontex/Manifest b/dev-tex/pythontex/Manifest
index 42092217ab3..df4fd95cc1c 100644
--- a/dev-tex/pythontex/Manifest
+++ b/dev-tex/pythontex/Manifest
@@ -1,2 +1 @@
-DIST pythontex-0.16.tar.gz 1787147 BLAKE2B b7b765fdf681f6a757d5dc14437ae433f8310d18ad9e2efe95a8853eaf9f53e2925d7f9e45e0393eb2720019270187fb400e7a6754f18015c4ce5db8a9280729 SHA512 9a84fd7b7f568308addf9ba01c46fadfaface54b9d484c766831f1048064288fd1ecb5c56774bb0041d8f5705f8d5f8a9cd7258dc33157467eca7b3c70259183
 DIST pythontex-0.17.tar.gz 1800631 BLAKE2B 5c4ab31ccd890ca708142e83d047a46d704d2eaead611521a9f272f7a63cfb4016b991741c0338b1874d8cd2949c83b9c5ab59c3004e26540c171666a4f05e63 SHA512 ac248579f8645c225839ca9698b6193d2a7d8360a50e9a8406fae5616f54418a173635d1c2e8c47b18e85cdd1fa1e81c9435169c44f06fb19505c280f9bbaee5

diff --git a/dev-tex/pythontex/pythontex-0.16.ebuild b/dev-tex/pythontex/pythontex-0.16.ebuild
deleted file mode 100644
index 267d1e51096..00000000000
--- a/dev-tex/pythontex/pythontex-0.16.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit latex-package python-r1
-
-DESCRIPTION="Fast Access to Python from within LaTeX"
-HOMEPAGE="https://github.com/gpoore/pythontex"
-SRC_URI="https://github.com/gpoore/pythontex/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="LPPL-1.3 BSD"
-KEYWORDS="~amd64 ~x86"
-IUSE="highlighting"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
-	>=dev-texlive/texlive-latexextra-2016
-	dev-tex/pgf"
-RDEPEND="${DEPEND}
-	dev-python/pygments[${PYTHON_USEDEP}]"
-
-TEXMF=/usr/share/texmf-site
-
-src_compile() {
-	cd ${PN} || die
-	rm ${PN}.sty || die
-	VARTEXFONTS="${T}/fonts" latex ${PN}.ins extra || die
-}
-
-src_install() {
-	dodoc ${PN}/README "${S}"/*rst ${PN}_quickstart/*
-
-	cd ${PN} || die
-
-	installation() {
-		python_domodule {de,}${PN}3.py
-		python_domodule ${PN}_{engines,utils}.py
-		python_doscript {de,}${PN}.py syncpdb.py
-		python_optimize
-	}
-	python_foreach_impl installation
-
-	latex-package_src_doinstall dtx ins sty
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2020-12-03  9:00 Sam James
  0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2020-12-03  9:00 UTC (permalink / raw
  To: gentoo-commits

commit:     57700b12bcca300d3a8426753c48a4a906c59fd8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  3 09:00:43 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec  3 09:00:43 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57700b12

dev-tex/pythontex: Add Python 3.8, 3.9

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

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

diff --git a/dev-tex/pythontex/pythontex-0.17.ebuild b/dev-tex/pythontex/pythontex-0.17.ebuild
index 31f77063256..e7c5d6d327a 100644
--- a/dev-tex/pythontex/pythontex-0.17.ebuild
+++ b/dev-tex/pythontex/pythontex-0.17.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 
 inherit latex-package python-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2020-12-03 11:28 Sam James
  0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2020-12-03 11:28 UTC (permalink / raw
  To: gentoo-commits

commit:     69adffa61839e44842ded510a4c42591b3c7f52c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  3 11:28:01 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec  3 11:28:01 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69adffa6

dev-tex/pythontex: mark ALLARCHES

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

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

diff --git a/dev-tex/pythontex/metadata.xml b/dev-tex/pythontex/metadata.xml
index 9586dee6f5e..05e2a866bdd 100644
--- a/dev-tex/pythontex/metadata.xml
+++ b/dev-tex/pythontex/metadata.xml
@@ -5,6 +5,7 @@
     <email>sci@gentoo.org</email>
     <name>Gentoo Science Project</name>
   </maintainer>
+  <stabilize-allarches/>
   <use>
     <flag name="highlighting">Syntax highlighting using <pkg>dev-python/pygments</pkg></flag>
   </use>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2021-02-21  9:49 Sam James
  0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-02-21  9:49 UTC (permalink / raw
  To: gentoo-commits

commit:     c51abe263625e48e92696d4904db176ee69ca5aa
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 21 09:49:49 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 21 09:49:49 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c51abe26

dev-tex/pythontex: Keyword 0.17 ppc, #766150

Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-tex/pythontex/pythontex-0.17.ebuild b/dev-tex/pythontex/pythontex-0.17.ebuild
index 0e17b5b2ecf..1b2b486b900 100644
--- a/dev-tex/pythontex/pythontex-0.17.ebuild
+++ b/dev-tex/pythontex/pythontex-0.17.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/gpoore/pythontex/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 SLOT="0"
 LICENSE="LPPL-1.3 BSD"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~x86"
 IUSE="doc highlighting"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2021-10-26  1:21 Yixun Lan
  0 siblings, 0 replies; 17+ messages in thread
From: Yixun Lan @ 2021-10-26  1:21 UTC (permalink / raw
  To: gentoo-commits

commit:     81a7c64a1c36c4d18d262d9d9e4ce07b4428546e
Author:     Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Sat Oct 23 17:55:42 2021 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Tue Oct 26 01:16:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81a7c64a

dev-tex/pythontex: keyword ~riscv

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

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

diff --git a/dev-tex/pythontex/pythontex-0.17.ebuild b/dev-tex/pythontex/pythontex-0.17.ebuild
index 1b2b486b900..63421dc6fda 100644
--- a/dev-tex/pythontex/pythontex-0.17.ebuild
+++ b/dev-tex/pythontex/pythontex-0.17.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/gpoore/pythontex/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 SLOT="0"
 LICENSE="LPPL-1.3 BSD"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc ~riscv ~x86"
 IUSE="doc highlighting"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2021-12-28 14:15 Andrew Ammerlaan
  0 siblings, 0 replies; 17+ messages in thread
From: Andrew Ammerlaan @ 2021-12-28 14:15 UTC (permalink / raw
  To: gentoo-commits

commit:     5eb5444c6c01cf8bbdeb74daa298e7bcb66a5859
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 28 13:46:30 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue Dec 28 14:15:00 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eb5444c

dev-tex/pythontex: add version 0.18, enable py3.10

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 dev-tex/pythontex/Manifest              |  1 +
 dev-tex/pythontex/pythontex-0.18.ebuild | 52 +++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-tex/pythontex/Manifest b/dev-tex/pythontex/Manifest
index df4fd95cc1ce..16f191082be1 100644
--- a/dev-tex/pythontex/Manifest
+++ b/dev-tex/pythontex/Manifest
@@ -1 +1,2 @@
 DIST pythontex-0.17.tar.gz 1800631 BLAKE2B 5c4ab31ccd890ca708142e83d047a46d704d2eaead611521a9f272f7a63cfb4016b991741c0338b1874d8cd2949c83b9c5ab59c3004e26540c171666a4f05e63 SHA512 ac248579f8645c225839ca9698b6193d2a7d8360a50e9a8406fae5616f54418a173635d1c2e8c47b18e85cdd1fa1e81c9435169c44f06fb19505c280f9bbaee5
+DIST pythontex-0.18.tar.gz 1807531 BLAKE2B 0f3293043780e93290fb9b3988513f919983a1a19c18344c6d5b1223dea40310581c0b5938da695485516648db3b23dbbef3eb40091f2ccd8f5a7576179043a7 SHA512 ad7dcb91d7df3eb37cdfaab870001f70976a55ca300c029ae931ade53103cbd71f7c3a4fa5d1360fdd1d9fc092f39c0427f13d2328033197057dcbc490d4ca7b

diff --git a/dev-tex/pythontex/pythontex-0.18.ebuild b/dev-tex/pythontex/pythontex-0.18.ebuild
new file mode 100644
index 000000000000..9c876cfd094a
--- /dev/null
+++ b/dev-tex/pythontex/pythontex-0.18.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit latex-package python-r1
+
+DESCRIPTION="Fast Access to Python from within LaTeX"
+HOMEPAGE="https://github.com/gpoore/pythontex"
+SRC_URI="https://github.com/gpoore/pythontex/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="LPPL-1.3 BSD"
+KEYWORDS="~amd64 ~ppc ~riscv ~x86"
+IUSE="doc highlighting"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+	>=dev-texlive/texlive-latexextra-2016
+	dev-tex/pgf
+"
+RDEPEND="${DEPEND}
+	dev-python/pygments[${PYTHON_USEDEP}]
+"
+
+TEXMF=/usr/share/texmf-site
+
+src_compile() {
+	cd ${PN} || die
+	rm ${PN}.sty || die
+	VARTEXFONTS="${T}/fonts" latex ${PN}.ins extra || die
+}
+
+src_install() {
+	dodoc *rst
+	use doc && dodoc ${PN}_quickstart/*pdf ${PN}/*pdf
+
+	cd ${PN} || die
+
+	installation() {
+		python_domodule {de,}${PN}3.py
+		python_domodule ${PN}_{engines,utils}.py
+		python_doscript {de,}${PN}.py syncpdb.py
+		python_optimize
+	}
+	python_foreach_impl installation
+
+	latex-package_src_doinstall sty
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2023-01-29 12:17 Andrew Ammerlaan
  0 siblings, 0 replies; 17+ messages in thread
From: Andrew Ammerlaan @ 2023-01-29 12:17 UTC (permalink / raw
  To: gentoo-commits

commit:     3b362ebdc0e307a3ab0f6975a8902acd1a294ea2
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 29 12:17:35 2023 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun Jan 29 12:17:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b362ebd

dev-tex/pythontex: enable py3.11

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

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

diff --git a/dev-tex/pythontex/pythontex-0.18.ebuild b/dev-tex/pythontex/pythontex-0.18.ebuild
index 41be613a3d14..4cf250f669f3 100644
--- a/dev-tex/pythontex/pythontex-0.18.ebuild
+++ b/dev-tex/pythontex/pythontex-0.18.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit latex-package python-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2023-03-31 18:05 Sam James
  0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-03-31 18:05 UTC (permalink / raw
  To: gentoo-commits

commit:     a07bc137a26f57502a2e2db80fb495ac721dc90d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 31 18:05:18 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 31 18:05:18 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a07bc137

dev-tex/pythontex: Stabilize 0.18 amd64, #807400

Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-tex/pythontex/pythontex-0.18.ebuild b/dev-tex/pythontex/pythontex-0.18.ebuild
index 4cf250f669f3..6aefac7be42f 100644
--- a/dev-tex/pythontex/pythontex-0.18.ebuild
+++ b/dev-tex/pythontex/pythontex-0.18.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/gpoore/pythontex/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 SLOT="0"
 LICENSE="LPPL-1.3 BSD"
-KEYWORDS="~amd64 ~ppc ~riscv ~x86"
+KEYWORDS="amd64 ~ppc ~riscv ~x86"
 IUSE="doc highlighting"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2023-05-01 12:39 Michał Górny
  0 siblings, 0 replies; 17+ messages in thread
From: Michał Górny @ 2023-05-01 12:39 UTC (permalink / raw
  To: gentoo-commits

commit:     c24ec12d7436a768894ae15c2286d195ee9222ef
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May  1 12:37:19 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May  1 12:39:06 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c24ec12d

dev-tex/pythontex: Remove old

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

 dev-tex/pythontex/Manifest              |  1 -
 dev-tex/pythontex/pythontex-0.17.ebuild | 50 ---------------------------------
 2 files changed, 51 deletions(-)

diff --git a/dev-tex/pythontex/Manifest b/dev-tex/pythontex/Manifest
index 16f191082be1..027ae858e5bb 100644
--- a/dev-tex/pythontex/Manifest
+++ b/dev-tex/pythontex/Manifest
@@ -1,2 +1 @@
-DIST pythontex-0.17.tar.gz 1800631 BLAKE2B 5c4ab31ccd890ca708142e83d047a46d704d2eaead611521a9f272f7a63cfb4016b991741c0338b1874d8cd2949c83b9c5ab59c3004e26540c171666a4f05e63 SHA512 ac248579f8645c225839ca9698b6193d2a7d8360a50e9a8406fae5616f54418a173635d1c2e8c47b18e85cdd1fa1e81c9435169c44f06fb19505c280f9bbaee5
 DIST pythontex-0.18.tar.gz 1807531 BLAKE2B 0f3293043780e93290fb9b3988513f919983a1a19c18344c6d5b1223dea40310581c0b5938da695485516648db3b23dbbef3eb40091f2ccd8f5a7576179043a7 SHA512 ad7dcb91d7df3eb37cdfaab870001f70976a55ca300c029ae931ade53103cbd71f7c3a4fa5d1360fdd1d9fc092f39c0427f13d2328033197057dcbc490d4ca7b

diff --git a/dev-tex/pythontex/pythontex-0.17.ebuild b/dev-tex/pythontex/pythontex-0.17.ebuild
deleted file mode 100644
index b593c06bb328..000000000000
--- a/dev-tex/pythontex/pythontex-0.17.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_9 )
-
-inherit latex-package python-r1
-
-DESCRIPTION="Fast Access to Python from within LaTeX"
-HOMEPAGE="https://github.com/gpoore/pythontex"
-SRC_URI="https://github.com/gpoore/pythontex/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="LPPL-1.3 BSD"
-KEYWORDS="~amd64 ~ppc ~riscv ~x86"
-IUSE="doc highlighting"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
-	>=dev-texlive/texlive-latexextra-2016
-	dev-tex/pgf"
-RDEPEND="${DEPEND}
-	dev-python/pygments[${PYTHON_USEDEP}]"
-
-TEXMF=/usr/share/texmf-site
-
-src_compile() {
-	cd ${PN} || die
-	rm ${PN}.sty || die
-	VARTEXFONTS="${T}/fonts" latex ${PN}.ins extra || die
-}
-
-src_install() {
-	dodoc *rst
-	use doc && dodoc ${PN}_quickstart/*pdf ${PN}/*pdf
-
-	cd ${PN} || die
-
-	installation() {
-		python_domodule {de,}${PN}3.py
-		python_domodule ${PN}_{engines,utils}.py
-		python_doscript {de,}${PN}.py syncpdb.py
-		python_optimize
-	}
-	python_foreach_impl installation
-
-	latex-package_src_doinstall sty
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2024-06-03 18:09 Florian Schmaus
  0 siblings, 0 replies; 17+ messages in thread
From: Florian Schmaus @ 2024-06-03 18:09 UTC (permalink / raw
  To: gentoo-commits

commit:     78051b762f940e3cb12aa1b48599f5759f53b52d
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Mon Jun  3 17:53:56 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Jun  3 18:08:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78051b76

dev-tex/pythontex: enable py3.12

Closes: https://bugs.gentoo.org/929526
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

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

diff --git a/dev-tex/pythontex/pythontex-0.18.ebuild b/dev-tex/pythontex/pythontex-0.18.ebuild
index 6aefac7be42f..66b83175b3fa 100644
--- a/dev-tex/pythontex/pythontex-0.18.ebuild
+++ b/dev-tex/pythontex/pythontex-0.18.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{9..12} )
 
 inherit latex-package python-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/
@ 2024-10-25 12:16 Arthur Zamarin
  0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-10-25 12:16 UTC (permalink / raw
  To: gentoo-commits

commit:     64e902963c0ead2e783fd3be7da69d569c8c58f5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 25 12:16:20 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 25 12:16:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64e90296

dev-tex/pythontex: Stabilize 0.18 x86, #936995

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-tex/pythontex/pythontex-0.18.ebuild b/dev-tex/pythontex/pythontex-0.18.ebuild
index 66b83175b3fa..8a6634eaab80 100644
--- a/dev-tex/pythontex/pythontex-0.18.ebuild
+++ b/dev-tex/pythontex/pythontex-0.18.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/gpoore/pythontex/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 SLOT="0"
 LICENSE="LPPL-1.3 BSD"
-KEYWORDS="amd64 ~ppc ~riscv ~x86"
+KEYWORDS="amd64 ~ppc ~riscv x86"
 IUSE="doc highlighting"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"


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

end of thread, other threads:[~2024-10-25 12:16 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-31 10:09 [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/ Andrey Grozin
  -- strict thread matches above, loose matches on Subject: below --
2024-10-25 12:16 Arthur Zamarin
2024-06-03 18:09 Florian Schmaus
2023-05-01 12:39 Michał Górny
2023-03-31 18:05 Sam James
2023-01-29 12:17 Andrew Ammerlaan
2021-12-28 14:15 Andrew Ammerlaan
2021-10-26  1:21 Yixun Lan
2021-02-21  9:49 Sam James
2020-12-03 11:28 Sam James
2020-12-03  9:00 Sam James
2020-02-22  8:21 Andrey Grozin
2020-02-22  8:20 Andrey Grozin
2020-02-19 13:50 Andrey Grozin
2020-01-19 14:25 Mikle Kolyada
2019-08-06  9:46 Andrey Grozin
2017-09-28 11:12 Andrey Grozin

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