summaryrefslogtreecommitdiff
path: root/filesystems
diff options
context:
space:
mode:
authorstacktic <stacktic>2013-07-05 17:25:23 +0000
committerstacktic <stacktic>2013-07-05 17:25:23 +0000
commit29202dcd0cdcfd4f28708a99986ff0a2757ed39b (patch)
treed1cfd2a1c420c18ea80b9ba6631bc1d521c2d3c2 /filesystems
parent8784386eb7b79e0a57f838bf83951e87c800bf54 (diff)
downloadpkgsrc-29202dcd0cdcfd4f28708a99986ff0a2757ed39b.tar.gz
Update filesystems/fs-utils to 20130701 - release v1.00
Diffstat (limited to 'filesystems')
-rw-r--r--filesystems/fs-utils/Makefile13
-rw-r--r--filesystems/fs-utils/distinfo9
-rw-r--r--filesystems/fs-utils/patches/patch-lib_mount__v7fs.c22
3 files changed, 11 insertions, 33 deletions
diff --git a/filesystems/fs-utils/Makefile b/filesystems/fs-utils/Makefile
index 10e59604f21..6b8fbe3fb17 100644
--- a/filesystems/fs-utils/Makefile
+++ b/filesystems/fs-utils/Makefile
@@ -1,12 +1,13 @@
-# $NetBSD: Makefile,v 1.17 2013/06/18 18:52:43 wiz Exp $
+# $NetBSD: Makefile,v 1.18 2013/07/05 17:25:23 stacktic Exp $
#
-GIT_COMMIT= 89cccf
+GIT_COMMIT= v1.00
DISTNAME= ${GIT_COMMIT}
-PKGNAME= fs-utils-20130601
+PKGNAME= fs-utils-20130701
CATEGORIES= filesystems
-MASTER_SITES= -http://nodeload.github.com/stacktic/fs-utils/tar.gz/${GIT_COMMIT}
+MASTER_SITES= https://github.com/stacktic/fs-utils/archive/
+FETCH_USING= curl
MAINTAINER= stacktic@NetBSD.org
HOMEPAGE= https://github.com/stacktic/fs-utils
@@ -14,13 +15,13 @@ COMMENT= Tools to access/modify a file system image through RUMP
LICENSE= 2-clause-bsd
DEPENDS+= rump>=20130101:../../misc/rump
-ONLY_FOR_PLATFORM= Linux-*-* SunOS-*-* NetBSD-*-* DragonFly-*-*
+ONLY_FOR_PLATFORM= Linux-*-* SunOS-*-* NetBSD-*-*
INSTALLATION_DIRS= bin lib include ${PKGMANDIR}/man1 ${PKGMANDIR}/man3
USE_TOOLS+= gmake
-WRKSRC= ${WRKDIR}/fs-utils-${GIT_COMMIT}
+WRKSRC= ${WRKDIR}/fs-utils-1.00
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
diff --git a/filesystems/fs-utils/distinfo b/filesystems/fs-utils/distinfo
index aab183d4573..e9da2d7eeec 100644
--- a/filesystems/fs-utils/distinfo
+++ b/filesystems/fs-utils/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.14 2013/06/26 21:24:23 joerg Exp $
+$NetBSD: distinfo,v 1.15 2013/07/05 17:25:23 stacktic Exp $
-SHA1 (89cccf.tar.gz) = ea6e5458616347b874a7bba3c5a942a80745934d
-RMD160 (89cccf.tar.gz) = a4abf18762cb3628e663ae23d99d3d660462a99d
-Size (89cccf.tar.gz) = 493836 bytes
+SHA1 (v1.00.tar.gz) = 77dfb9a3d3c72c723169309f5ca75c178b3335df
+RMD160 (v1.00.tar.gz) = c155491d6771a062831d8604ad64f0eead8f29bc
+Size (v1.00.tar.gz) = 493827 bytes
SHA1 (patch-lib_getbsize.c) = 9321fcc65f918a825de697bba3c69f53b1e71871
-SHA1 (patch-lib_mount__v7fs.c) = 9ff801f0f128ca361da80b18cd7a398826e60813
diff --git a/filesystems/fs-utils/patches/patch-lib_mount__v7fs.c b/filesystems/fs-utils/patches/patch-lib_mount__v7fs.c
deleted file mode 100644
index eb3c13de1d2..00000000000
--- a/filesystems/fs-utils/patches/patch-lib_mount__v7fs.c
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-lib_mount__v7fs.c,v 1.1 2013/06/18 18:52:10 wiz Exp $
-
-Function returning void shouldn't return values.
-
---- lib/mount_v7fs.c.orig 2013-06-01 12:54:14.000000000 +0000
-+++ lib/mount_v7fs.c
-@@ -155,13 +155,13 @@ mount_v7fs_parseargs(int argc, char **ar
- case '?':
-
- default:
-- return 1;
-+ return;
- }
- argc -= optind;
- argv += optind;
-
- if (argc != 2)
-- return 1;
-+ return;
-
- pathadj(argv[0], canon_dev);
- args->endian = endian;