net-misc/urlview: Remove last rited package

Closes https://bugs.gentoo.org/646118
This commit is contained in:
Chema Alonso Josa
2018-06-30 15:15:04 +02:00
parent 8f7e30e388
commit bdf58bb920
8 changed files with 0 additions and 137 deletions

View File

@@ -1 +0,0 @@
DIST urlview-0.9.tar.gz 46685 BLAKE2B 7023a32c6a14121bc0639ba0f1ed06ec66663cd386fb35cf23b115878ef0e3a5f93a09360e3c9cbbd29ac1b6537ce9d559fbcd73a5ce07556feb20b9e77d1588 SHA512 5415c30e34f429c78001b1e87a75a43503d1998b667eaac66dc49298ea491914c6360baba33b5caeeb4ad54e3a4533a46afc05de3b1f135e41069d00fad0936a

View File

@@ -1,11 +0,0 @@
--- a/urlview.c
+++ b/urlview.c
@@ -40,6 +40,8 @@
#include <fcntl.h>
#include <sys/stat.h>
+#include "quote.h"
+
#ifdef HAVE_REGEX_H
#include <regex.h>
#else

View File

@@ -1,11 +0,0 @@
--- a/urlview.c
+++ b/urlview.no-trailing-newline.c
@@ -46,7 +46,7 @@
#include <rx/rxposix.h>
#endif
-#define DEFAULT_REGEXP "(((https?|ftp|gopher)://|(mailto|file|news):)[^' \t<>\"]+|(www|web|w3)\\.[-a-z0-9.]+)[^' \t.,;<>\"\\):]"
+#define DEFAULT_REGEXP "(((https?|ftp|gopher)://|(mailto|file|news):)[^' \t<>\"]+|(www|web|w3)\\.[-a-z0-9.]+)[^' \n\t.,;<>\"\\):]"
#define DEFAULT_COMMAND "url_handler.sh %s"
#define SYSTEM_INITFILE "/etc/urlview.conf"

View File

@@ -1,23 +0,0 @@
--- a/Makefile.am
+++ b/Makefile.am
@@ -11,6 +11,7 @@
CLEANFILES = *~ *.orig *.rej
install-data-local:
- $(INSTALL_DATA) urlview.man $(mandir)/man1/urlview.1
+ $(mkinstalldirs) $(DESTDIR)$(mandir)/man1
+ $(INSTALL_DATA) urlview.man ${DESTDIR}$(mandir)/man1/urlview.1
# how to create a target for uninstall-data-local???
--- a/Makefile.in
+++ b/Makefile.in
@@ -318,7 +318,8 @@
install-data-local:
- $(INSTALL_DATA) urlview.man $(mandir)/man1/urlview.1
+ $(mkinstalldirs) $(DESTDIR)$(mandir)/man1
+ $(INSTALL_DATA) urlview.man $(DESTDIR)$(mandir)/man1/urlview.1
# how to create a target for uninstall-data-local???

View File

@@ -1,21 +0,0 @@
--- a/configure.in
+++ b/configure.in
@@ -3,6 +3,8 @@
dnl AM_CONFIG_HEADER(config.h)
AM_PROG_CC_STDC
CFLAGS="$CFLAGS -DURLVIEW -Dunix"
+
+PKG_CHECK_MODULES(ncurses,ncurses)
AC_ARG_WITH(slang, [ --with-slang[=DIR] use S-Lang instead of curses],
[AC_DEFINE(USE_SLANG)
if test $withval = yes -a -d ../slang; then
@@ -22,8 +24,7 @@
fi
LIBS="$LIBS -lslang -lm"
fi],
-
- [AC_CHECK_LIB(ncurses, initscr, [LIBS="$LIBS -lncurses"], [LIBS="$LIBS -lcurses"])
+ [LIBS="$LIBS $ncurses_LIBS"
AC_CHECK_FUNCS(curs_set)
AC_CHECK_HEADERS(ncurses.h)
AC_CHECK_HEADER(ncurses/curses.h, [CPPFLAGS="$CPPFLAGS -I/usr/include/ncurses"])])

View File

@@ -1,18 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>nimiux@gentoo.org</email>
<name>Chema Alonso</name>
</maintainer>
<longdescription lang="en">
urlview is a screen oriented program for extracting URLs from text
files and displaying a menu from which you may launch a command to view
a specific item.
</longdescription>
<longdescription lang="es">
urlview es un programa orientado a terminal para la extracción de URLs
desde ficheros de texto. El programa muestra un menú desde el que se
puede lanzar una orden para ver un elemento en particular.
</longdescription>
</pkgmetadata>

View File

@@ -1,47 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools eutils
DESCRIPTION="extracts urls from text and will send them to another app"
HOMEPAGE="http://www.mutt.org"
SRC_URI="ftp://gd.tuwien.ac.at/infosys/mail/mutt/contrib/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm ia64 ppc ppc64 s390 sh sparc x86"
RDEPEND="
>=sys-libs/ncurses-5.2
"
DEPEND="
${RDEPEND}
virtual/pkgconfig
"
src_prepare() {
epatch \
"${FILESDIR}"/no-trailing-newline.patch \
"${FILESDIR}"/include-fix.patch \
"${FILESDIR}"/${P}-DESTDIR.patch \
"${FILESDIR}"/${P}-tinfo.patch
eautoreconf
}
src_install() {
default
dodoc README INSTALL ChangeLog AUTHORS sample.urlview
dobin url_handler.sh
}
pkg_postinst() {
echo
einfo "There is a sample.urlview in /usr/share/doc/${P}"
einfo "You can also customize /usr/bin/url_handler.sh"
echo
einfo "If using urlview from mutt, you may need to "set pipe_decode" in"
einfo "your ~/.muttrc to prevent garbled URLs."
echo
}

View File

@@ -451,11 +451,6 @@ media-sound/puddletag
# Removal in 30 days.
app-crypt/openpgp-keys-gentoo-mirror
# Chema Alonso Josa <nimiux@gentoo.org> (28 May 2018)
# Upstream is dead.
# Masked for removal in 30 days. Bug #646118
net-misc/urlview
# Kent Fredric <kentnl@gentoo.org> (27 May 2018)
# Subject to Man-in-the-middle security bypass vulnerability.
# Retained in tree only for users who need older versions