aboutsummaryrefslogtreecommitdiff
path: root/copyright
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-08-24 13:21:49 +0200
committerWojtek Kosior <koszko@koszko.org>2022-08-24 13:21:49 +0200
commit93a22153597349dca7bc607d7288396200fade0c (patch)
tree45f9c8747b8684368c0760d151bd7ef5e9211c1d /copyright
parent95bc9b67b0523fc03831328d759c4fb7505783e2 (diff)
downloadbrowser-extension-93a22153597349dca7bc607d7288396200fade0c.tar.gz
browser-extension-93a22153597349dca7bc607d7288396200fade0c.zip
bump version to 2.0v2.0
Diffstat (limited to 'copyright')
0 files changed, 0 insertions, 0 deletions
* nix/libstore/local-store.hh (deduplicationMinSize): New declaration. * nix/libstore/optimise-store.cc (deduplicationMinSize): New variable. (LocalStore::optimisePath_): Return when PATH is a symlink or smaller than 'deduplicationMinSize'. * tests/derivations.scm ("identical files are deduplicated"): Produce files bigger than %DEDUPLICATION-MINIMUM-SIZE. * tests/nar.scm ("restore-file-set with directories (signed, valid)"): Likewise. * tests/store-deduplication.scm ("deduplicate, below %deduplication-minimum-size"): New test. ("deduplicate", "deduplicate, ENOSPC"): Produce files bigger than %DEDUPLICATION-MINIMUM-SIZE. * tests/store.scm ("substitute, deduplication"): Likewise. 2021-06-18Start enabling substitutes from bordeaux.guix.gnu.org.Christopher Baines In addition to substitutes from ci.guix.gnu.org. There are more changes that can be made in the future, but these changes seem like a good start. * config-daemon.ac (guix_substitute_urls): Add https://bordeaux.guix.gnu.org. * guix/scripts/substitute.scm (%default-substitute-urls): Add http://bordeaux.guix.gnu.org. * guix/store.scm (%default-substitute-urls): Add bordeaux.guix.gnu.org. * doc/guix.texi: Adjust accordingly. * doc/contributing.texi: Adjust accordingly. 2020-12-11maint: Remove unused 'NIX_VERSION' macro.Ludovic Courtès * config-daemon.ac: Do not define NIX_VERSION. 2020-12-11maint: Avoid macros obsolete in Autoconf 2.70.Ludovic Courtès * configure.ac: Require Autoconf 2.69. Use 'AS_HELP_STRING' instead of 'AC_HELP_STRING'. * m4/guix.m4: Likewise. * config-daemon.ac: Use 'AC_CONFIG_HEADERS' instead of the singular variant. 2019-11-27daemon: GC remove-unused-links phase uses 'statx' when available.Ludovic Courtès * config-daemon.ac: Check for 'statx'. * nix/libstore/gc.cc (LocalStore::removeUnusedLinks) [HAVE_STATX]: Use 'statx' instead of 'lstat'. 2019-11-13daemon: Don't include <linux/fs.h>.Ludovic Courtès As of GNU libc 2.29, <sys/mount.h> declares all the constants and functions we need, so there's no use in including <linux/fs.h> anymore. This silences annoying warnings like this one: In file included from nix/libstore/local-store.cc:32:0: /gnu/store/…-linux-libre-headers-4.19.56/include/linux/fs.h:108:0: warning: "MS_RDONLY" redefined #define MS_RDONLY 1 /* Mount read-only */ In file included from nix/libstore/local-store.cc:28:0: /gnu/store/…-glibc-2.29/include/sys/mount.h:36:0: note: this is the location of the previous definition #define MS_RDONLY MS_RDONLY * config-daemon.ac: Remove check for <linux/fs.h>. * nix/libstore/build.cc: Remove conditional inclusion of <linux/fs.h>. * nix/libstore/local-store.cc: Remove "#if HAVE_LINUX_FS_H" and inclusion of <linux/fs.h>.