summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2007-03-05 23:06:30 +0000
committerrillig <rillig@pkgsrc.org>2007-03-05 23:06:30 +0000
commit0ce3115e0ab5763983cec320bf97ce65d709cfd3 (patch)
tree667ed43c25c99cef65c4fdab38064bba30405a12 /sysutils
parent97afcc471a7cdd673e40f9a94d262c53e33f8ace (diff)
downloadpkgsrc-0ce3115e0ab5763983cec320bf97ce65d709cfd3.tar.gz
Updated checkperms to 1.7.
Changes since 1.4: Version 1.7 (2007-03-05): Added support for more Mac OS X binaries. Patch provided by Darrin B. Jewell. Version 1.6 (2007-02-06): Added support for Microsoft Windows, MS-DOS, and Mono binaries. Version 1.5 (2007-01-01): Added support for more Mac OS X binaries. Patch provided by Julio M. Merino Vidal.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/checkperms/Makefile5
-rw-r--r--sysutils/checkperms/distinfo8
-rw-r--r--sysutils/checkperms/patches/patch-aa24
3 files changed, 6 insertions, 31 deletions
diff --git a/sysutils/checkperms/Makefile b/sysutils/checkperms/Makefile
index aa0e929c794..6853adf79f3 100644
--- a/sysutils/checkperms/Makefile
+++ b/sysutils/checkperms/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.7 2007/03/05 02:38:33 dbj Exp $
+# $NetBSD: Makefile,v 1.8 2007/03/05 23:06:30 rillig Exp $
#
-DISTNAME= checkperms-1.4
-PKGREVISION= 2
+DISTNAME= checkperms-1.7
CATEGORIES= sysutils
MASTER_SITES= http://www.schlechte-software.de/checkperms/
diff --git a/sysutils/checkperms/distinfo b/sysutils/checkperms/distinfo
index 5311d2c84bb..d14a20d6141 100644
--- a/sysutils/checkperms/distinfo
+++ b/sysutils/checkperms/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.4 2007/03/05 02:38:33 dbj Exp $
+$NetBSD: distinfo,v 1.5 2007/03/05 23:06:30 rillig Exp $
-SHA1 (checkperms-1.4.tar.gz) = 83474273c42596587f6a2ededac79ca21bee7251
-RMD160 (checkperms-1.4.tar.gz) = a243a27c177faa6fb33659151ee3cad8dda240cb
-Size (checkperms-1.4.tar.gz) = 5070 bytes
+SHA1 (checkperms-1.7.tar.gz) = 2b3269bfc1487d2f27c4d05e2f31b24288baa868
+RMD160 (checkperms-1.7.tar.gz) = a1afcbb76cbdb1ff2071df8fc98c5eec58d80668
+Size (checkperms-1.7.tar.gz) = 5472 bytes
SHA1 (patch-aa) = 8bec800e4e8f05bd764ff2f59ea865744ddc2bf6
diff --git a/sysutils/checkperms/patches/patch-aa b/sysutils/checkperms/patches/patch-aa
deleted file mode 100644
index 7aabd829fef..00000000000
--- a/sysutils/checkperms/patches/patch-aa
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2007/03/05 02:38:33 dbj Exp $
-
---- checkperms.c.orig 2006-11-02 10:39:38.000000000 -0800
-+++ checkperms.c 2007-03-04 18:30:31.000000000 -0800
-@@ -211,9 +211,18 @@ should_clear_x_bit(const char *fname, mo
- if (memcmp(buf, "<big", 4) == 0)
- return 0;
-
-- /* Mac OS X binaries */
-+ /* ppc Mac OS X binaries */
- if (buf[0] == 0xfe && buf[1] == 0xed && buf[2] == 0xfa && buf[3] == 0xce)
- return 0;
-+ /* ppc64 Mac OS X binaries */
-+ if (buf[0] == 0xfe && buf[1] == 0xed && buf[2] == 0xfa && buf[3] == 0xcf)
-+ return 0;
-+ /* i386 Mac OS X binaries */
-+ if (buf[0] == 0xce && buf[1] == 0xfa && buf[2] == 0xed && buf[3] == 0xfe)
-+ return 0;
-+ /* Universal Mac OS X binaries */
-+ if (buf[0] == 0xca && buf[1] == 0xfe && buf[2] == 0xba && buf[3] == 0xbe)
-+ return 0;
-
- /* As a special case, libtool libraries may have the executable bit,
- * although they probably don't need it.