aboutsummaryrefslogtreecommitdiff
path: root/textproc/extract_url
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2017-01-25 18:29:07 +0000
committerDmitry Marakasov <amdmi3@FreeBSD.org>2017-01-25 18:29:07 +0000
commit5a5e1c8a245c62fb8abf2d802066f44c0ba5e373 (patch)
tree06ab31deab9bdd47fb2650ef8deb64c31b8f5c65 /textproc/extract_url
parentddc8546317c06aa17daf59e6b1a78078723603de (diff)
downloadports-5a5e1c8a245c62fb8abf2d802066f44c0ba5e373.tar.gz
ports-5a5e1c8a245c62fb8abf2d802066f44c0ba5e373.zip
- Update to 1.6.2
PR: 216455 Submitted by: dbaio@bsd.com.br (maintainer)
Notes
Notes: svn path=/head/; revision=432451
Diffstat (limited to 'textproc/extract_url')
-rw-r--r--textproc/extract_url/Makefile2
-rw-r--r--textproc/extract_url/distinfo6
-rw-r--r--textproc/extract_url/files/patch-extract__url.pl22
3 files changed, 4 insertions, 26 deletions
diff --git a/textproc/extract_url/Makefile b/textproc/extract_url/Makefile
index adf1ef08e963..0e070e929a9d 100644
--- a/textproc/extract_url/Makefile
+++ b/textproc/extract_url/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= extract_url
-PORTVERSION= 1.6.1
+PORTVERSION= 1.6.2
DISTVERSIONPREFIX= v
CATEGORIES= textproc
diff --git a/textproc/extract_url/distinfo b/textproc/extract_url/distinfo
index e4c10f47464c..08151f50619e 100644
--- a/textproc/extract_url/distinfo
+++ b/textproc/extract_url/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1485089324
-SHA256 (m3m0ryh0l3-extracturl-v1.6.1_GH0.tar.gz) = 6ce3a977477cce6c7c8355500db4ef660d5b22118df6534d3ab022124c62a393
-SIZE (m3m0ryh0l3-extracturl-v1.6.1_GH0.tar.gz) = 16192
+TIMESTAMP = 1485332045
+SHA256 (m3m0ryh0l3-extracturl-v1.6.2_GH0.tar.gz) = 5f0b568d5c9449f477527b4077d8269f1f5e6d6531dfa5eb6ca72dbacab6f336
+SIZE (m3m0ryh0l3-extracturl-v1.6.2_GH0.tar.gz) = 16296
diff --git a/textproc/extract_url/files/patch-extract__url.pl b/textproc/extract_url/files/patch-extract__url.pl
deleted file mode 100644
index fe5e094cbd55..000000000000
--- a/textproc/extract_url/files/patch-extract__url.pl
+++ /dev/null
@@ -1,22 +0,0 @@
---- extract_url.pl.orig 2017-01-18 14:59:52 UTC
-+++ extract_url.pl
-@@ -54,18 +54,7 @@ sub VERSION_MESSAGE {
-
- my $term_cols = 80;
- my ($term_rows, $term_wpix, $term_hpix);
--if (eval "use Term::Readkey") {
-- ($term_cols, $term_rows, $term_wpix, $term_hpix) = GetTerminalSize();
--} else {
-- require 'sys/ioctl.ph';
-- if (defined &TIOCGWINSZ and open(TTY, "+</dev/tty")) {
-- my $winsize = '';
-- unless (ioctl(TTY, &TIOCGWINSZ, $winsize)) {
-- die sprintf "$0: ioctl TIOCGWINSZ (%08x: $!)\n", &TIOCGWINSZ;
-- }
-- ($term_rows, $term_cols, $term_wpix, $term_hpix) = unpack('S4', $winsize);
-- }
--}
-+require 'sys/ioctl.ph';
- my $list_width = $term_cols - 4; # 4 is for the border width on either side
-
- my %options;