public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-tex/html2latex/
@ 2021-11-24 18:07 Marek Szuba
  0 siblings, 0 replies; 11+ messages in thread
From: Marek Szuba @ 2021-11-24 18:07 UTC (permalink / raw
  To: gentoo-commits

commit:     2b44f61641dc5b6452fa646ef7df44fa0f01846b
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 24 18:04:05 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Nov 24 18:06:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b44f616

dev-tex/html2latex: update EAPI 5 -> 8

Closes: https://bugs.gentoo.org/484432
Bug: https://bugs.gentoo.org/819597
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-tex/html2latex/html2latex-1.1-r2.ebuild | 40 +++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/dev-tex/html2latex/html2latex-1.1-r2.ebuild b/dev-tex/html2latex/html2latex-1.1-r2.ebuild
new file mode 100644
index 000000000000..1321a9313436
--- /dev/null
+++ b/dev-tex/html2latex/html2latex-1.1-r2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit perl-module
+
+DESCRIPTION="Perl script to convert HTML files into formatted LaTeX"
+HOMEPAGE="http://html2latex.sourceforge.net/"
+SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
+LICENSE="GPL-2"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+IUSE="imagemagick libwww"
+
+DEPEND="dev-perl/HTML-Tree
+	dev-perl/XML-Simple
+	imagemagick? ( media-gfx/imagemagick )
+	libwww? ( dev-perl/libwww-perl )"
+
+src_compile() {
+	# HTML::LaTex
+	cd HTML
+	perl-module_src_configure
+	perl-module_src_compile
+}
+
+src_install() {
+	dobin html2latex
+	doman html2latex.1
+	dodoc README TODO
+
+	# HTML::LaTex
+	cd HTML
+	perl-module_src_install
+	# rm unwanted README.win
+	rm "${ED}"/usr/share/doc/${PF}/README.win.txt || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/html2latex/
@ 2021-11-24 20:02 Sam James
  0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-11-24 20:02 UTC (permalink / raw
  To: gentoo-commits

commit:     b1e3436ee676da49d068da88d21e5cfc549f282e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 24 20:02:09 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 24 20:02:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1e3436e

dev-tex/html2latex: use src_configure, use RDEPEND

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

 .../{html2latex-1.1-r2.ebuild => html2latex-1.1-r3.ebuild}  | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/dev-tex/html2latex/html2latex-1.1-r2.ebuild b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
similarity index 88%
rename from dev-tex/html2latex/html2latex-1.1-r2.ebuild
rename to dev-tex/html2latex/html2latex-1.1-r3.ebuild
index 1321a9313436..dd5a18cfc929 100644
--- a/dev-tex/html2latex/html2latex-1.1-r2.ebuild
+++ b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
@@ -19,11 +19,17 @@ DEPEND="dev-perl/HTML-Tree
 	dev-perl/XML-Simple
 	imagemagick? ( media-gfx/imagemagick )
 	libwww? ( dev-perl/libwww-perl )"
+RDEPEND="${DEPEND}"
 
-src_compile() {
+src_configure() {
 	# HTML::LaTex
-	cd HTML
+	cd HTML || die
 	perl-module_src_configure
+}
+
+src_compile() {
+	# HTML::LaTex
+	cd HTML || die
 	perl-module_src_compile
 }
 
@@ -33,8 +39,9 @@ src_install() {
 	dodoc README TODO
 
 	# HTML::LaTex
-	cd HTML
+	cd HTML || die
 	perl-module_src_install
+
 	# rm unwanted README.win
 	rm "${ED}"/usr/share/doc/${PF}/README.win.txt || die
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/html2latex/
@ 2021-12-14 20:57 Jakov Smolić
  0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2021-12-14 20:57 UTC (permalink / raw
  To: gentoo-commits

commit:     1752e0887f56d01538cd5ebcb7b9be4c68bb8431
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 14 20:56:58 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Dec 14 20:56:58 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1752e088

dev-tex/html2latex: Stabilize 1.1-r3 amd64, #819597

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-tex/html2latex/html2latex-1.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/html2latex/html2latex-1.1-r3.ebuild b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
index e68da8c97410..9b883069b5ff 100644
--- a/dev-tex/html2latex/html2latex-1.1-r3.ebuild
+++ b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 IUSE="imagemagick libwww"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/html2latex/
@ 2021-12-14 20:57 Jakov Smolić
  0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2021-12-14 20:57 UTC (permalink / raw
  To: gentoo-commits

commit:     0233b554dd282a60d81369b089164537a0ac905a
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 14 20:56:54 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Dec 14 20:56:54 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0233b554

dev-tex/html2latex: Stabilize 1.1-r3 x86, #819597

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-tex/html2latex/html2latex-1.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/html2latex/html2latex-1.1-r3.ebuild b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
index dd5a18cfc929..e68da8c97410 100644
--- a/dev-tex/html2latex/html2latex-1.1-r3.ebuild
+++ b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 IUSE="imagemagick libwww"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/html2latex/
@ 2021-12-14 21:03 Arthur Zamarin
  0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2021-12-14 21:03 UTC (permalink / raw
  To: gentoo-commits

commit:     ec62410f8a366a3ec41374ebe61d37cea1b9b5db
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 14 21:02:52 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 14 21:03:13 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec62410f

dev-tex/html2latex: Stabilize 1.1-r3 ppc, #819597

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

 dev-tex/html2latex/html2latex-1.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/html2latex/html2latex-1.1-r3.ebuild b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
index 9b883069b5ff..a0089548e3d3 100644
--- a/dev-tex/html2latex/html2latex-1.1-r3.ebuild
+++ b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86"
 
 IUSE="imagemagick libwww"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/html2latex/
@ 2021-12-14 21:03 Arthur Zamarin
  0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2021-12-14 21:03 UTC (permalink / raw
  To: gentoo-commits

commit:     bd954689ba3b18038ca4222031ce70d34b987a2a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 14 21:02:55 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 14 21:03:13 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd954689

dev-tex/html2latex: Stabilize 1.1-r3 sparc, #819597

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

 dev-tex/html2latex/html2latex-1.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/html2latex/html2latex-1.1-r3.ebuild b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
index a0089548e3d3..7b56a1742bef 100644
--- a/dev-tex/html2latex/html2latex-1.1-r3.ebuild
+++ b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 sparc x86"
 
 IUSE="imagemagick libwww"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/html2latex/
@ 2021-12-14 21:03 Arthur Zamarin
  0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2021-12-14 21:03 UTC (permalink / raw
  To: gentoo-commits

commit:     42b15867fe65d3fb0678d746942d3b3c0379d93f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 14 21:02:57 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 14 21:03:13 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42b15867

dev-tex/html2latex: Stabilize 1.1-r3 ppc64, #819597

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

 dev-tex/html2latex/html2latex-1.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/html2latex/html2latex-1.1-r3.ebuild b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
index 7b56a1742bef..4ab4f664944c 100644
--- a/dev-tex/html2latex/html2latex-1.1-r3.ebuild
+++ b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86"
 
 IUSE="imagemagick libwww"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/html2latex/
@ 2021-12-14 21:03 Jakov Smolić
  0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2021-12-14 21:03 UTC (permalink / raw
  To: gentoo-commits

commit:     42ca1f436b6b3d15259f42232178612b3843dcfa
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 14 21:03:42 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Dec 14 21:03:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42ca1f43

dev-tex/html2latex: Drop EAPI-5 ebuild

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-tex/html2latex/html2latex-1.1-r1.ebuild | 40 -----------------------------
 1 file changed, 40 deletions(-)

diff --git a/dev-tex/html2latex/html2latex-1.1-r1.ebuild b/dev-tex/html2latex/html2latex-1.1-r1.ebuild
deleted file mode 100644
index 08145070c4e2..000000000000
--- a/dev-tex/html2latex/html2latex-1.1-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit perl-module
-
-DESCRIPTION="Perl script to convert HTML files into formatted LaTeX"
-HOMEPAGE="http://html2latex.sourceforge.net/"
-SRC_URI="mirror://sourceforge/html2latex/${P}.tar.gz"
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86"
-
-IUSE="imagemagick libwww"
-
-DEPEND="dev-perl/HTML-Tree
-	dev-perl/XML-Simple
-	imagemagick? ( media-gfx/imagemagick )
-	libwww? ( dev-perl/libwww-perl )"
-
-src_compile() {
-	# HTML::LaTex
-	cd HTML
-	perl-module_src_configure
-	perl-module_src_compile
-}
-
-src_install() {
-	dobin html2latex
-	doman html2latex.1
-	dodoc README TODO
-
-	# HTML::LaTex
-	cd HTML
-	perl-module_src_install
-	rm unwanted README.win
-	rm $(find "${D}" -name README.win.txt) || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/html2latex/
@ 2022-04-14 19:28 Jakov Smolić
  0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2022-04-14 19:28 UTC (permalink / raw
  To: gentoo-commits

commit:     edf5fd655c9cc5335ca02bbcb17099667812b85b
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 14 19:22:27 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Apr 14 19:27:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edf5fd65

dev-tex/html2latex: keyword 1.1-r3 for ~riscv

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-tex/html2latex/html2latex-1.1-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tex/html2latex/html2latex-1.1-r3.ebuild b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
index 4ab4f664944c..3fe54bf47772 100644
--- a/dev-tex/html2latex/html2latex-1.1-r3.ebuild
+++ b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
 
 IUSE="imagemagick libwww"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/html2latex/
@ 2023-05-18 19:17 Arthur Zamarin
  0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2023-05-18 19:17 UTC (permalink / raw
  To: gentoo-commits

commit:     9de69546ca12a00f92bc67618eebec8556e63298
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu May 18 19:17:01 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu May 18 19:17:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9de69546

dev-tex/html2latex: Keyword 1.1-r3 arm64, #906622

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

 dev-tex/html2latex/html2latex-1.1-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tex/html2latex/html2latex-1.1-r3.ebuild b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
index 3fe54bf47772..30f96d47c84c 100644
--- a/dev-tex/html2latex/html2latex-1.1-r3.ebuild
+++ b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
+KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
 
 IUSE="imagemagick libwww"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/html2latex/
@ 2023-07-07 21:53 Conrad Kostecki
  0 siblings, 0 replies; 11+ messages in thread
From: Conrad Kostecki @ 2023-07-07 21:53 UTC (permalink / raw
  To: gentoo-commits

commit:     f7829c9bb58b538bef0497769884395dc83dae8f
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Jul  5 07:24:15 2023 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Fri Jul  7 21:53:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7829c9b

dev-tex/html2latex: use HTTPS, fix LICENSE

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

 dev-tex/html2latex/html2latex-1.1-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tex/html2latex/html2latex-1.1-r3.ebuild b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
index 30f96d47c84c..eafcd9548f39 100644
--- a/dev-tex/html2latex/html2latex-1.1-r3.ebuild
+++ b/dev-tex/html2latex/html2latex-1.1-r3.ebuild
@@ -6,9 +6,9 @@ EAPI=8
 inherit perl-module
 
 DESCRIPTION="Perl script to convert HTML files into formatted LaTeX"
-HOMEPAGE="http://html2latex.sourceforge.net/"
+HOMEPAGE="https://html2latex.sourceforge.net/"
 SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"


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

end of thread, other threads:[~2023-07-07 21:53 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-14 21:03 [gentoo-commits] repo/gentoo:master commit in: dev-tex/html2latex/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2023-07-07 21:53 Conrad Kostecki
2023-05-18 19:17 Arthur Zamarin
2022-04-14 19:28 Jakov Smolić
2021-12-14 21:03 Jakov Smolić
2021-12-14 21:03 Arthur Zamarin
2021-12-14 21:03 Arthur Zamarin
2021-12-14 20:57 Jakov Smolić
2021-12-14 20:57 Jakov Smolić
2021-11-24 20:02 Sam James
2021-11-24 18:07 Marek Szuba

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