pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/misc wandio: added version 4.2.2



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c6f59f00c3ae
branches:  trunk
changeset: 344454:c6f59f00c3ae
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed Nov 20 20:52:41 2019 +0000

description:
wandio: added version 4.2.2

WANDIO is a library for reading from, and writing to, files. Depending on
libraries available at compile time, WANDIO provides transparent
compression/decompression for the following formats:
- zlib (gzip)
- bzip2
- lzo (write-only)
- lzma
- zstd
- lz4
- Intel QAT (write-only)
- http (read-only)

WANDIO also improves IO performance by performing compression/decompression in
a separate thread (if pthreads are available).

diffstat:

 misc/Makefile             |   3 ++-
 misc/wandio/DESCR         |  14 ++++++++++++++
 misc/wandio/Makefile      |  25 +++++++++++++++++++++++++
 misc/wandio/PLIST         |   5 +++++
 misc/wandio/buildlink3.mk |  20 ++++++++++++++++++++
 misc/wandio/distinfo      |   6 ++++++
 6 files changed, 72 insertions(+), 1 deletions(-)

diffs (107 lines):

diff -r 3b93bb41e9a3 -r c6f59f00c3ae misc/Makefile
--- a/misc/Makefile     Wed Nov 20 19:07:12 2019 +0000
+++ b/misc/Makefile     Wed Nov 20 20:52:41 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.521 2019/11/17 06:17:46 markd Exp $
+# $NetBSD: Makefile,v 1.522 2019/11/20 20:52:41 adam Exp $
 #
 
 COMMENT=       Miscellaneous utilities
@@ -363,6 +363,7 @@
 SUBDIR+=       visual-regexp
 SUBDIR+=       vttest
 SUBDIR+=       vym
+SUBDIR+=       wandio
 SUBDIR+=       watch
 SUBDIR+=       wdic
 SUBDIR+=       wemux
diff -r 3b93bb41e9a3 -r c6f59f00c3ae misc/wandio/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/wandio/DESCR Wed Nov 20 20:52:41 2019 +0000
@@ -0,0 +1,14 @@
+WANDIO is a library for reading from, and writing to, files. Depending on
+libraries available at compile time, WANDIO provides transparent
+compression/decompression for the following formats:
+- zlib (gzip)
+- bzip2
+- lzo (write-only)
+- lzma
+- zstd
+- lz4
+- Intel QAT (write-only)
+- http (read-only)
+
+WANDIO also improves IO performance by performing compression/decompression in
+a separate thread (if pthreads are available).
diff -r 3b93bb41e9a3 -r c6f59f00c3ae misc/wandio/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/wandio/Makefile      Wed Nov 20 20:52:41 2019 +0000
@@ -0,0 +1,25 @@
+# $NetBSD: Makefile,v 1.1 2019/11/20 20:52:41 adam Exp $
+
+DISTNAME=      wandio-4.2.2
+CATEGORIES=    misc
+MASTER_SITES=  https://research.wand.net.nz/software/wandio/
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://research.wand.net.nz/software/libwandio.php
+COMMENT=       Library for reading from and writing to files
+LICENSE=       gnu-lgpl-v3
+
+CONFLICTS=     libtrace<4.0.0
+
+USE_LANGUAGES= c c++
+USE_LIBTOOL=   yes
+GNU_CONFIGURE= yes
+
+.include "../../archivers/bzip2/buildlink3.mk"
+.include "../../archivers/lz4/buildlink3.mk"
+.include "../../archivers/lzo/buildlink3.mk"
+.include "../../archivers/xz/buildlink3.mk"
+.include "../../archivers/zstd/buildlink3.mk"
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../www/curl/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 3b93bb41e9a3 -r c6f59f00c3ae misc/wandio/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/wandio/PLIST Wed Nov 20 20:52:41 2019 +0000
@@ -0,0 +1,5 @@
+@comment $NetBSD: PLIST,v 1.1 2019/11/20 20:52:41 adam Exp $
+bin/wandiocat
+include/wandio.h
+lib/libwandio.la
+man/man1/wandiocat.1
diff -r 3b93bb41e9a3 -r c6f59f00c3ae misc/wandio/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/wandio/buildlink3.mk Wed Nov 20 20:52:41 2019 +0000
@@ -0,0 +1,20 @@
+# $NetBSD: buildlink3.mk,v 1.1 2019/11/20 20:52:41 adam Exp $
+
+BUILDLINK_TREE+=       wandio
+
+.if !defined(WANDIO_BUILDLINK3_MK)
+WANDIO_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.wandio+= wandio>=4.2.2
+BUILDLINK_PKGSRCDIR.wandio?=   ../../misc/wandio
+
+.include "../../archivers/bzip2/buildlink3.mk"
+.include "../../archivers/lz4/buildlink3.mk"
+.include "../../archivers/lzo/buildlink3.mk"
+.include "../../archivers/xz/buildlink3.mk"
+.include "../../archivers/zstd/buildlink3.mk"
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../www/curl/buildlink3.mk"
+.endif # WANDIO_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -wandio
diff -r 3b93bb41e9a3 -r c6f59f00c3ae misc/wandio/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/wandio/distinfo      Wed Nov 20 20:52:41 2019 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/11/20 20:52:41 adam Exp $
+
+SHA1 (wandio-4.2.2.tar.gz) = 9faf36100effc3c1813c2e62d76c7dde7cf2a638
+RMD160 (wandio-4.2.2.tar.gz) = 7aaa9f08588c9f3784b8cf966f3ce30c0c8cd69f
+SHA512 (wandio-4.2.2.tar.gz) = d7a7e423ba8536892d53c42a196984c50f43770ac3b3e3d10fafba4ec642acfbd292372576424aed54045ed3a5a47d6fad1f947be1faf3046b067ae753a4d78f
+Size (wandio-4.2.2.tar.gz) = 441365 bytes



Home | Main Index | Thread Index | Old Index