This following patch was originally found at the debian mingw-w64 team's binutils repo located here: https://salsa.debian.org/mingw-w64-team/binutils-mingw-w64.git Invoke the following in the aforementioned repo to see the original patch: $ git show da63f6b:debian/patches/reproducible-import-libraries.patch Description: Make DLL import libraries reproducible Author: Benjamin Moody Bug-Debian: https://bugs.debian.org/915055 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -2844,6 +2844,7 @@ bfd_set_format (outarch, bfd_archive); outarch->has_armap = 1; + outarch->flags |= BFD_DETERMINISTIC_OUTPUT; /* Work out a reasonable size of things to put onto one line. */ ar_head = make_head (outarch); ed='selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/networking.scm
AgeCommit message (Expand)Author
2020-07-11tests: networking: Use 'net.ifnames=0' for the Open vSwitch test....* gnu/tests/networking.scm (%openvswitch-os): Override KERNEL-ARGUMENTS. Marius Bakke
2020-04-10tests: openvswitch: Use the absolute file name of ovs-vsctl....This fixes a regression introduced in 8b9cad01e9619f53dc5a65892ca6a09ca5de3447 where ovs-vsctl would no longer be available in PATH. * gnu/tests/networking.scm (run-openvswitch-test): Qualify "ovs-vsctl" invocation by ungexping the OPENVSWITCH variable instead of assuming it's available on PATH. Marius Bakke
2020-03-16tests: dhcpd: Adjust network interface name....This is a followup to 8e53fe2b91d2776bc1529e7b34967c8f1d9edc32. * gnu/tests/networking.scm (dhcpd-v4-configuration) (%dhcpd-os): Use "ens3" instead of "eth0". Ludovic Courtès
2019-03-31services: Open vSwitch: Provide a default configuration....* gnu/services/networking.scm (openvswitch-service-type): Provide OPENVSWITCH-CONFIGURATION as a default value. * gnu/tests/networking.scm (%openvswitch-os): Don't configure the service. Marius Bakke
2019-01-11services: Deprecate a few more service procedures....These procedures were already either undocumented (and de facto deprecated) or documented as deprecated or redundant. * gnu/services/base.scm (guix-service, guix-publish-service): Mark as deprecated. * gnu/services/mcron.scm (mcron-service): Likewise. * gnu/services/networking.scm (tor-service): Likewise. * doc/guix.texi (Scheduled Job Execution): Remove 'mcron-service' and adjust example. (Networking Services): Remove 'tor-service'. * gnu/tests/base.scm (%mcron-os): Use 'mcron-service-type' instead of 'mcron-service'. * gnu/tests/networking.scm (%tor-os): Use 'tor-service-type' instead of 'tor-service'. * tests/guix-system.sh: Likewise. Ludovic Courtès