pkgsrc-WIP-changes archive

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

wip/libsnappy: remove (mechanical cleanup)



Module Name:	pkgsrc-wip
Committed By:	Tobias Nygren <tnn%NetBSD.org@localhost>
Pushed By:	tnn
Date:		Wed Sep 23 05:13:52 2015 +0200
Changeset:	aec4bf8d99b53df26a45751b2854bb23825df4b7

Removed Files:
	libsnappy/DESCR
	libsnappy/Makefile
	libsnappy/PLIST
	libsnappy/distinfo
	libsnappy/patches/patch-aa

Log Message:
wip/libsnappy: remove (mechanical cleanup)

- pkgsrc/devel/snappy exists
- pkgsrc (1.1.1) >= wip (1.0.1)
- doc/CHANGES-2012: Updated to 1.0.5 [abs 2012-03-14]
- doc/CHANGES-2013: Updated to 1.1.1 [mspo 2013-11-16]
- wip/libsnappy last touched [rodent 2012-11-13]
- package does not appear to be actively used to stage updates
- manual inspection of diff revealed no uncommitted improvements

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=aec4bf8d99b53df26a45751b2854bb23825df4b7

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 libsnappy/DESCR            | 17 -----------------
 libsnappy/Makefile         | 21 ---------------------
 libsnappy/PLIST            | 10 ----------
 libsnappy/distinfo         |  6 ------
 libsnappy/patches/patch-aa | 22 ----------------------
 5 files changed, 76 deletions(-)

diffs:
diff --git a/libsnappy/DESCR b/libsnappy/DESCR
deleted file mode 100644
index bb091ce..0000000
--- a/libsnappy/DESCR
+++ /dev/null
@@ -1,17 +0,0 @@
-Snappy is a compression/decompression library. It does not aim for
-maximum compression, or compatibility with any other compression
-library; instead, it aims for very high speeds and reasonable
-compression. For instance, compared to the fastest mode of zlib,
-Snappy is an order of magnitude faster for most inputs, but the
-resulting compressed files are anywhere from 20% to 100% bigger.
-On a single core of a Core i7 processor in 64-bit mode, Snappy
-compresses at about 250 MB/sec or more and decompresses at about
-500 MB/sec or more.
-
-Snappy is widely used inside Google, in everything from BigTable
-and MapReduce to our internal RPC systems. (Snappy has previously
-been referred to as "Zippy" in some presentations and the likes.)
-
-For more information, please see the README. Benchmarks against a
-few other compression libraries (zlib, LZO, LZF, FastLZ, and QuickLZ)
-are included in the source code distribution.
diff --git a/libsnappy/Makefile b/libsnappy/Makefile
deleted file mode 100644
index 50c4613..0000000
--- a/libsnappy/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-# $NetBSD: Makefile,v 1.6 2012/11/13 22:25:38 othyro Exp $
-#
-http://snappy.googlecode.com/files/snappy-1.0.0.tar.gz
-
-DISTNAME=	snappy-1.0.1
-CATEGORIES=	devel
-# MASTER_SITES=	http://code.google.com/p/snappy/downloads/detail?name=
-MASTER_SITES=	http://snappy.googlecode.com/files/
-
-MAINTAINER=	bch%methodlogic.net@localhost
-HOMEPAGE=	http://code.google.com/p/snappy/downloads/
-COMMENT=	Compression/decompression library
-LICENSE=	modified-bsd
-
-GNU_CONFIGURE=	yes
-USE_LIBTOOL=	yes
-CPPFLAGS+=	-DLZF_STATE_ARG="0"
-USE_LANGUAGES+=	c++ c
-
-# url2pkg-marker (please do not remove this line.)
-.include "../../mk/bsd.pkg.mk"
diff --git a/libsnappy/PLIST b/libsnappy/PLIST
deleted file mode 100644
index 50ec35a..0000000
--- a/libsnappy/PLIST
+++ /dev/null
@@ -1,10 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1 2011/03/23 04:31:29 bharder Exp $
-include/snappy-sinksource.h
-include/snappy-stubs-public.h
-include/snappy.h
-lib/libsnappy.la
-share/doc/snappy/COPYING
-share/doc/snappy/ChangeLog
-share/doc/snappy/INSTALL
-share/doc/snappy/NEWS
-share/doc/snappy/README
diff --git a/libsnappy/distinfo b/libsnappy/distinfo
deleted file mode 100644
index 10f8543..0000000
--- a/libsnappy/distinfo
+++ /dev/null
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.4 2011/03/29 06:22:28 bharder Exp $
-
-SHA1 (snappy-1.0.1.tar.gz) = 25fbae93cd4b7794e4a3705f0c5cb7ef3b9e32de
-RMD160 (snappy-1.0.1.tar.gz) = b5028ee1932456575ff025f644ebd8ee3518696a
-Size (snappy-1.0.1.tar.gz) = 1713964 bytes
-SHA1 (patch-aa) = 3e9a9a1ff2f6d8239a51335e27d24d33b423d552
diff --git a/libsnappy/patches/patch-aa b/libsnappy/patches/patch-aa
deleted file mode 100644
index ef3110b..0000000
--- a/libsnappy/patches/patch-aa
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2011/03/29 06:22:28 bharder Exp $
-
---- ./snappy_unittest.cc.orig	2011-03-24 23:20:16.000000000 +0000
-+++ ./snappy_unittest.cc
-@@ -154,10 +154,17 @@ static bool Compress(const char* input, 
- #ifdef LZF_VERSION
-     case LIBLZF: {
-       compressed->resize(input_size - 1);
-+#ifdef __NetBSD__
-+      int destlen = lzf_compress(input,
-+                                 input_size,
-+                                 string_as_array(compressed),
-+                                 input_size - 1, NULL);
-+#else
-       int destlen = lzf_compress(input,
-                                  input_size,
-                                  string_as_array(compressed),
-                                  input_size - 1);
-+#endif
-       if (destlen == 0) {
-         // lzf *can* cause lots of blowup when compressing, so they
-         // recommend to limit outsize to insize, and just not compress


Home | Main Index | Thread Index | Old Index