Wed Nov 20 20:52:41 2019 UTC ()
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).


(adam)
diff -r1.521 -r1.522 pkgsrc/misc/Makefile
diff -r0 -r1.1 pkgsrc/misc/wandio/DESCR
diff -r0 -r1.1 pkgsrc/misc/wandio/Makefile
diff -r0 -r1.1 pkgsrc/misc/wandio/PLIST
diff -r0 -r1.1 pkgsrc/misc/wandio/buildlink3.mk
diff -r0 -r1.1 pkgsrc/misc/wandio/distinfo

cvs diff -r1.521 -r1.522 pkgsrc/misc/Makefile (expand / switch to unified diff)

--- pkgsrc/misc/Makefile 2019/11/17 06:17:46 1.521
+++ pkgsrc/misc/Makefile 2019/11/20 20:52:41 1.522
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.521 2019/11/17 06:17:46 markd Exp $ 1# $NetBSD: Makefile,v 1.522 2019/11/20 20:52:41 adam Exp $
2# 2#
3 3
4COMMENT= Miscellaneous utilities 4COMMENT= Miscellaneous utilities
5 5
6SUBDIR+= 9menu 6SUBDIR+= 9menu
7SUBDIR+= Addresses 7SUBDIR+= Addresses
8SUBDIR+= JBidwatcher 8SUBDIR+= JBidwatcher
9SUBDIR+= JMdict 9SUBDIR+= JMdict
10SUBDIR+= R-Hmisc 10SUBDIR+= R-Hmisc
11SUBDIR+= R-pillar 11SUBDIR+= R-pillar
12SUBDIR+= R-praise 12SUBDIR+= R-praise
13SUBDIR+= ansiweather 13SUBDIR+= ansiweather
14SUBDIR+= ascii 14SUBDIR+= ascii
@@ -353,26 +353,27 @@ SUBDIR+= ttyrec @@ -353,26 +353,27 @@ SUBDIR+= ttyrec
353SUBDIR+= udfclient 353SUBDIR+= udfclient
354SUBDIR+= ukpostcodes 354SUBDIR+= ukpostcodes
355SUBDIR+= uptimec 355SUBDIR+= uptimec
356SUBDIR+= urjtag 356SUBDIR+= urjtag
357SUBDIR+= usbids 357SUBDIR+= usbids
358SUBDIR+= usbprog 358SUBDIR+= usbprog
359SUBDIR+= utftools 359SUBDIR+= utftools
360SUBDIR+= vera 360SUBDIR+= vera
361SUBDIR+= vfu 361SUBDIR+= vfu
362SUBDIR+= vimpager 362SUBDIR+= vimpager
363SUBDIR+= visual-regexp 363SUBDIR+= visual-regexp
364SUBDIR+= vttest 364SUBDIR+= vttest
365SUBDIR+= vym 365SUBDIR+= vym
 366SUBDIR+= wandio
366SUBDIR+= watch 367SUBDIR+= watch
367SUBDIR+= wdic 368SUBDIR+= wdic
368SUBDIR+= wemux 369SUBDIR+= wemux
369SUBDIR+= whohas 370SUBDIR+= whohas
370SUBDIR+= window 371SUBDIR+= window
371SUBDIR+= xchm 372SUBDIR+= xchm
372SUBDIR+= xdg-utils 373SUBDIR+= xdg-utils
373SUBDIR+= xfce4-calculator-plugin 374SUBDIR+= xfce4-calculator-plugin
374SUBDIR+= xfce4-smartbookmark-plugin 375SUBDIR+= xfce4-smartbookmark-plugin
375SUBDIR+= xfce4-time-out-plugin 376SUBDIR+= xfce4-time-out-plugin
376SUBDIR+= xfce4-weather-plugin 377SUBDIR+= xfce4-weather-plugin
377SUBDIR+= xjdic 378SUBDIR+= xjdic
378SUBDIR+= xorg-docs 379SUBDIR+= xorg-docs

File Added: pkgsrc/misc/wandio/DESCR
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).

File Added: pkgsrc/misc/wandio/Makefile
# $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
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"

File Added: pkgsrc/misc/wandio/PLIST
@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

File Added: pkgsrc/misc/wandio/buildlink3.mk
# $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

File Added: pkgsrc/misc/wandio/distinfo
$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