From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39971) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gaO1r-0000oR-Q5 for guix-patches@gnu.org; Fri, 21 Dec 2018 11:52:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gaO1q-0006i6-Rb for guix-patches@gnu.org; Fri, 21 Dec 2018 11:52:03 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54470) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gaO1q-0006hw-N2 for guix-patches@gnu.org; Fri, 21 Dec 2018 11:52:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gaO1q-0000OB-Jp for guix-patches@gnu.org; Fri, 21 Dec 2018 11:52:02 -0500 Subject: [bug#33770] [PATCH] gnu: Add vips. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: Date: Fri, 21 Dec 2018 17:50:49 +0100 In-Reply-To: (L. p. R. n. d. n.'s message of "Sun, 16 Dec 2018 15:31:44 +0100") Message-ID: <87tvj6omc6.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: L p R n d n Cc: 33770@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello! L p R n d n skribis: >>>From d5d6b66818b47f3ea87e13bf0236294b91f942fb Mon Sep 17 00:00:00 2001 > From: Lprndn > Date: Wed, 5 Dec 2018 18:59:34 +0100 > Subject: [PATCH] gnu: Add vips. > > * gnu/packages/image-processing.scm (vips): New variable. Applied with these minor changes. Please let me know if anything is amiss! Regarding package synopses and descriptions, please see . Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-process= ing.scm index df0099c7df..03080d5fde 100644 --- a/gnu/packages/image-processing.scm +++ b/gnu/packages/image-processing.scm @@ -6,6 +6,7 @@ ;;; Copyright =C2=A9 2016 Eric Bavier ;;; Copyright =C2=A9 2018 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2018 Bj=C3=B6rn H=C3=B6fling +;;; Copyright =C2=A9 2018 Lprndn ;;; ;;; This file is part of GNU Guix. ;;; @@ -440,6 +441,16 @@ vision algorithms. It can be used to do things like: ("expat" ,expat) ("hdf5" ,hdf5))) (home-page "https://libvips.github.io/libvips/") - (synopsis "A free image processing system") - (description "vips is a demand-driven, horizontally threaded image pro= cessing library") + (synopsis "Image processing library") + (description + "libvips is a demand-driven, horizontally threaded image processing +library for C and comes with a command-line interface. It has around 300 +operations covering arithmetic, histograms, convolution, morphological +operations, frequency filtering, colour, resampling, statistics and others. +It supports a large range of numeric formats, from 8-bit int to 128-bit +complex. Images can have any number of bands. It supports a good range of +image formats, including JPEG, TIFF, PNG, WebP, FITS, Matlab, OpenEXR, PDF, +SVG, HDR, PPM, CSV, GIF, Analyze, NIfTI, DeepZoom, and OpenSlide. It can = also +load images via ImageMagick or GraphicsMagick, letting it load formats like +DICOM. libvips runs quickly and uses little memory.") (license license:lgpl2.1+))) --=-=-=--