Subject | Hash | Author | Date (UTC) |
---|---|---|---|
gnu: jasper: Update to 2.0.22. | bf476ea16a0e7f1cb1fbad4ae1e355cb9d9707bb | Tobias Geerinckx-Rice | 2020-10-13 20:24:24 |
gnu: python-pastedeploy: Update to 2.1.1. | cf4fafc46768eee2bef9758971d5c230c0eac029 | Tobias Geerinckx-Rice | 2020-10-13 20:13:04 |
gnu: oil: Update to 0.8.2. | d3d1aec2ac742682cebf1c416afd9f6a889cc879 | Tobias Geerinckx-Rice | 2020-10-14 10:52:41 |
gnu: osinfo-db: Update to 20201011. | 79145ab4f2599d28a99ae2ff6527ea64c8e8b4e4 | Tobias Geerinckx-Rice | 2020-10-14 10:43:38 |
gnu: plantuml: Update to 1.2020.19. | 2d0bea9c6d98a0dec99218935239dca8b676b86f | Tobias Geerinckx-Rice | 2020-10-14 10:43:16 |
gnu: vim: Update to 8.2.1844. | 9112ec6b72340b40fcf3bf6d6ed9e5e672732ba5 | Tobias Geerinckx-Rice | 2020-10-14 10:42:40 |
gnu: python-pgpy: Run the tests. | ed0e8c7cc92df8deec15edd097c03a82cdc2e58b | Tobias Geerinckx-Rice | 2020-10-14 12:56:40 |
gnu: python-pgpy: Update to 0.5.3. | 642647ae9305c701b2191a4cbcf28ce583da7d1d | Tobias Geerinckx-Rice | 2020-10-14 12:54:21 |
gnu: gphoto2: Update to 2.5.26. | 81f3adb4d192cc75eca465bc95883fff1f46e1a6 | Tobias Geerinckx-Rice | 2020-10-14 12:32:29 |
gnu: libgphoto2: Update to 2.5.26. | ce7548e69112f67580f529ad78d4a053ed133b63 | Tobias Geerinckx-Rice | 2020-10-14 12:30:44 |
gnu: python-aiohttp: Update to 3.6.3. | 3e0b02203036f41659d231fca24712ea67557103 | Tobias Geerinckx-Rice | 2020-10-14 12:24:14 |
gnu: python-passlib: Update to 1.7.4. | 2a30ca09291a28df4e45c7240fa603c8e505d87d | Tobias Geerinckx-Rice | 2020-10-14 13:23:13 |
gnu: perl-crypt-rijndael: Update to 1.15. | fdfd0549ad8c81c89f8cd20b126fa435f5cdf0c4 | Tobias Geerinckx-Rice | 2020-10-14 13:08:49 |
gnu: icedove: Update to 78.3.2. | 3c1b0b92d1641616f4cb404740447b9565569e0b | Jonathan Brielmaier | 2020-10-10 09:38:21 |
doc: cookbook: Mention "#true" and "#false". | cd958802f20e07967d2245039ebadd5911c47333 | Ludovic Courtès | 2020-10-14 09:28:30 |
gnu: Add emacs-gcmh. | 028119e9f5a0b31fe27334eb5de582d42d3ffd5d | Niklas Eklund | 2020-09-30 13:34:36 |
image: Use 'raise' from (srfi srfi-34). | 281869e6f8d5b7ea6300c5b93acb324a6011585e | Ludovic Courtès | 2020-10-14 09:07:40 |
hurd-boot: Set /hurd/magic on /dev/fd. | 57a7aa1ae3ef67c6e8becca766adfb4b4c8f59ac | Ludovic Courtès | 2020-10-14 09:06:55 |
doc: Mention "i586-gnu" as supported and experimental. | d96e739f08f13cc1981f9367bbda1eba3c567f5f | Ludovic Courtès | 2020-10-14 08:57:06 |
doc: Avoid orphan node. | 4b0a1543e1f67828c09be4a75d1155227bf526ac | Ludovic Courtès | 2020-10-14 08:53:00 |
File | Lines added | Lines deleted |
---|---|---|
gnu/packages/image.scm | 4 | 15 |
File gnu/packages/image.scm changed (mode: 100644) (index ae0f831082..5f8711c869) | |||
... | ... | convert, manipulate, filter and display a wide variety of image formats.") | |
1409 | 1409 | (define-public jasper | (define-public jasper |
1410 | 1410 | (package | (package |
1411 | 1411 | (name "jasper") | (name "jasper") |
1412 | (version "2.0.21") | ||
1412 | (version "2.0.22") | ||
1413 | 1413 | (source (origin | (source (origin |
1414 | 1414 | (method git-fetch) | (method git-fetch) |
1415 | 1415 | (uri (git-reference | (uri (git-reference |
... | ... | convert, manipulate, filter and display a wide variety of image formats.") | |
1418 | 1418 | (file-name (git-file-name name version)) | (file-name (git-file-name name version)) |
1419 | 1419 | (sha256 | (sha256 |
1420 | 1420 | (base32 | (base32 |
1421 | "0p3qr4j4pjs5vn5amm6ih9hb4wmm72marhmfw08svcs4rrr88p9y")))) | ||
1421 | "1qw96mwwd9xw21jg5s7njqgbam566skj93i81aflijy40s31dfwz")))) | ||
1422 | 1422 | (build-system cmake-build-system) | (build-system cmake-build-system) |
1423 | (arguments | ||
1424 | `(#:phases | ||
1425 | (modify-phases %standard-phases | ||
1426 | (add-after 'unpack 'disable-checking-disabled-things | ||
1427 | (lambda _ | ||
1428 | ;; The MIF codec was disabled for security reasons in JasPer 2.0.20 | ||
1429 | ;; but its test suite still assumes that the format is supported. | ||
1430 | (for-each delete-file | ||
1431 | (find-files "data/test" "\\.mif$")) ; for run_test_1 | ||
1432 | (substitute* "test/bin/run_test_2" | ||
1433 | (("image_formats\\+=\\(mif\\)") "")) | ||
1434 | #t))))) | ||
1435 | (inputs `(("libjpeg" ,libjpeg-turbo))) | ||
1423 | (inputs | ||
1424 | `(("libjpeg" ,libjpeg-turbo))) | ||
1436 | 1425 | (synopsis "JPEG-2000 library") | (synopsis "JPEG-2000 library") |
1437 | 1426 | (description "The JasPer Project is an initiative to provide a reference | (description "The JasPer Project is an initiative to provide a reference |
1438 | 1427 | implementation of the codec specified in the JPEG-2000 Part-1 standard (i.e., | implementation of the codec specified in the JPEG-2000 Part-1 standard (i.e., |