commit:     a6e5f6c2919ee7b524a94ba3164fcf3a07f3c158
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Tue Aug 24 12:38:32 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Aug 24 12:38:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6e5f6c2

app-text/lout: Remove last-rited package

Closes: https://bugs.gentoo.org/715936
Bug: https://bugs.gentoo.org/752408
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-text/lout/Manifest                       |  1 -
 app-text/lout/files/lout-3.38-makefile.patch | 33 -----------
 app-text/lout/lout-3.40.ebuild               | 85 ----------------------------
 app-text/lout/metadata.xml                   |  8 ---
 profiles/package.mask                        |  5 --
 5 files changed, 132 deletions(-)

diff --git a/app-text/lout/Manifest b/app-text/lout/Manifest
deleted file mode 100644
index 673ad8d54d5..00000000000
--- a/app-text/lout/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST lout-3.40.tar.gz 2172651 BLAKE2B 
0bf2ee498d6fbb91e353d46fe1f7f0f44053be174df901b08ee630f0b4935e19c056a50e2eda4d07ab69aac6d7bf738b42277bb37060e967db73ace6a51029af
 SHA512 
adffbb44b9328f0d64b1c8f08fe0217307b1cca870827ca54e0aaae5a2258f519e3e6f0adc715ba6d192dd731ab26c2cc86aa8611d991d5665503842e599c061

diff --git a/app-text/lout/files/lout-3.38-makefile.patch 
b/app-text/lout/files/lout-3.38-makefile.patch
deleted file mode 100644
index cb7fc66bf43..00000000000
--- a/app-text/lout/files/lout-3.38-makefile.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- lout-3.38/makefile.orig    2008-10-13 23:35:17.000000000 +0200
-+++ lout-3.38/makefile 2009-09-04 16:40:00.000000000 +0200
-@@ -295,11 +295,9 @@
- ZLIB          =
- ZLIBPATH      =
- 
--CC    = gcc
--
- RCOPY = cp -r
- 
--COPTS = -ansi -pedantic -Wall -O3
-+COPTS += -ansi -pedantic -Wall
- 
- CFLAGS        = -DOS_UNIX=$(OSUNIX)                                   \
-         -DOS_DOS=$(OSDOS)                                     \
-@@ -333,7 +331,7 @@
-         z49.o z50.o z51.o z52.o
- 
- lout: $(OBJS)
--      $(CC) -o lout $(OBJS) $(ZLIB) -lm
-+      $(CC) $(COPTS) $(LDFLAGS) -o lout $(OBJS) $(ZLIB) -lm
-       chmod a+x lout
- 
- $(OBJS): externs.h
-@@ -341,7 +339,7 @@
- externs.h:
- 
- prg2lout:     prg2lout.c
--      $(CC) $(COPTS) -o prg2lout prg2lout.c
-+      $(CC) $(COPTS) $(LDFLAGS) -o prg2lout prg2lout.c
-       chmod a+x prg2lout
- 
- all:  lout prg2lout

diff --git a/app-text/lout/lout-3.40.ebuild b/app-text/lout/lout-3.40.ebuild
deleted file mode 100644
index e6d0cc7f1f2..00000000000
--- a/app-text/lout/lout-3.40.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-IUSE="zlib doc"
-
-DESCRIPTION="High-level language for document formatting"
-HOMEPAGE="http://savannah.nongnu.org/projects/lout";
-SRC_URI="mirror://nongnu/lout/${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-
-DEPEND="zlib? ( >=sys-libs/zlib-1.1.4 )"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-       "${FILESDIR}/${PN}-3.38-makefile.patch"
-)
-
-src_compile() {
-       tc-export CC
-       local myconf
-       use zlib && myconf="$myconf PDF_COMPRESSION=1 ZLIB=-lz"
-       emake COPTS="${CFLAGS}" BINDIR="${EPREFIX}"/usr/bin \
-               LOUTLIBDIR="${EPREFIX}"/usr/share/lout \
-               LOUTDOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
-               MANDIR="${EPREFIX}"/usr/share/man/man1 \
-               ${myconf} lout prg2lout || die "emake prg2lout lout failed"
-}
-
-compile_doc() {
-       #
-       # SYNOPSIS:  compile_doc file times
-       #
-
-       einfo "${1}:"
-       # yes, it *is* necessary to run this 6 times...
-       for i in $(seq 1 $(expr $2 - 1)) ; do
-               einfo " pass $i"
-               lout all -o ${docdir}/$1 -e /dev/null
-       done
-       # in the last one, let errors be reported
-       einfo " final pass"
-       lout all -o ${docdir}/$1 || die "final pass failed"
-}
-
-src_install() {
-       local bindir libdir docdir mandir
-       bindir=${ED}usr/bin
-       libdir=${ED}usr/share/lout
-       docdir=${ED}usr/share/doc/${PF}
-       mandir=${ED}usr/share/man/man1
-       export LOUTLIB=${libdir}
-       export PATH="${bindir}:${PATH}"
-
-       mkdir -p ${bindir} ${docdir} ${mandir}
-
-       make BINDIR=${bindir} \
-               LOUTLIBDIR=${libdir} \
-               LOUTDOCDIR=${docdir} \
-               MANDIR=${mandir} \
-               install installdoc installman || die "make install failed"
-
-       lout -x -s "${ED}"usr/share/lout/include/init || die "lout init failed"
-
-       mv ${docdir}/README{,.docs}
-       dodoc README READMEPDF blurb blurb.short whatsnew
-
-       if use doc ; then
-               einfo "building postscript documentation (may take a while)"
-               cd doc/user
-               compile_doc user.ps 6
-               cd ../design
-               compile_doc design.ps 3
-               cd ../expert
-               compile_doc expert.ps 4
-               cd ../slides
-               compile_doc slides.ps 2
-       fi
-}

diff --git a/app-text/lout/metadata.xml b/app-text/lout/metadata.xml
deleted file mode 100644
index d87f47dba10..00000000000
--- a/app-text/lout/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <!-- maintainer-needed -->
-       <upstream>
-               <remote-id type="sourceforge">lout</remote-id>
-       </upstream>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index eb4b6f71673..f6be7551b29 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -315,11 +315,6 @@ dev-util/build
 app-portage/getdelta
 app-portage/deltup
 
-# John Helmert III <[email protected]> (2021-07-26)
-# Maintained needed, open security bug, uninterested upstream.
-# No revdeps. Removal on 2021-08-26. Bug #752408.
-app-text/lout
-
 # Andrew Ammerlaan <[email protected]> (2021-07-12)
 # Version 3.3.0 suffers from ridiculously high CPU usage, this version has
 # therefore been retracted upstream.

Reply via email to