verify checksums

This commit is contained in:
2026-02-14 14:00:07 +01:00
parent 03d20665b4
commit b4564fa5bb
16 changed files with 206 additions and 21 deletions

11
packages/emacs.shrap Normal file
View File

@@ -0,0 +1,11 @@
(package
(name "emacs")
(version "30.2")
(homepage "https://www.gnu.org/software/emacs/")
(dependencies "libncurses" "libgnutls")
(src (tar
(url "https://mirror.netcologne.de/gnu/emacs/emacs-30.2.tar.gz")
(dir "emacs-30.2")
(blake3 "31dab4d0c43d7494eb347787147a0572d470767e8b066625d9e99c43fc970d47")))
(build
(configure_make)))

10
packages/libffi.shrap Normal file
View File

@@ -0,0 +1,10 @@
(package
(name "libffi")
(version "3.4.5")
(homepage "https://sourceware.org/libffi/")
(src (tar
(url "https://github.com/libffi/libffi/releases/download/v3.4.5/libffi-3.4.5.tar.gz")
(dir "libffi-3.4.5")
(blake3 "f9a2cfe1d2ac8d211c18c99f9cfafe5537925101bfb92c2d44d844680dd82264")))
(build
(configure_make)))

11
packages/libgmp.shrap Normal file
View File

@@ -0,0 +1,11 @@
(package
(name "libgmp")
(version "6.3.0")
(homepage "https://gmplib.org/")
(dependencies "xz" "m4")
(src (tar
(url "https://gmplib.org/download/gmp/gmp-6.3.0.tar.xz")
(dir "gmp-6.3.0")
(blake3 "fffe4996713928ae19331c8ef39129e46d3bf5b7182820656fd4639435cd83a4")))
(build
(configure_make)))

12
packages/libgnutls.shrap Normal file
View File

@@ -0,0 +1,12 @@
(package
(name "libgnutls")
(version "3.8.12")
(homepage "https://gnutls.org/")
(dependencies "xz" "pkg-config" "libnettle" "libp11-kit")
(src (tar
(url "https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/gnutls-3.8.12.tar.xz")
(dir "gnutls-3.8.12")
(blake3 "d60d32619210c02b3b280a79e32c8323a7fd556ae77e1b461d69744bc93f05d5")))
(build
(configure_make
(configure_flags "--with-included-libtasn1 --with-included-unistring --disable-doc --disable-tests --disable-tools"))))

View File

@@ -1,11 +1,11 @@
(package
(name "ncurses")
(name "libncurses")
(version "6.6")
(homepage "https://invisible-island.net/ncurses/")
(src (tar
(url "https://invisible-mirror.net/archives/ncurses/ncurses-6.6.tar.gz")
(dir "ncurses-6.6")
(blake3 "")))
(blake3 "fbec55697a01f99b9cc3f25be55e73ae7091f4c53e5d81a1ea15734c4e5b7238")))
(build
(configure_make
(configure_flags "--disable-widec --without-tests --without-progs --without-manpages"))))

12
packages/libnettle.shrap Normal file
View File

@@ -0,0 +1,12 @@
(package
(name "libnettle")
(version "3.10")
(homepage "https://www.lysator.liu.se/~nisse/nettle/")
(dependencies "libgmp")
(src (tar
(url "https://ftp.gnu.org/gnu/nettle/nettle-3.10.tar.gz")
(dir "nettle-3.10")
(blake3 "c2b37a2c9500b6eea1b186ccd525c7c7f82abb2039bd0ff6ba1c0232329832d0")))
(build
(configure_make
(configure_flags "--libdir=/usr/lib"))))

12
packages/libp11-kit.shrap Normal file
View File

@@ -0,0 +1,12 @@
(package
(name "libp11-kit")
(version "0.26.2")
(homepage "https://p11-glue.github.io/p11-glue/p11-kit.html")
(dependencies "xz" "libffi")
(src (tar
(url "https://github.com/p11-glue/p11-kit/releases/download/0.26.2/p11-kit-0.26.2.tar.xz")
(dir "p11-kit-0.26.2")
(blake3 "93de717427982d3904905b0ea2997345c06dd35456c281ef3aa7bae2fd9242ed")))
(build
(configure_make
(configure_flags "--without-libtasn1"))))

10
packages/m4.shrap Normal file
View File

@@ -0,0 +1,10 @@
(package
(name "m4")
(version "1.4.21")
(homepage "https://www.gnu.org/software/m4/")
(src (tar
(url "https://ftp.gnu.org/gnu/m4/m4-1.4.21.tar.gz")
(dir "m4-1.4.21")
(blake3 "9dcdc6d7bcdd49d6d10431cca2e8f763012741b187fbaef4eff43bae12a51063")))
(build
(configure_make)))

11
packages/pkg-config.shrap Normal file
View File

@@ -0,0 +1,11 @@
(package
(name "pkg-config")
(version "0.29")
(homepage "www.freedesktop.org/wiki/Software/pkg-config/")
(src (tar
(url "https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.tar.gz")
(dir "pkg-config-0.29")
(blake3 "16d375630d2b8f41086e9d00cd207ec9e2a74d7bfc57510ea088071840522f06")))
(build
(configure_make
(configure_flags "CFLAGS=-Wno-format-nonliteral --with-internal-glib"))))

View File

@@ -6,6 +6,6 @@
(src (tar
(url "https://github.com/vim/vim/archive/refs/tags/v9.1.2148.tar.gz")
(dir "vim-9.1.2148")
(blake3 "")))
(blake3 "1bc0bbf9da0fa156df66aeb716cfa1310101bdb0cca9aa60f241351fc8d13d8e")))
(build
(configure_make)))

11
packages/xz.shrap Normal file
View File

@@ -0,0 +1,11 @@
(package
(name "xz")
(version "5.8.2")
(homepage "https://tukaani.org/xz/")
(src (tar
(url "https://github.com/tukaani-project/xz/releases/download/v5.8.2/xz-5.8.2.tar.gz")
(dir "xz-5.8.2")
(blake3 "e63d8cbda1ba9e21d36c951a6c67a81cadadfdf4e9a1895c1f278265e8d6f8ad")))
(build
(configure_make
(configure_flags "--disable-shared --disable-doc --disable-nls"))))