diff options
author | wiz <wiz@pkgsrc.org> | 2016-11-14 14:10:04 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2016-11-14 14:10:04 +0000 |
commit | 40e0a4b841d908a81edbd3d87391ef1c66bf17e7 (patch) | |
tree | d6b55b90185b78b26bf66d8076a3ff54d1e1c75b /misc | |
parent | 7474939a1b589046cff8658057345b6798c2f7b1 (diff) | |
download | pkgsrc-40e0a4b841d908a81edbd3d87391ef1c66bf17e7.tar.gz |
Updated rhash to 1.3.4.
Sun Nov 6 2016 Aleksey
* === Version 1.3.4 ===
Tue Nov 17 2015 Alexey Dokuchaev, Kurt Jaeger
* Compilation fixes for FreeBSD
Sat Aug 9 2014 Aleksey
* return non zero exit code if a file was not found
Diffstat (limited to 'misc')
-rw-r--r-- | misc/rhash/Makefile | 7 | ||||
-rw-r--r-- | misc/rhash/distinfo | 12 | ||||
-rw-r--r-- | misc/rhash/patches/patch-librhash_byte__order.h | 6 |
3 files changed, 12 insertions, 13 deletions
diff --git a/misc/rhash/Makefile b/misc/rhash/Makefile index 4740879a267..a0ef0aa0a5e 100644 --- a/misc/rhash/Makefile +++ b/misc/rhash/Makefile @@ -1,11 +1,10 @@ -# $NetBSD: Makefile,v 1.3 2016/03/05 11:28:58 jperkin Exp $ +# $NetBSD: Makefile,v 1.4 2016/11/14 14:10:04 wiz Exp $ -DISTNAME= rhash-1.3.3 -PKGREVISION= 1 +DISTNAME= rhash-1.3.4 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GITHUB:=rhash/} GITHUB_PROJECT= RHash -GITHUB_TAG= v1.3.3 +GITHUB_TAG= v${PKGVERSION_NOREV} MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://github.com/rhash/RHash diff --git a/misc/rhash/distinfo b/misc/rhash/distinfo index 5d78aa73aa0..e87c3dcf68b 100644 --- a/misc/rhash/distinfo +++ b/misc/rhash/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.4 2015/11/03 23:49:48 agc Exp $ +$NetBSD: distinfo,v 1.5 2016/11/14 14:10:04 wiz Exp $ -SHA1 (rhash-1.3.3.tar.gz) = 46ef088b8e5ee80c3530f18154ac83a75e9a1b9c -RMD160 (rhash-1.3.3.tar.gz) = 63f2e045c7ee883871c85f26c9d9f2b68e7ae3e2 -SHA512 (rhash-1.3.3.tar.gz) = 067601710f87029a32e95de4e4f3cfe435b31ef6a443f1cffcd5d7c3509ae9b71501103539e37ca3e1e01870e7c1db522af516296efb13ad2c4630b5efab3238 -Size (rhash-1.3.3.tar.gz) = 308872 bytes -SHA1 (patch-librhash_byte__order.h) = 215f88a159d8f78d53e0b7d385eba3afe5507326 +SHA1 (rhash-1.3.4.tar.gz) = fc4610084b8b5a8d20ef0b788381709921ada8bb +RMD160 (rhash-1.3.4.tar.gz) = 00225455818941f6e59b398854f128687465448b +SHA512 (rhash-1.3.4.tar.gz) = 1d6af41f98588005ad2dcabdf479a30f7e4e6b59d56b322702827470e6eaa9a6905e9c1424f778b90488f04e719aa3b2985b92820b7da40ae30f2968339990c0 +Size (rhash-1.3.4.tar.gz) = 309181 bytes +SHA1 (patch-librhash_byte__order.h) = c91d5e8306ad44c3e3492023c3131337f6a77b16 diff --git a/misc/rhash/patches/patch-librhash_byte__order.h b/misc/rhash/patches/patch-librhash_byte__order.h index 9be684ecc94..cb847119eba 100644 --- a/misc/rhash/patches/patch-librhash_byte__order.h +++ b/misc/rhash/patches/patch-librhash_byte__order.h @@ -1,9 +1,9 @@ -$NetBSD: patch-librhash_byte__order.h,v 1.2 2015/04/28 01:17:11 mef Exp $ +$NetBSD: patch-librhash_byte__order.h,v 1.3 2016/11/14 14:10:04 wiz Exp $ Use bswap builtins for clang. Prefer builtin over inline assembler. Recognize BSDish endian macros. ---- librhash/byte_order.h.orig 2015-02-22 21:07:44.000000000 +0000 +--- librhash/byte_order.h.orig 2016-11-06 20:12:16.000000000 +0000 +++ librhash/byte_order.h @@ -10,6 +10,8 @@ @@ -23,7 +23,7 @@ Recognize BSDish endian macros. + _BYTE_ORDER == _LITTLE_ENDIAN) || \ defined(CPU_IA32) || defined(CPU_X64) || \ defined(__ia64) || defined(__ia64__) || defined(__alpha__) || defined(_M_ALPHA) || \ - defined(vax) || defined(MIPSEL) || defined(_ARM_) + defined(vax) || defined(MIPSEL) || defined(_ARM_) || defined(__arm__) @@ -45,7 +48,8 @@ extern "C" { # define IS_BIG_ENDIAN 0 # define IS_LITTLE_ENDIAN 1 |