openafs: 1.8.12 → 1.8.13 (#354660)

authored by

Leona Maroni and committed by
GitHub
651e727c 3013234a

+4 -30
+1 -27
pkgs/servers/openafs/1.8/module.nix
··· 30 30 version = "${version}-${kernel.modDirVersion}"; 31 31 inherit src; 32 32 33 - patches = [ 34 - # Linux-6.10: Use filemap_alloc_folio when avail 35 - (fetchpatch { 36 - url = "https://github.com/openafs/openafs/commit/0f6a3a402f4a66114da9231032bd68cdc4dee7bc.patch"; 37 - hash = "sha256-1D0mijyF4hbd+xCONT50cd6T9eCpeM8Li3nCI7HgLPA="; 38 - }) 39 - # Linux-6.10: define a wrapper for vmalloc 40 - (fetchpatch { 41 - url = "https://github.com/openafs/openafs/commit/658942f2791fad5e33ec7542158c16dfc66eed39.patch"; 42 - hash = "sha256-MhfAUX/eNOEkjO0cGVbnIdObMlGtLdCnnGfJECDwO+A="; 43 - }) 44 - # Linux-6.10: remove includes for asm/ia32_unistd.h 45 - (fetchpatch { 46 - url = "https://github.com/openafs/openafs/commit/03b280649f5e22ed74c217d7c98c3416a2fa9052.patch"; 47 - hash = "sha256-ZdXz2ziuflqz7zNzjepuGvwDAPM31FIzsoEa4iNdLmo="; 48 - }) 49 - # afs: avoid empty-body warning 50 - (fetchpatch { 51 - url = "https://github.com/openafs/openafs/commit/d8b56f21994ce66d8daebb7d69e792f34c1a19ed.patch"; 52 - hash = "sha256-10VUfZdZiOC8xSPM0nq8onqiv7X/Vv4/WwGlkqWkNkQ="; 53 - }) 54 - # Linux 6.10: Move 'inline' before func return type 55 - (fetchpatch { 56 - url = "https://github.com/openafs/openafs/commit/7097eec17bc01bcfc12c4d299136b2d3b94ec3d7.patch"; 57 - hash = "sha256-PZmqeXWJL3EQFD9250YfDwCY1rvSGVCbAhzyHP1pE0Q="; 58 - }) 59 - ]; 33 + patches = [ ]; 60 34 61 35 nativeBuildInputs = [ autoconf automake flex libtool_2 perl which bison ] 62 36 ++ kernel.moduleBuildDependencies;
+3 -3
pkgs/servers/openafs/1.8/srcs.nix
··· 1 1 { fetchurl }: 2 2 rec { 3 - version = "1.8.12"; 3 + version = "1.8.13"; 4 4 src = fetchurl { 5 5 url = "https://www.openafs.org/dl/openafs/${version}/openafs-${version}-src.tar.bz2"; 6 - hash = "sha256-EP6mgQxsCwD/ss0/OO1zLBfP15VcoJVNwkoqYXKibnU="; 6 + hash = "sha256-eRABcMokkLEpXZuLEwWPMOI9eruJe/GgcXVddnB4vdE="; 7 7 }; 8 8 9 9 srcs = [ 10 10 src 11 11 (fetchurl { 12 12 url = "https://www.openafs.org/dl/openafs/${version}/openafs-${version}-doc.tar.bz2"; 13 - hash = "sha256-ZMbDE8c9S7fHclRQo+bcSiXuHBtxt3IoSABOvOWWJWc="; 13 + hash = "sha256-1PPUL05XZkfbIV2rc8Nl0gQ9MmrT0hqA+MRzGdPkP+U="; 14 14 }) 15 15 ]; 16 16 }