pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/misc
Module Name: pkgsrc
Committed By: adam
Date: Wed Nov 20 20:52:41 UTC 2019
Modified Files:
pkgsrc/misc: Makefile
Added Files:
pkgsrc/misc/wandio: DESCR Makefile PLIST buildlink3.mk distinfo
Log Message:
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).
To generate a diff of this commit:
cvs rdiff -u -r1.521 -r1.522 pkgsrc/misc/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/misc/wandio/DESCR pkgsrc/misc/wandio/Makefile \
pkgsrc/misc/wandio/PLIST pkgsrc/misc/wandio/buildlink3.mk \
pkgsrc/misc/wandio/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/misc/Makefile
diff -u pkgsrc/misc/Makefile:1.521 pkgsrc/misc/Makefile:1.522
--- pkgsrc/misc/Makefile:1.521 Sun Nov 17 06:17:46 2019
+++ pkgsrc/misc/Makefile Wed Nov 20 20:52:41 2019
@@ -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+= vimpager
SUBDIR+= visual-regexp
SUBDIR+= vttest
SUBDIR+= vym
+SUBDIR+= wandio
SUBDIR+= watch
SUBDIR+= wdic
SUBDIR+= wemux
Added files:
Index: pkgsrc/misc/wandio/DESCR
diff -u /dev/null pkgsrc/misc/wandio/DESCR:1.1
--- /dev/null Wed Nov 20 20:52:41 2019
+++ pkgsrc/misc/wandio/DESCR Wed Nov 20 20:52:41 2019
@@ -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).
Index: pkgsrc/misc/wandio/Makefile
diff -u /dev/null pkgsrc/misc/wandio/Makefile:1.1
--- /dev/null Wed Nov 20 20:52:41 2019
+++ pkgsrc/misc/wandio/Makefile Wed Nov 20 20:52:41 2019
@@ -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"
Index: pkgsrc/misc/wandio/PLIST
diff -u /dev/null pkgsrc/misc/wandio/PLIST:1.1
--- /dev/null Wed Nov 20 20:52:41 2019
+++ pkgsrc/misc/wandio/PLIST Wed Nov 20 20:52:41 2019
@@ -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
Index: pkgsrc/misc/wandio/buildlink3.mk
diff -u /dev/null pkgsrc/misc/wandio/buildlink3.mk:1.1
--- /dev/null Wed Nov 20 20:52:41 2019
+++ pkgsrc/misc/wandio/buildlink3.mk Wed Nov 20 20:52:41 2019
@@ -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
Index: pkgsrc/misc/wandio/distinfo
diff -u /dev/null pkgsrc/misc/wandio/distinfo:1.1
--- /dev/null Wed Nov 20 20:52:41 2019
+++ pkgsrc/misc/wandio/distinfo Wed Nov 20 20:52:41 2019
@@ -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