From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: [PATCH 07/24] gnu: compression: Add snappy. Date: Wed, 17 Aug 2016 22:02:22 +0300 Message-ID: <87h9ajqkw1.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56010) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ba66d-0002SL-Ls for guix-devel@gnu.org; Wed, 17 Aug 2016 15:02:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ba66Y-000126-DB for guix-devel@gnu.org; Wed, 17 Aug 2016 15:02:26 -0400 Received: from mail-wm0-x235.google.com ([2a00:1450:400c:c09::235]:35654) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ba66Y-00011g-7A for guix-devel@gnu.org; Wed, 17 Aug 2016 15:02:22 -0400 Received: by mail-wm0-x235.google.com with SMTP id f65so211823591wmi.0 for ; Wed, 17 Aug 2016 12:02:22 -0700 (PDT) In-Reply-To: (David Craven's message of "Wed, 17 Aug 2016 10:30:14 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: David Craven Cc: guix-devel David Craven (2016-08-17 11:30 +0300) wrote: >> Also there is a real release that shouldn't require autoreconf phase: >> >> Did you try using it? > > Just did, and requires running autoreconf too... I don't believe you :-) I've just tried, and autoreconf is not needed for this tarball: (define-public snappy (package (name "snappy") (version "1.1.3") (source (origin (method url-fetch) (uri (string-append "https://github.com/google/snappy/releases/download/" version "/" name "-" version ".tar.gz")) (sha256 (base32 "1wzf8yif5ym2gj52db6v5m1pxnmn258i38x7llk9x346y2nq47ig")))) (build-system gnu-build-system) (home-page "https://github.com/google/snappy") (synopsis "Fast compressor/decompressor") (description "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.") (license license:asl2.0))) -- Alex