unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#32617] [PATCH] gnu: libjpeg: Update description.
@ 2018-09-02 21:54 Maxim Cournoyer
  2018-09-04 13:09 ` Ludovic Courtès
  2018-09-15  2:50 ` bug#32617: " 宋文武
  0 siblings, 2 replies; 5+ messages in thread
From: Maxim Cournoyer @ 2018-09-02 21:54 UTC (permalink / raw)
  To: 32617

[-- Attachment #1: Type: text/plain, Size: 123 bytes --]

Hello,

This should help people like me that failed finding which of our package
provided `jpegtran' :)

Thank you,

Maxim

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-libjpeg-Update-description.patch --]
[-- Type: text/x-patch, Size: 1320 bytes --]

From 188244b597f7f351cdefe0f50f67b463ceab847f Mon Sep 17 00:00:00 2001
From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Date: Sun, 2 Sep 2018 17:49:51 -0400
Subject: [PATCH] gnu: libjpeg: Update description.

* gnu/packages/image.scm (libjpeg): Add the list of the programs it provides.
---
 gnu/packages/image.scm | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 81d22ed42..c49bf4bf9 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -266,8 +266,16 @@ files.  It can compress them as much as 40% losslessly.")
     "Libjpeg implements JPEG image encoding, decoding, and transcoding.
 JPEG is a standardized compression method for full-color and gray-scale
 images.
-The included programs provide conversion between the JPEG format and
-image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats.")
+It also includes programs that provide conversion between the JPEG format and
+image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats, as well as
+lossless JPEG manipulations such as rotation, scaling or cropping:
+@enumerate
+@item cjpeg
+@item djpeg
+@item jpegtran
+@item rdjpgcom
+@item wrjpgcom
+@end enumerate")
    (license license:ijg)
    (home-page "http://www.ijg.org/")))
 
-- 
2.18.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#32617] [PATCH] gnu: libjpeg: Update description.
  2018-09-02 21:54 [bug#32617] [PATCH] gnu: libjpeg: Update description Maxim Cournoyer
@ 2018-09-04 13:09 ` Ludovic Courtès
  2018-09-05  0:54   ` Maxim Cournoyer
  2018-09-15  2:50 ` bug#32617: " 宋文武
  1 sibling, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2018-09-04 13:09 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 32617

Hello!

Maxim Cournoyer <maxim.cournoyer@gmail.com> skribis:

> This should help people like me that failed finding which of our package
> provided `jpegtran' :)

Heheh.  :-)

>>From 188244b597f7f351cdefe0f50f67b463ceab847f Mon Sep 17 00:00:00 2001
> From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
> Date: Sun, 2 Sep 2018 17:49:51 -0400
> Subject: [PATCH] gnu: libjpeg: Update description.
>
> * gnu/packages/image.scm (libjpeg): Add the list of the programs it provides.

[...]

> +@item cjpeg
> +@item djpeg
> +@item jpegtran
> +@item rdjpgcom
> +@item wrjpgcom

Nitpicking: maybe write:

  @item @command{cjpeg};
  …
  @item @command{wrjpgcom}.

Otherwise LGTM!

Ludo’.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#32617] [PATCH] gnu: libjpeg: Update description.
  2018-09-04 13:09 ` Ludovic Courtès
@ 2018-09-05  0:54   ` Maxim Cournoyer
  2018-09-05 10:23     ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Maxim Cournoyer @ 2018-09-05  0:54 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 32617

Hi Ludovic!

ludo@gnu.org (Ludovic Courtès) writes:

[...]

>> +@item cjpeg
>> +@item djpeg
>> +@item jpegtran
>> +@item rdjpgcom
>> +@item wrjpgcom
>
> Nitpicking: maybe write:
>
>   @item @command{cjpeg};
>   …
>   @item @command{wrjpgcom}.

I tried this originally, but our linter gently reminded me this was not
supported by our texinfo parser ;).

Thanks for reviewing!

Maxim

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#32617] [PATCH] gnu: libjpeg: Update description.
  2018-09-05  0:54   ` Maxim Cournoyer
@ 2018-09-05 10:23     ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2018-09-05 10:23 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 32617

Maxim Cournoyer <maxim.cournoyer@gmail.com> skribis:

> ludo@gnu.org (Ludovic Courtès) writes:
>
> [...]
>
>>> +@item cjpeg
>>> +@item djpeg
>>> +@item jpegtran
>>> +@item rdjpgcom
>>> +@item wrjpgcom
>>
>> Nitpicking: maybe write:
>>
>>   @item @command{cjpeg};
>>   …
>>   @item @command{wrjpgcom}.
>
> I tried this originally, but our linter gently reminded me this was not
> supported by our texinfo parser ;).

Oh, I had not noticed that.

Thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#32617: [PATCH] gnu: libjpeg: Update description.
  2018-09-02 21:54 [bug#32617] [PATCH] gnu: libjpeg: Update description Maxim Cournoyer
  2018-09-04 13:09 ` Ludovic Courtès
@ 2018-09-15  2:50 ` 宋文武
  1 sibling, 0 replies; 5+ messages in thread
From: 宋文武 @ 2018-09-15  2:50 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 32617-done

Maxim Cournoyer <maxim.cournoyer@gmail.com> writes:

> Hello,
>
> This should help people like me that failed finding which of our package
> provided `jpegtran' :)
>

Pushed, thank you!

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-09-15  2:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-02 21:54 [bug#32617] [PATCH] gnu: libjpeg: Update description Maxim Cournoyer
2018-09-04 13:09 ` Ludovic Courtès
2018-09-05  0:54   ` Maxim Cournoyer
2018-09-05 10:23     ` Ludovic Courtès
2018-09-15  2:50 ` bug#32617: " 宋文武

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).