summaryrefslogtreecommitdiff
path: root/gnu/packages/base.scm
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2025-10-23 18:50:55 +0200
committerAndreas Enge <andreas@enge.fr>2025-10-23 18:50:55 +0200
commitb06addad377671ad44823395f9bf6ad2cbd1bc5d (patch)
treebd7d302b577e9dfe9ff22b1ec2425093fce594e4 /gnu/packages/base.scm
parent8ec88643fd0a231037c83d7d8d54ab155003fc55 (diff)
gnu: Remove glibc-2.31.
* gnu/packages/base.scm (glibc-2.31): Delete variable. Change-Id: I60a58cb4acef54b01e287036b47a54308d1f54fe
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r--gnu/packages/base.scm39
1 files changed, 0 insertions, 39 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index f4420c41f98..ea5405cb77e 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -1409,45 +1409,6 @@ with the Linux kernel.")
1409 (("^install-others =.*$") 1409 (("^install-others =.*$")
1410 (string-append "install-others = " out "/etc/rpc\n")))))))))))) 1410 (string-append "install-others = " out "/etc/rpc\n"))))))))))))
1411 1411
1412(define-public glibc-2.31
1413 (package
1414 (inherit glibc-2.35)
1415 (version "2.31")
1416 (source (origin
1417 (inherit (package-source glibc))
1418 (uri (string-append "mirror://gnu/glibc/glibc-" version ".tar.xz"))
1419 (sha256
1420 (base32
1421 "05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj"))
1422 (patches (search-patches
1423 "glibc-skip-c++.patch"
1424 "glibc-ldd-powerpc.patch"
1425 "glibc-ldd-x86_64.patch"
1426 "glibc-dl-cache.patch"
1427 "glibc-hidden-visibility-ldconfig.patch"
1428 "glibc-versioned-locpath.patch"
1429 "glibc-allow-kernel-2.6.32.patch"
1430 "glibc-reinstate-prlimit64-fallback.patch"
1431 "glibc-supported-locales.patch"
1432 "glibc-hurd-clock_t_centiseconds.patch"
1433 "glibc-2.31-hurd-clock_gettime_monotonic.patch"
1434 "glibc-hurd-signal-sa-siginfo.patch"
1435 "glibc-hurd-mach-print.patch"
1436 "glibc-hurd-gettyent.patch"))))
1437 (arguments
1438 (substitute-keyword-arguments (package-arguments glibc)
1439 ((#:phases phases)
1440 `(modify-phases ,phases
1441 (add-before 'configure 'set-etc-rpc-installation-directory
1442 (lambda* (#:key outputs #:allow-other-keys)
1443 ;; Install the rpc data base file under `$out/etc/rpc'.
1444 (let ((out (assoc-ref outputs "out")))
1445 (substitute* "sunrpc/Makefile"
1446 (("^\\$\\(inst_sysconfdir\\)/rpc(.*)$" _ suffix)
1447 (string-append out "/etc/rpc" suffix "\n"))
1448 (("^install-others =.*$")
1449 (string-append "install-others = " out "/etc/rpc\n"))))))))))))
1450
1451(define-public (make-gcc-libc base-gcc libc) 1412(define-public (make-gcc-libc base-gcc libc)
1452 "Return a GCC that targets LIBC." 1413 "Return a GCC that targets LIBC."
1453 (package (inherit base-gcc) 1414 (package (inherit base-gcc)