public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/latex2html/
Date: Sun, 17 Apr 2022 18:32:15 +0000 (UTC)	[thread overview]
Message-ID: <1650220218.970c2188a4a6a29bb9271e155c825d54515d2f7a.sam@gentoo> (raw)

commit:     970c2188a4a6a29bb9271e155c825d54515d2f7a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 17 18:30:18 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 17 18:30:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=970c2188

dev-tex/latex2html: drop 2021, 2021.2

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

 dev-tex/latex2html/Manifest                 |  1 -
 dev-tex/latex2html/latex2html-2021.2.ebuild | 81 -----------------------------
 dev-tex/latex2html/latex2html-2021.ebuild   | 80 ----------------------------
 3 files changed, 162 deletions(-)

diff --git a/dev-tex/latex2html/Manifest b/dev-tex/latex2html/Manifest
index 3b8664e5cbf0..8120bf03844f 100644
--- a/dev-tex/latex2html/Manifest
+++ b/dev-tex/latex2html/Manifest
@@ -1,3 +1,2 @@
 DIST latex2html-2021.2.tar.gz 1139791 BLAKE2B 4fa9b45a33dbfb5c9e3bb45ebab19edb5d7a1d9c882ab30e75afbda7ad902cf519403b685f1f30b69b3d6ec976aa72b3065851b6d24b00c2e626e496ea8afd79 SHA512 b8d742b427e833f732457194cc60c043f750d202c46fb0d1d4e46df8e6d4dabacb5b474084aec46aa4eed68ee0249f3c0b053b5446401d09034e7f59148ad18a
-DIST latex2html-2021.tar.gz 1130224 BLAKE2B c3775b2546a866834c0ed94362a428f2cfe48e8fe7337261993fe1f473350ddb778c50cc4393fe33c9f3829e5dc6f5c0ef43ae6a4c21481746023ef5939308da SHA512 f1f087a58911410b3ca9f4b60149b66d17608a9a56d0e8f74f08e6d6595e3e9c4f5378a7ab5cfc7488cd182a0dc3d4c151283b57636a70271c7f734e69ed0608
 DIST latex2html-2022.tar.gz 1140425 BLAKE2B fffe35d95c3934f428bf18833536a70b42fd12890d5b305976167b5957a0c370ac613d7d6fb675527d5b41ea25eb88bb982ec2a5e71c4d87ec559b1a8e781010 SHA512 a8b35868bc317e52614dc8d748e5d5334b81f068769aa8973b10708b2c8ac15129e2844f4fdb0def7ec14a9557257bb8962962280717b4d04c16ab9e760bb089

diff --git a/dev-tex/latex2html/latex2html-2021.2.ebuild b/dev-tex/latex2html/latex2html-2021.2.ebuild
deleted file mode 100644
index 792127d55d46..000000000000
--- a/dev-tex/latex2html/latex2html-2021.2.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Convertor written in Perl that converts LaTeX documents to HTML"
-HOMEPAGE="https://www.latex2html.org/"
-SRC_URI="https://github.com/latex2html/latex2html/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="gif png"
-
-DEPEND="
-	app-text/ghostscript-gpl
-	virtual/latex-base
-	media-libs/netpbm
-	dev-lang/perl
-	gif? ( media-libs/giflib )
-	png? ( media-libs/libpng:0 )"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-2021.2-respect-DESTDIR.patch
-)
-
-src_prepare() {
-	default
-
-	sed -i -e 's%@PERL@%'"${EPREFIX}"'/usr/bin/perl%g' wrapper/unix.pin || die
-}
-
-src_configure() {
-	local myconf
-
-	use gif || use png || myconf+=" --disable-images"
-
-	econf \
-		--libdir="${EPREFIX}"/usr/$(get_libdir)/latex2html \
-		--shlibdir="${EPREFIX}"/usr/$(get_libdir)/latex2html \
-		--enable-pk \
-		--enable-eps \
-		--enable-reverse \
-		--enable-pipes \
-		--enable-paths \
-		--enable-wrapper \
-		--with-texpath="${EPREFIX}"/usr/share/texmf-site/tex/latex/html \
-		--without-mktexlsr \
-		$(use_enable gif) \
-		$(use_enable png) \
-		${myconf}
-}
-
-src_install() {
-	emake DESTDIR="${D}" install
-
-	# make /usr/share/latex2html sticky
-	keepdir /usr/share/latex2html
-
-	# clean the perl scripts up to remove references to the sandbox
-	local dir="${ED}/usr/$(get_libdir)/latex2html"
-	if use png || use gif; then
-		# pstoimg isn't built unless gif or png useflags are enabled
-		sed -i -e "s:${T}:/tmp:g" "${dir}"/pstoimg.pl || die
-	fi
-
-	sed -i -e "s:${S}::g" "${dir}"/latex2html.pl || die
-	sed -i -e "s:${T}:/tmp:g" "${dir}"/cfgcache.pm || die
-	sed -i -e "s:${T}:/tmp:g" "${dir}"/l2hconf.pm || die
-
-	dodoc BUGS Changes FAQ MANIFEST README.md TODO
-}
-
-pkg_postinst() {
-	"${EROOT}"/usr/bin/mktexlsr
-}
-
-pkg_postrm() {
-	"${EROOT}"/usr/bin/mktexlsr
-}

diff --git a/dev-tex/latex2html/latex2html-2021.ebuild b/dev-tex/latex2html/latex2html-2021.ebuild
deleted file mode 100644
index 8822f882bc9d..000000000000
--- a/dev-tex/latex2html/latex2html-2021.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Convertor written in Perl that converts LaTeX documents to HTML"
-HOMEPAGE="https://www.latex2html.org/"
-SRC_URI="https://github.com/latex2html/latex2html/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="gif png"
-
-DEPEND="
-	app-text/ghostscript-gpl
-	virtual/latex-base
-	media-libs/netpbm
-	dev-lang/perl
-	gif? ( media-libs/giflib )
-	png? ( media-libs/libpng:0 )"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-	"${FILESDIR}/latex2html-destdir.patch"
-)
-
-src_prepare() {
-	default
-
-	sed -i -e 's%@PERL@%'"${EPREFIX}"'/usr/bin/perl%g' wrapper/unix.pin || die
-}
-
-src_configure() {
-	local myconf
-
-	use gif || use png || myconf="${myconf} --disable-images"
-
-	econf \
-		--libdir="${EPREFIX}"/usr/$(get_libdir)/latex2html \
-		--shlibdir="${EPREFIX}"/usr/$(get_libdir)/latex2html \
-		--enable-pk \
-		--enable-eps \
-		--enable-reverse \
-		--enable-pipes \
-		--enable-paths \
-		--enable-wrapper \
-		--with-texpath="${EPREFIX}"/usr/share/texmf-site/tex/latex/html \
-		--without-mktexlsr \
-		$(use_enable gif) \
-		$(use_enable png) \
-		${myconf}
-}
-
-src_install() {
-	emake DESTDIR="${D}" install
-
-	# make /usr/share/latex2html sticky
-	keepdir /usr/share/latex2html
-
-	# clean the perl scripts up to remove references to the sandbox
-	local dir="${ED}/usr/$(get_libdir)/latex2html"
-	if use png || use gif; then
-		# pstoimg isn't built unless gif or png useflags are enabled
-		sed -i -e "s:${T}:/tmp:g" "${dir}"/pstoimg.pl || die
-	fi
-	sed -i -e "s:${S}::g" "${dir}"/latex2html.pl || die
-	sed -i -e "s:${T}:/tmp:g" "${dir}"/cfgcache.pm || die
-	sed -i -e "s:${T}:/tmp:g" "${dir}"/l2hconf.pm || die
-
-	dodoc BUGS Changes FAQ MANIFEST README.md TODO
-}
-
-pkg_postinst() {
-	"${EROOT}"/usr/bin/mktexlsr
-}
-
-pkg_postrm() {
-	"${EROOT}"/usr/bin/mktexlsr
-}


             reply	other threads:[~2022-04-17 18:32 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-17 18:32 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-04-29  7:51 [gentoo-commits] repo/gentoo:master commit in: dev-tex/latex2html/ Arthur Zamarin
2023-03-24 13:45 Arthur Zamarin
2023-03-22  5:31 Sam James
2022-01-02  9:25 Sam James
2021-12-07  7:52 Sam James
2021-12-02  9:14 Agostino Sarubbo
2021-12-02  8:24 Agostino Sarubbo
2021-12-01 13:31 Agostino Sarubbo
2021-11-20  7:12 Arthur Zamarin
2021-11-17 15:02 Arthur Zamarin
2021-11-17  7:49 Sam James
2021-11-12  1:23 Sam James
2021-11-12  1:23 Sam James
2021-11-10  7:34 Arthur Zamarin
2021-11-10  7:05 Agostino Sarubbo
2021-11-09 15:04 Jakov Smolić
2021-11-07 23:11 Sam James
2021-08-11 19:11 Sam James
2021-08-11  0:23 Sam James
2021-08-11  0:12 Sam James
2021-08-11  0:04 Sam James
2021-07-28 19:32 Marek Szuba
2021-07-03  4:18 Sam James
2021-07-03  3:08 Sam James
2021-07-03  3:08 Sam James
2021-02-16 12:34 Sam James
2021-02-14  4:05 Sam James
2021-02-07  8:59 Sam James
2021-02-07  8:58 Sam James
2021-02-07  8:57 Sam James
2021-02-07  8:56 Sam James
2021-01-09 10:36 Sam James
2021-01-06 22:35 Fabian Groffen
2021-01-02  4:26 Sam James
2021-01-02  4:26 Sam James
2020-09-06  7:49 Sergei Trofimovich
2020-08-05 14:01 Agostino Sarubbo
2020-08-02 12:44 Sergei Trofimovich
2020-08-02 12:04 Sergei Trofimovich
2020-08-02 11:48 Sergei Trofimovich
2020-06-27 20:45 Andreas K. Hüttel
2019-06-05 12:07 Andreas K. Hüttel
2019-05-20 18:51 Aaron Bauman
2017-09-24 20:40 Andreas Hüttel
2017-03-01 10:08 Michael Weber
2017-01-31 16:02 Jeroen Roovers
2017-01-31 15:51 Tobias Klausmann
2016-03-26 10:58 Andreas Hüttel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1650220218.970c2188a4a6a29bb9271e155c825d54515d2f7a.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox