summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/nano/Makefile7
-rw-r--r--editors/nano/distinfo11
-rw-r--r--editors/nano/patches/patch-src_files.c13
3 files changed, 8 insertions, 23 deletions
diff --git a/editors/nano/Makefile b/editors/nano/Makefile
index e05fdf6b144..e70f988739a 100644
--- a/editors/nano/Makefile
+++ b/editors/nano/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.54 2016/03/26 20:21:37 bsiegert Exp $
+# $NetBSD: Makefile,v 1.55 2016/06/19 10:43:34 wiedi Exp $
-DISTNAME= nano-2.5.3
-PKGREVISION= 1
+DISTNAME= nano-2.6.0
CATEGORIES= editors
-MASTER_SITES= http://www.nano-editor.org/dist/v2.5/
+MASTER_SITES= http://www.nano-editor.org/dist/v2.6/
MAINTAINER= wiedi@frubar.net
HOMEPAGE= http://www.nano-editor.org/
diff --git a/editors/nano/distinfo b/editors/nano/distinfo
index 1f6dae661df..5db45b7cff7 100644
--- a/editors/nano/distinfo
+++ b/editors/nano/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.27 2016/03/26 20:21:37 bsiegert Exp $
+$NetBSD: distinfo,v 1.28 2016/06/19 10:43:34 wiedi Exp $
-SHA1 (nano-2.5.3.tar.gz) = 5ab42a39283a17f61ac5f044d9eae92e41ea8114
-RMD160 (nano-2.5.3.tar.gz) = 7f5d2bf718408d3a3c43e066ef66ba585b5e53ab
-SHA512 (nano-2.5.3.tar.gz) = 1d859f0bd88b9d907cfcaa84edc212bcaea4335c203922eb5b7378c2b45d88dffe1f3e4cb499a824d33781485834ef564997c58cf1fd92610d08f6ce8dcb67d5
-Size (nano-2.5.3.tar.gz) = 1967760 bytes
+SHA1 (nano-2.6.0.tar.gz) = 21a4658cacbf80bd04cbcb0241f426a782c0033b
+RMD160 (nano-2.6.0.tar.gz) = 4fd6a152e1e66f222b7c3434947d55b41711d64f
+SHA512 (nano-2.6.0.tar.gz) = c9bbc3c0c2020248ed1bbf62793c14abdf4786b38f22cf8f73c6b697bab9e95e293a83b27b9f52289a6b658816f442dff1504d3bdbfea094927f335037bdc384
+Size (nano-2.6.0.tar.gz) = 1960801 bytes
SHA1 (patch-configure) = 3a63b02a39000d5a15087739648b82e999d14f56
-SHA1 (patch-src_files.c) = 3416d3437743794aa909ce62b545a02576277060
diff --git a/editors/nano/patches/patch-src_files.c b/editors/nano/patches/patch-src_files.c
deleted file mode 100644
index 79587bd0838..00000000000
--- a/editors/nano/patches/patch-src_files.c
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-src_files.c,v 1.1 2016/03/26 20:21:37 bsiegert Exp $
-
---- src/files.c.orig 2016-02-25 20:47:10.000000000 +0000
-+++ src/files.c
-@@ -43,7 +43,7 @@ bool has_valid_path(const char *filename
- if (strrchr(filename, '/') == NULL)
- parentdir = mallocstrcpy(NULL, ".");
- else
-- parentdir = dirname(mallocstrcpy(NULL, filename));
-+ parentdir = mallocstrcpy(NULL, dirname(filename));
-
- if (stat(parentdir, &parentinfo) == -1) {
- if (errno == ENOENT)