pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/archivers/par2 Updated par2 to 0.7.0.
details: https://anonhg.NetBSD.org/pkgsrc/rev/5aa66d3e2e65
branches: trunk
changeset: 361836:5aa66d3e2e65
user: wiz <wiz%pkgsrc.org@localhost>
date: Thu Apr 27 12:51:35 2017 +0000
description:
Updated par2 to 0.7.0.
17 April 2017 Ike Devolder
* release: 0.7.0
* Merged OpenMP version and so enabled multithreading
* added -t flag to set the number of threads (all possible threads
used by default)
* Added -B flag to set the basepath for difficult to guess situations
* bugfixes
diffstat:
archivers/par2/Makefile | 4 ++--
archivers/par2/distinfo | 12 +++++-------
archivers/par2/patches/patch-diskfile.cpp | 15 ---------------
archivers/par2/patches/patch-par2cmdline.h | 23 -----------------------
4 files changed, 7 insertions(+), 47 deletions(-)
diffs (75 lines):
diff -r bd824ef9e530 -r 5aa66d3e2e65 archivers/par2/Makefile
--- a/archivers/par2/Makefile Thu Apr 27 12:47:33 2017 +0000
+++ b/archivers/par2/Makefile Thu Apr 27 12:51:35 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2016/09/01 16:33:43 wiz Exp $
+# $NetBSD: Makefile,v 1.24 2017/04/27 12:51:35 wiz Exp $
-DISTNAME= par2-0.6.14
+DISTNAME= par2-0.7.0
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_GITHUB:=BlackIkeEagle/}
GITHUB_PROJECT= par2cmdline
diff -r bd824ef9e530 -r 5aa66d3e2e65 archivers/par2/distinfo
--- a/archivers/par2/distinfo Thu Apr 27 12:47:33 2017 +0000
+++ b/archivers/par2/distinfo Thu Apr 27 12:51:35 2017 +0000
@@ -1,8 +1,6 @@
-$NetBSD: distinfo,v 1.15 2016/09/16 17:31:54 jperkin Exp $
+$NetBSD: distinfo,v 1.16 2017/04/27 12:51:35 wiz Exp $
-SHA1 (par2-0.6.14.tar.gz) = 68541996fd7eca6a0c711134dbc4ad8884907d4a
-RMD160 (par2-0.6.14.tar.gz) = d6c29f4e502e68f1cc72d1628a2fc273283ba8db
-SHA512 (par2-0.6.14.tar.gz) = 3d20a2a231fe36f5b12f070655c0eb7ce17fc5914187e0f90fe066571260736da4200e73028405eb44e875f29c64254390088a1365febba7cd3beeddae76b471
-Size (par2-0.6.14.tar.gz) = 3539262 bytes
-SHA1 (patch-diskfile.cpp) = c2319215a6438322edeb28c4413a0a26dcade2d5
-SHA1 (patch-par2cmdline.h) = 416b5ae047c2e3d45fd286ab8f1919092693a87f
+SHA1 (par2-0.7.0.tar.gz) = aba60160c3ecba4576de2d7e665797fef61303af
+RMD160 (par2-0.7.0.tar.gz) = 497e304924bf83497c8779d5fe9f1f689e2bca38
+SHA512 (par2-0.7.0.tar.gz) = 5a33c665219fb5c4377ea88f98d894fa3771844970207f28ae23687bc480b0d1bc42fcabea624acaad179783eec1122b1149fe794a73ac1f013c8bf73d63ead3
+Size (par2-0.7.0.tar.gz) = 3556396 bytes
diff -r bd824ef9e530 -r 5aa66d3e2e65 archivers/par2/patches/patch-diskfile.cpp
--- a/archivers/par2/patches/patch-diskfile.cpp Thu Apr 27 12:47:33 2017 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-$NetBSD: patch-diskfile.cpp,v 1.2 2014/04/25 09:24:22 wiz Exp $
-
-For PATH_MAX.
-https://github.com/BlackIkeEagle/par2cmdline/issues/28
-
---- diskfile.cpp.orig 2014-02-27 20:13:23.000000000 +0000
-+++ diskfile.cpp
-@@ -31,6 +31,7 @@ static char THIS_FILE[]=__FILE__;
- #include <sys/disk.h>
- #define BLKGETSIZE64 DIOCGMEDIASIZE
- #endif
-+#include <limits.h>
-
-
- #ifdef WIN32
diff -r bd824ef9e530 -r 5aa66d3e2e65 archivers/par2/patches/patch-par2cmdline.h
--- a/archivers/par2/patches/patch-par2cmdline.h Thu Apr 27 12:47:33 2017 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-$NetBSD: patch-par2cmdline.h,v 1.1 2016/09/16 17:31:54 jperkin Exp $
-
-Use GCC macros on SunOS, _LITTLE_ENDIAN is defined but not set.
-
---- par2cmdline.h.orig 2015-08-02 16:09:46.000000000 +0000
-+++ par2cmdline.h
-@@ -154,11 +154,14 @@ typedef unsigned long long u64;
- #if HAVE_ENDIAN_H
- # include <endian.h>
- # ifndef __LITTLE_ENDIAN
--# ifdef _LITTLE_ENDIAN
--# define __LITTLE_ENDIAN _LITTLE_ENDIAN
-+# if defined(_LITTLE_ENDIAN) && !defined(__sun)
- # define __LITTLE_ENDIAN _LITTLE_ENDIAN
- # define __BIG_ENDIAN _BIG_ENDIAN
- # define __PDP_ENDIAN _PDP_ENDIAN
-+# elif defined(__ORDER_LITTLE_ENDIAN__)
-+# define __LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__
-+# define __BIG_ENDIAN __ORDER_BIG_ENDIAN__
-+# define __PDP_ENDIAN __ORDER_PDP_ENDIAN__
- # else
- # error <endian.h> does not define __LITTLE_ENDIAN etc.
- # endif
Home |
Main Index |
Thread Index |
Old Index