pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/archivers/xz-utils Initial import of xz-utils-4.999.8b...
details: https://anonhg.NetBSD.org/pkgsrc/rev/52e6aebc1817
branches: trunk
changeset: 394307:52e6aebc1817
user: wiz <wiz%pkgsrc.org@localhost>
date: Mon Jun 08 14:01:18 2009 +0000
description:
Initial import of xz-utils-4.999.8beta:
LZMA is a general purporse compression algorithm designed by Igor
Pavlov as part of 7-Zip. It provides high compression ratio while
keeping the decompression speed fast.
XZ Utils are an attempt to make LZMA compression easy to use on
free (as in freedom) operating systems. This is achieved by providing
tools and libraries which are similar to use than the equivalents
of the most popular existing compression algorithms.
XZ Utils consist of a few relatively separate parts:
* liblzma is an encoder/decoder library with support for several
filters (algorithm implementations). The primary filter is
LZMA.
* libzfile (or whatever the name will be) enables reading from
and writing to gzip, bzip2 and LZMA compressed and uncompressed
files with an API similar to the standard ANSI-C file I/O.
[ NOTE: libzfile is not implemented yet. ]
* xz command line tool has almost identical syntax than gzip
and bzip2. It makes LZMA easy for average users, but also
provides advanced options to finetune the compression settings.
* A few shell scripts make diffing and grepping LZMA compressed
files easy. The scripts were adapted from gzip and bzip2.
diffstat:
archivers/xz-utils/DESCR | 22 ++++++++++++++++++++++
archivers/xz-utils/Makefile | 23 +++++++++++++++++++++++
archivers/xz-utils/PLIST | 41 +++++++++++++++++++++++++++++++++++++++++
archivers/xz-utils/distinfo | 5 +++++
4 files changed, 91 insertions(+), 0 deletions(-)
diffs (107 lines):
diff -r 7a4260569a73 -r 52e6aebc1817 archivers/xz-utils/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/xz-utils/DESCR Mon Jun 08 14:01:18 2009 +0000
@@ -0,0 +1,22 @@
+LZMA is a general purporse compression algorithm designed by Igor
+Pavlov as part of 7-Zip. It provides high compression ratio while
+keeping the decompression speed fast.
+
+XZ Utils are an attempt to make LZMA compression easy to use on
+free (as in freedom) operating systems. This is achieved by providing
+tools and libraries which are similar to use than the equivalents
+of the most popular existing compression algorithms.
+
+XZ Utils consist of a few relatively separate parts:
+ * liblzma is an encoder/decoder library with support for several
+ filters (algorithm implementations). The primary filter is
+ LZMA.
+ * libzfile (or whatever the name will be) enables reading from
+ and writing to gzip, bzip2 and LZMA compressed and uncompressed
+ files with an API similar to the standard ANSI-C file I/O.
+ [ NOTE: libzfile is not implemented yet. ]
+ * xz command line tool has almost identical syntax than gzip
+ and bzip2. It makes LZMA easy for average users, but also
+ provides advanced options to finetune the compression settings.
+ * A few shell scripts make diffing and grepping LZMA compressed
+ files easy. The scripts were adapted from gzip and bzip2.
diff -r 7a4260569a73 -r 52e6aebc1817 archivers/xz-utils/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/xz-utils/Makefile Mon Jun 08 14:01:18 2009 +0000
@@ -0,0 +1,23 @@
+# $NetBSD: Makefile,v 1.1.1.1 2009/06/08 14:01:18 wiz Exp $
+#
+
+DISTNAME= xz-4.999.8beta
+CATEGORIES= archivers
+MASTER_SITES= http://tukaani.org/xz/
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= http://tukaani.org/xz/
+COMMENT= XZ utilities
+#LICENSE= public-domain AND gnu-gpl-v2 AND gnu-lgpl-v2.1
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+GNU_CONFIGURE= yes
+USE_LIBTOOL= yes
+PKGCONFIG_OVERRIDE= src/liblzma/liblzma.pc.in
+
+CONFLICTS= lzma-utils-[0-9]*
+
+.include "../../devel/gettext-lib/buildlink3.mk"
+.include "../../mk/pthread.buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 7a4260569a73 -r 52e6aebc1817 archivers/xz-utils/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/xz-utils/PLIST Mon Jun 08 14:01:18 2009 +0000
@@ -0,0 +1,41 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2009/06/08 14:01:18 wiz Exp $
+bin/lzcat
+bin/lzcmp
+bin/lzdiff
+bin/lzegrep
+bin/lzfgrep
+bin/lzgrep
+bin/lzless
+bin/lzma
+bin/lzmadec
+bin/lzmore
+bin/unlzma
+bin/unxz
+bin/xz
+bin/xzcat
+bin/xzdec
+include/lzma.h
+include/lzma/base.h
+include/lzma/bcj.h
+include/lzma/block.h
+include/lzma/check.h
+include/lzma/container.h
+include/lzma/delta.h
+include/lzma/filter.h
+include/lzma/index.h
+include/lzma/index_hash.h
+include/lzma/lzma.h
+include/lzma/stream_flags.h
+include/lzma/subblock.h
+include/lzma/version.h
+include/lzma/vli.h
+lib/liblzma.la
+lib/pkgconfig/liblzma.pc
+man/man1/lzcmp.1
+man/man1/lzdiff.1
+man/man1/lzegrep.1
+man/man1/lzfgrep.1
+man/man1/lzgrep.1
+man/man1/lzless.1
+man/man1/lzmore.1
+@dirrm include/lzma
diff -r 7a4260569a73 -r 52e6aebc1817 archivers/xz-utils/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/xz-utils/distinfo Mon Jun 08 14:01:18 2009 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2009/06/08 14:01:18 wiz Exp $
+
+SHA1 (xz-4.999.8beta.tar.gz) = d282518518488c37ec268401e1b8247749279c44
+RMD160 (xz-4.999.8beta.tar.gz) = 41303aed49cfb976da54d7e3e88210b4eeaebbbd
+Size (xz-4.999.8beta.tar.gz) = 879382 bytes
Home |
Main Index |
Thread Index |
Old Index