summaryrefslogtreecommitdiff
path: root/sys-libs
diff options
context:
space:
mode:
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/libslz/Manifest3
-rw-r--r--sys-libs/libslz/libslz-1.0.0.ebuild34
-rw-r--r--sys-libs/libslz/metadata.xml13
3 files changed, 0 insertions, 50 deletions
diff --git a/sys-libs/libslz/Manifest b/sys-libs/libslz/Manifest
deleted file mode 100644
index ca6a9171..00000000
--- a/sys-libs/libslz/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST v1.0.0.tar.gz 146155 SHA256 4696da81bc4ac5ec5bbc36a62c168bdca4d35f4fbe63da76b2d9cf54be857a45 WHIRLPOOL d54b53f281e88e7c8fd4b39ef86b5b3d5d6a9d3073ea58fccbc8dedf6f70f7504703c52e54059a3832f07e1aaf33fa243b29f5f6bf81118923892de0819572fd
-EBUILD libslz-1.0.0.ebuild 638 SHA256 0d68c767238e12d132dedd7845f26af23a7d35e337c5c37c550ee4db0c405148 WHIRLPOOL 8627df6903e3c6642b6629c3bd56bb559154eadccdbd4ed07f5935da24df9a58184dcdc2aa338306530f55d9a65b0b26c8a6a465a8cf9524294c3fc6b85afc41
-MISC metadata.xml 985 SHA256 3cd6e6e0e8c410b0a3416b63ad6c850c8ab222c341a017f3a653ee89cfce35a9 WHIRLPOOL 50e9bfb9396813849a6d90b166c075d2c04491cded028411763c854465aa16fffcd470587056083355421cb0912ec8167c074c9eef3cf3ecaff6707ce45a5c8e
diff --git a/sys-libs/libslz/libslz-1.0.0.ebuild b/sys-libs/libslz/libslz-1.0.0.ebuild
deleted file mode 100644
index edb2e59b..00000000
--- a/sys-libs/libslz/libslz-1.0.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-inherit toolchain-funcs
-
-DESCRIPTION="stateless, zlib-compatible, and very fast compression library"
-HOMEPAGE="http://1wt.eu/projects/libslz"
-SRC_URI="https://github.com/haproxy/${PN}/archive/v${PV}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_compile() {
- emake \
- CC="$(tc-getCC)" \
- OPT_CFLAGS="${CFLAGS}" \
- USR_LFLAGS="${LDFLAGS}"
-}
-
-src_install() {
- emake install \
- STRIP=":" \
- DESTDIR="${ED}" \
- PREFIX="${EPREFIX}/usr"
-
- einstalldocs
-}
diff --git a/sys-libs/libslz/metadata.xml b/sys-libs/libslz/metadata.xml
deleted file mode 100644
index 0abdef74..00000000
--- a/sys-libs/libslz/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>bertrand@jacquin.bzh</email>
- <name>Bertrand Jacquin</name>
- </maintainer>
- <longdescription>
-SLZ is a fast and memory-less stream compressor which produces an output that can be decompressed with zlib or gzip. It does not implement decompression at all, zlib is perfectly fine for this.
-
-The purpose is to use SLZ in situations where a zlib-compatible stream is needed and zlib's resource usage would be too high while the compression ratio is not critical. The typical use case is in HTTP servers and gateways which have to compress many streams in parallel with little CPU resources to assign to this task, and without having to thottle the compression ratio due to the memory usage. In such an environment, the server's memory usage can easily be divided by 10 and the CPU usage by 3
- </longdescription>
-</pkgmetadata>