gnu: Update stb to b42009b3b9d4ca35bc703f5310eedc74f584be58.

* gnu/packages/stb.scm (stb): Update to commit b42009b3b9d4ca35bc703f5310eedc74f584be58..
(stb-image): Update version number to 2.26.
(stb-image-write): Update version number to 1.15.
(stb-sprintf): Update version number to 1.09.
(stb-truetype): Update version number to 1.24.
This commit is contained in:
Tobias Geerinckx-Rice 2020-11-14 20:46:49 +01:00
parent 6f5f60b289
commit 0e8df7403e
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -27,8 +27,8 @@ (define-module (gnu packages stb)
(define stb (define stb
;; stb is a collection of libraries developed within the same repository. ;; stb is a collection of libraries developed within the same repository.
;; When updating this, remember to change versions below as appropriate. ;; When updating this, remember to change versions below as appropriate.
(let ((commit "2c2908f50515dcd939f24be261c3ccbcd277bb49") (let ((commit "b42009b3b9d4ca35bc703f5310eedc74f584be58")
(revision "1")) (revision "2"))
(package (package
(name "stb") (name "stb")
(home-page "https://github.com/nothings/stb") (home-page "https://github.com/nothings/stb")
@ -40,7 +40,7 @@ (define stb
(commit commit))) (commit commit)))
(sha256 (sha256
(base32 (base32
"1z753rscqc4clp0rd57bw68i60kz694y1z52bwv6slzmkgds1cki")) "1gmcjhmj62mfdscrsg2hv4j4j9v447y8zj3rbrm7mqn94cx73z1i"))
(file-name (git-file-name name version)))) (file-name (git-file-name name version))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
@ -93,13 +93,13 @@ (define (make-stb-header-package name version description)
;; converted to macros as outlined in <https://bugs.gnu.org/32155>. ;; converted to macros as outlined in <https://bugs.gnu.org/32155>.
(define-public stb-image (define-public stb-image
(make-stb-header-package (make-stb-header-package
"stb-image" "2.22" "stb-image" "2.26"
"stb-image is a small and self-contained library for image loading or "stb-image is a small and self-contained library for image loading or
decoding from file or memory. A variety of formats are supported.")) decoding from file or memory. A variety of formats are supported."))
(define-public stb-image-write (define-public stb-image-write
(make-stb-header-package (make-stb-header-package
"stb-image-write" "1.13" "stb-image-write" "1.15"
"stb-image-write is a small library for writing image files to the "stb-image-write is a small library for writing image files to the
C@tie{}@code{stdio} interface.")) C@tie{}@code{stdio} interface."))
@ -111,11 +111,11 @@ (define-public stb-rect-pack
(define-public stb-sprintf (define-public stb-sprintf
(make-stb-header-package (make-stb-header-package
"stb-sprintf" "1.06" "stb-sprintf" "1.09"
"stb-sprintf implements fast @code{sprintf}, @code{snprintf} for C/C++.")) "stb-sprintf implements fast @code{sprintf}, @code{snprintf} for C/C++."))
(define-public stb-truetype (define-public stb-truetype
(make-stb-header-package (make-stb-header-package
"stb-truetype" "1.22" "stb-truetype" "1.24"
"stb-truetype is a library for parsing, decoding, and rasterizing "stb-truetype is a library for parsing, decoding, and rasterizing
characters from TrueType fonts.")) characters from TrueType fonts."))