Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python310Packages.google-auth: remove pyopenssl #180082

Closed
wants to merge 200 commits into from

Commits on Jun 1, 2022

  1. go-modules/packages: Run unit tests under subdirs

    Bug:
    Due to the way `buildGoDir` function was repurposed to also run `go
    test`, if `checkFlags` was defined, `go test` was ran only at the top
    level directory. Only the first element of `checkFlags` array would get
    passed to the `go test` command as arguments.
    
    Fix:
    Now the first parameter to `buildGoDir` is handled as the command.  If
    the command is "test" `checkFlags` get passed as arguments along with
    other build flags like ldflags, tags, etc.
    
    Readability:
    - Iteratively build a flag array in `buildGoDir` instead of single long
      variable expansion command line.
    - Bash style: Single line local assignment of positional parameters.
    bdd committed Jun 1, 2022
    Configuration menu
    Copy the full SHA
    8986441 View commit details
    Browse the repository at this point in the history
  2. gucci: Disable integration tests.

    The version of Ginkgo it relies on might be the problem.
    
    Bug fixed by NixOS#173702 runs the previously skipped tests for this
    package.
    bdd committed Jun 1, 2022
    Configuration menu
    Copy the full SHA
    17672c8 View commit details
    Browse the repository at this point in the history
  3. skeema: Disable tests requiring network & fix deps

    - Disable the tests requiring access to gitlab.com.
    - Add coreutils to `nativeBuildInputs` for printf and echo binaries.
    - Fix hard coded paths to coreutils binaries.
    
    Bug fixed by NixOS#173702 runs the previously skipped tests for this
    package.
    bdd committed Jun 1, 2022
    Configuration menu
    Copy the full SHA
    1b748f0 View commit details
    Browse the repository at this point in the history
  4. mmake: Disable non-localhost network access tests

    Bug fixed by NixOS#173702 runs the previously skipped tests for this
    package.
    bdd committed Jun 1, 2022
    Configuration menu
    Copy the full SHA
    7f2ef31 View commit details
    Browse the repository at this point in the history
  5. delve: Fix tests on Linux, disable tests on Darwin

    Bug fixed by NixOS#173702 runs the previously skipped tests for this
    package.
    bdd committed Jun 1, 2022
    Configuration menu
    Copy the full SHA
    032f261 View commit details
    Browse the repository at this point in the history
  6. go-mtpfs: Disable tests req'ing USB attached devs

    These test are written in a way that they don't skip themselves if they
    cannot find an Android device attached over USB to the running host.
    
    Bug fixed by NixOS#173702 runs the previously skipped tests for this
    package.
    bdd committed Jun 1, 2022
    Configuration menu
    Copy the full SHA
    aee4df7 View commit details
    Browse the repository at this point in the history
  7. gitbatch: Fix tests requiring .git & writable HOME

    Disable the tests requiring access to gitlab.com
    
    Bug fixed by NixOS#173702 runs the previously skipped tests for this
    package.
    bdd committed Jun 1, 2022
    Configuration menu
    Copy the full SHA
    a3205db View commit details
    Browse the repository at this point in the history
  8. kompose: Fix test dependencies

    Bug fixed by NixOS#173702 runs the previously skipped tests for this
    package.
    bdd committed Jun 1, 2022
    Configuration menu
    Copy the full SHA
    9d09650 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2022

  1. stdenv: force gmp to rebuild in stage4 of the bootstrap

    As explained in the comment, this ensures that stage4-coreutils does
    not leak a reference to the bootstrap-files by way of libgmp.  This
    will allow the next patch in this series to build stage4-coreutils
    using a dynamically-linked (rather than statically-linked) libgmp.
    Adam Joseph committed Jun 5, 2022
    Configuration menu
    Copy the full SHA
    7fd7490 View commit details
    Browse the repository at this point in the history
  2. stdenv: cause makeStaticLibraries usage to agree with usage spec

    The usage of `makeStaticLibraries` in stdenv/linux/default.nix is
    prefaced by this comment:
    
      # Link GCC statically against GMP etc.  This makes sense because
      # these builds of the libraries are only used by GCC, so it
      # reduces the size of the stdenv closure.
    
    However "these builds of the libraries are only used by GCC" is not
    actually true.  As currently written, the stage4 coreutils links
    against these customized, static-ified libraries.
    
    Beside the fact that the code doesn't actually do what it says, this
    causes other problems as well.  One example is NixOS#168983, which arises
    because have a dynamically-linked binary (coreutils) which is built
    from statically-linked libraries (libgmp.a); doing this causes mayhem
    on platforms where `-fstack-protector` needs an auxiliary
    `libssp.{so,a}` library; we end up with link failures because some
    parts of the resulting binary want `libssp.so` and other parts want
    `libssp_nonshared.a`.
    
    Let's make the code actually do what the comment says, by moving these
    definitions into the `gcc-unwrapped` override.  This will cause the
    stage4-coreutils to link against libgmp dynamically, rather than
    statically.  For this reason this commit depends on the previous
    commit, which allows that to be done without creating a forbidden
    reference from stdenv-final to the bootstrap-files.
    Adam Joseph committed Jun 5, 2022
    Configuration menu
    Copy the full SHA
    122b693 View commit details
    Browse the repository at this point in the history
  3. stdenv: label the ephemeral coreutils-stage4 package

    During stdenv bootstrapping, coreutils is built twice.  This makes
    troubleshooting very difficult, because both packages have
    name="coreutils", so it is a hassle to figure out "which coreutils am
    I using / is not building"?
    
    The first of these builds is used only in stage4, and is not part of
    the final stdenv.  Let's label that one with a different `name`
    attribute to make it obvious which is which.
    Adam Joseph committed Jun 5, 2022
    Configuration menu
    Copy the full SHA
    23ea8b3 View commit details
    Browse the repository at this point in the history
  4. Update pkgs/stdenv/linux/default.nix

    Co-authored-by: sternenseemann <sternenseemann@systemli.org>
    2 people authored and Adam Joseph committed Jun 5, 2022
    Configuration menu
    Copy the full SHA
    a9e0d86 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0263018 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2022

  1. gnupg: 2.3.4 -> 2.3.6

    stigtsp committed Jun 6, 2022
    Configuration menu
    Copy the full SHA
    1b2929c View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2022

  1. Configuration menu
    Copy the full SHA
    61beb33 View commit details
    Browse the repository at this point in the history
  2. buildPerlPackage: don't mess with pname and phase out use of name

    Currently `buildPerlPackage` prefixes the Perl version to the package's
    `pname`, which results in `nix run` not being able to work for any
    packages build with it out of the box. This commit corrects that and
    phases out the ability to set `name` directly, as well as refactors the
    code to not require `cleanedAttrs`.
    malob committed Jun 7, 2022
    Configuration menu
    Copy the full SHA
    399732b View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2022

  1. Configuration menu
    Copy the full SHA
    d276229 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    518f3ea View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2022

  1. Configuration menu
    Copy the full SHA
    98d9955 View commit details
    Browse the repository at this point in the history
  2. re2: 2022-04-01 -> 2022-06-01

    trofi committed Jun 19, 2022
    Configuration menu
    Copy the full SHA
    148eea3 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2022

  1. texinfo: fix build references when cross-compiling

    The XS modules were being built for the build platform, and the perl scripts
    had build platform shebangs.
    
    It is possible to build the XS modules by passing
    PERL_EXT_CC=${stdenv.cc.targetPrefix}cc and --enable-perl-xs=yes, but they
    fail to load due to a handshake key mismatch. Instead, I just decided to
    disable the XS modules and use the pure Perl fallbacks when cross-compiling.
    
    The shebangs were fixed manually using substituteInPlace.
    lopsided98 committed Jun 20, 2022
    Configuration menu
    Copy the full SHA
    30bfac6 View commit details
    Browse the repository at this point in the history
  2. gpm: fix texinfo dependency platform when cross-compiling

    texinfo is a nativeBuildInput, but it is overridden in all-packages.nix,
    which breaks splicing. Therefore, buildPackages.texinfo needs to be used
    explicitly in the override.
    
    This wasn't actually causing any problems because texinfo's scripts were using
    build platform Perl shebangs. Once texinfo was fixed, gpm started failing to
    cross-compile.
    lopsided98 committed Jun 20, 2022
    Configuration menu
    Copy the full SHA
    350e8ad View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2022

  1. Configuration menu
    Copy the full SHA
    033cfac View commit details
    Browse the repository at this point in the history
  2. gnu-efi: pull fix pending upstream inclusion for parallel build failures

    Without the change parallel build fails as:
    
        gcc -I/build/gnu-efi-code//lib ... -c lib/runtime/rtstr.c -o runtime/rtstr.o
        Assembler messages:
        Fatal error: can't create runtime/rtstr.o: No such file or directory
    trofi committed Jun 22, 2022
    Configuration menu
    Copy the full SHA
    131a97e View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2022

  1. cmake: use a list of suitable uiToolkits instead of Boolean values

    Also, aborts when the list contains anything besides the acceptable options.
    AndersonTorres committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    d6f12ab View commit details
    Browse the repository at this point in the history
  2. cmake: rename patches

    Because it is easier to look at them as a block, not polluting the directory
    listing so much.
    AndersonTorres committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    02155ca View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cd39674 View commit details
    Browse the repository at this point in the history
  4. cmake: use callPackage instead of libsForQt5.callPackage

    Following the trend of enhanced composability, and further because it is unusual
    a build tool using libsForQt5 as scope.
    AndersonTorres committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    d867d91 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fc881d3 View commit details
    Browse the repository at this point in the history
  6. luarocks: explicitly set 'configurePlatforms = [ ];'

    Without the change build with `config.configurePlatformsByDefault = true`
    fails as:
    
        Error: Unknown flag: --build=x86_64-unknown-linux-gnu
    trofi committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    f59fcef View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f8d1cad View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fe72f92 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9d27127 View commit details
    Browse the repository at this point in the history
  10. Merge pull request NixOS#178646 from trofi/parallel-gnu-efi

    gnu-efi: pull fix pending upstream inclusion for parallel build failures
    lovesegfault committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    43059a0 View commit details
    Browse the repository at this point in the history
  11. Merge pull request NixOS#178352 from lopsided98/texinfo-build-ref

    texinfo: fix build references when cross-compiling
    lovesegfault committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    78fa690 View commit details
    Browse the repository at this point in the history
  12. Merge pull request NixOS#178211 from trofi/update-iproute2

    iproute: 5.17.0 -> 5.18.0
    lovesegfault committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    dafd60f View commit details
    Browse the repository at this point in the history
  13. Merge pull request NixOS#178206 from AndersonTorres/cmake

    cmake: 3.22.3 -> 3.23.2
    lovesegfault committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    2de812c View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    6b59ae1 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    b6a3ccf View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    2999d01 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2022

  1. Configuration menu
    Copy the full SHA
    7832ede View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4e03320 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    53898d0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    04bc892 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6df8849 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    badbca8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f932345 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    add6a3b View commit details
    Browse the repository at this point in the history
  9. cacert: 3.77 -> 3.80

    ajs124 committed Jun 24, 2022
    Configuration menu
    Copy the full SHA
    04be37d View commit details
    Browse the repository at this point in the history
  10. Merge pull request NixOS#178215 from trofi/update-re2

    re2: 2022-04-01 -> 2022-06-01
    trofi committed Jun 24, 2022
    Configuration menu
    Copy the full SHA
    29cb8d0 View commit details
    Browse the repository at this point in the history
  11. Merge pull request NixOS#178785 from mweinelt/python3-sqlalchemy-1.4.38

    python3Packages.sqlalchemy: 1.4.37 -> 1.4.38
    marsam committed Jun 24, 2022
    Configuration menu
    Copy the full SHA
    e37594e View commit details
    Browse the repository at this point in the history
  12. Merge pull request NixOS#178700 from SuperSandro2000/urllib3

    python310Packages.urllib3: correct propagatedBuildInputs
    SuperSandro2000 committed Jun 24, 2022
    Configuration menu
    Copy the full SHA
    9546e4c View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    ae72071 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    beff393 View commit details
    Browse the repository at this point in the history
  15. Merge pull request NixOS#178889 from mweinelt/python3-sqlalchemy-1.4.39

    python3Packages.sqlalchemy: 1.4.38 -> 1.4.39
    marsam committed Jun 24, 2022
    Configuration menu
    Copy the full SHA
    c848d57 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2022

  1. Configuration menu
    Copy the full SHA
    25c7844 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ed1037c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4f1156a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    20f3160 View commit details
    Browse the repository at this point in the history
  5. Merge pull request NixOS#178012 from maxeaubrey/ell_0.51_iwd_1.28

    ell: 0.50 -> 0.51, iwd: 1.27 -> 1.28
    amaxine committed Jun 25, 2022
    Configuration menu
    Copy the full SHA
    8505960 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b9c428d View commit details
    Browse the repository at this point in the history
  7. Merge pull request NixOS#179027 from milahu/patch-24

    ninja: disable line-clearing with TERM=dumb
    SuperSandro2000 committed Jun 25, 2022
    Configuration menu
    Copy the full SHA
    9dd9e70 View commit details
    Browse the repository at this point in the history
  8. m4: build offline documentation

    Dmitry Bogatov authored and Yt committed Jun 25, 2022
    Configuration menu
    Copy the full SHA
    0eac24a View commit details
    Browse the repository at this point in the history
  9. texinfo4: use recent config.guess script

    Dmitry Bogatov authored and Yt committed Jun 25, 2022
    Configuration menu
    Copy the full SHA
    e9d95b5 View commit details
    Browse the repository at this point in the history
  10. Revert "texinfo4: use recent config.guess script"

    This reverts commit 767d311.
    Dmitry Bogatov authored and Yt committed Jun 25, 2022
    Configuration menu
    Copy the full SHA
    fb3951c View commit details
    Browse the repository at this point in the history
  11. Revert "m4: build offline documentation"

    This reverts commit bde8c13.
    Dmitry Bogatov authored and Yt committed Jun 25, 2022
    Configuration menu
    Copy the full SHA
    6cc6b90 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    7d5108c View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    c9afe80 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2022

  1. Configuration menu
    Copy the full SHA
    2eed194 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6905fbb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e838f7e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6b4ec35 View commit details
    Browse the repository at this point in the history
  5. liburing: 2.1 -> 2.2

    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    thoughtpolice committed Jun 26, 2022
    Configuration menu
    Copy the full SHA
    fe5d77f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    93343d6 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    daa5698 View commit details
    Browse the repository at this point in the history
  8. Merge pull request NixOS#179215 from SuperSandro2000/python310Package…

    …s.pycares
    
    python310Packages.pycares: 4.1.2 -> 4.2.0
    SuperSandro2000 committed Jun 26, 2022
    Configuration menu
    Copy the full SHA
    a0fb778 View commit details
    Browse the repository at this point in the history
  9. Merge pull request NixOS#179160 from dotlambda/pytest-mock-3.8.1

    python310Packages.pytest-mock: 3.7.0 -> 3.8.1
    SuperSandro2000 committed Jun 26, 2022
    Configuration menu
    Copy the full SHA
    b7a8f5a View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2022

  1. Configuration menu
    Copy the full SHA
    c364b66 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fc949ce View commit details
    Browse the repository at this point in the history
  3. Merge pull request NixOS#179293 from Mic92/merge-master

    Merge master
    Mic92 committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    8260ea3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    31b1f37 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0191c1b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    81f7f2d View commit details
    Browse the repository at this point in the history
  7. libaom: 3.3.0 -> 3.4.0

    dali99 authored and Profpatsch committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    b6141fb View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    bfffecf View commit details
    Browse the repository at this point in the history
  9. cmake: Fix darwin-specific remove-systemconfiguration-dep patch

    Unbreaks cmakeMinimal on darwin.
    
    Co-authored-by: Ryan Burns <rtburns@protonmail.com>
    2 people authored and bobby285271 committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    54a65b5 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    fb76309 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    aede202 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    2a722b7 View commit details
    Browse the repository at this point in the history
  13. doxygen: 1.9.3 -> 1.9.4

    r-ryantm authored and dotlambda committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    71260be View commit details
    Browse the repository at this point in the history
  14. python310Packages.pycryptodome: 3.14.1 -> 3.15.0

    fabaff authored and Jonathan Ringer committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    5abffc8 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2022

  1. Configuration menu
    Copy the full SHA
    a2a2713 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bb8ff38 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d795dc4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    54ae4bd View commit details
    Browse the repository at this point in the history
  5. Merge pull request NixOS#173702 from bdd/go-checkFlags

    go-modules/packages: Run unit tests under subdirs
    Mic92 committed Jun 28, 2022
    Configuration menu
    Copy the full SHA
    4f8a04f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9a40b19 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    36f8479 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    009d5bf View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    479c304 View commit details
    Browse the repository at this point in the history
  10. pcre2: fix gitea websearch crashing when searching for a plain string

    The nixos gitea module sets MemoryDenyWriteExecute=true which requires
    pcre2 to be compiled with --enable-jit-sealloc otherwise it fails with
    "-48".
    
    See go-gitea/gitea#10840 and archlinux/svntogit-packages@920838a
    SuperSandro2000 committed Jun 28, 2022
    Configuration menu
    Copy the full SHA
    365831b View commit details
    Browse the repository at this point in the history
  11. python3Packages.pythran: 0.9.12 -> 0.11.0, clean up a bit

    Unbreaks latest scipy.
    
    Refreshed patch, removed line noise, removed/updated some old test stuff.
    K900 committed Jun 28, 2022
    Configuration menu
    Copy the full SHA
    2610551 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    44c9bff View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    474cd82 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    611edec View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    d97e911 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    71ad813 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    64d95b0 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2022

  1. Configuration menu
    Copy the full SHA
    58d8ce7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    68da255 View commit details
    Browse the repository at this point in the history
  3. Merge pull request NixOS#179159 from dbarrosop/python-updates

    python310Packages.urllib3: remove pyopenssl as it is no longer recommended
    SuperSandro2000 committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    58eb7f7 View commit details
    Browse the repository at this point in the history
  4. Revert "sphinx_offline: init"

    This reverts commit b75a204.
    SuperSandro2000 committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    33ca33b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4650f24 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    919e04f View commit details
    Browse the repository at this point in the history
  7. asciidoc: get rid of ? null

    dotlambda committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    601d9db View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    19be303 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ec0f3ed View commit details
    Browse the repository at this point in the history
  10. gcc10: 10.3.0 -> 10.4.0

    Patches: the two seemed included in the release;
    I also checked that the conditional patches still all apply.
    vcunat committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    3f88d51 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    6ed6f0c View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f9f65f0 View commit details
    Browse the repository at this point in the history
  13. Merge pull request NixOS#179506 from SuperSandro2000/pyopenssl-ghc

    Revert GHC pyopenssl workarounds
    SuperSandro2000 committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    fa3f2e3 View commit details
    Browse the repository at this point in the history
  14. pkgsMusl.iptables: fix build with upstream patch

    Fix is applied upstream but there hasn't been a release yet.
    
    Fixes: 131fce4 ("iptables: 1.8.7 -> 1.8.8")
    alyssais committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    e1919b2 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    30392f6 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    c51b11b View commit details
    Browse the repository at this point in the history
  17. Merge pull request NixOS#179421 from K900/bump-pythran

    python310Packages.pythran: 0.9.12 -> 0.11.0
    SuperSandro2000 committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    df0bbd3 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    2b2922c View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    40e2668 View commit details
    Browse the repository at this point in the history
  20. libwebp: 1.2.1 -> 1.2.2

    also clean up and take up maintainership
    ajs124 committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    51619a5 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    77454bd View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2022

  1. Configuration menu
    Copy the full SHA
    14024fe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    965570c View commit details
    Browse the repository at this point in the history
  3. Merge pull request NixOS#169378 from amjoseph-nixpkgs/stdenv-makeStat…

    …icLibraries-do-what-comment-says
    
    stdenv: make stage3.{gmp,mpfr,mpc,isl} do what the comment says
    Mindavi committed Jun 30, 2022
    Configuration menu
    Copy the full SHA
    2fcdf54 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c9c7eb8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    458d91e View commit details
    Browse the repository at this point in the history
  6. libv4l: fix build for non-glibc platforms

    argp is a Glibc-specific feature.
    alyssais committed Jun 30, 2022
    Configuration menu
    Copy the full SHA
    f031daf View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9ffc727 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    b23c3d5 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    dcbdbb9 View commit details
    Browse the repository at this point in the history
  10. python310Packages.setuptools-scm: fix cross compile of dependents

    Packages depending on setuptools-scm need the setuptools module at
    build time. Add setuptools to the propagatedBuildInputs so this is
    guaranteed. This fixes cross compile of the dependent packages.
    squalus committed Jun 30, 2022
    Configuration menu
    Copy the full SHA
    77e6eda View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    e4e7d22 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    49270f7 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    a1edc2f View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    6e621ea View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    92370d9 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2022

  1. Configuration menu
    Copy the full SHA
    2ccd4bb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d5a880f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    039a68c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f6b27da View commit details
    Browse the repository at this point in the history
  5. libsepol: enable parallel building

    Tested at -j48.
    alyssais committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    1a96397 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    86c7c09 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    faaf0a9 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1385a15 View commit details
    Browse the repository at this point in the history
  9. Merge pull request NixOS#179468 from alyssais/libsepol-parallel

    libsepol: enable parallel building
    mweinelt committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    5811ea7 View commit details
    Browse the repository at this point in the history
  10. libsoup_3: 3.0.6 -> 3.0.7

    r-ryantm authored and jtojnar committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    88738c7 View commit details
    Browse the repository at this point in the history
  11. glib: 2.72.2 -> 2.72.3

    r-ryantm authored and jtojnar committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    c99ba0c View commit details
    Browse the repository at this point in the history
  12. Merge pull request NixOS#179728 from squalus/setuptools-scm-cross-sta…

    …ging-2
    
    python310Packages.setuptools-scm: fix cross compile of dependents
    SuperSandro2000 committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    8890d83 View commit details
    Browse the repository at this point in the history
  13. Merge pull request NixOS#179101 from qowoz/sqlite

    sqlite: 3.38.5 -> 3.39.0
    SuperSandro2000 committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    0eaa7de View commit details
    Browse the repository at this point in the history
  14. libopenmpt: 0.6.3 -> 0.6.4

    r-ryantm authored and jtojnar committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    0e9dd6b View commit details
    Browse the repository at this point in the history
  15. buildRubyGem: fix bundix cross

    allows building bundix but most ruby gems still fail with
    
    ```
    ++ gem install --local --force --http-proxy http://nodtd.invalid --ignore-dependencies --install-dir /nix/store/...-ruby-aarch64-unknown-linux-gnu2.7.6-nio4r-2.5.8-aarch64-unknown-linux-gnu/lib/ruby/gems/2.7.0
    --build-root / --backtrace --no-env-shebang -N /nix/store/...-nio4r-2.5.8.gem --
    /nix/store/...-ruby-aarch64-unknown-linux-gnu-2.7.6/bin/gem: line 8: require: command not found
    /nix/store/...-ruby-aarch64-unknown-linux-gnu-2.7.6/bin/gem: line 9: require: command not found
    /nix/store/...-ruby-aarch64-unknown-linux-gnu-2.7.6/bin/gem: line 10: require: command not found
    /nix/store/...-ruby-aarch64-unknown-linux-gnu-2.7.6/bin/gem: line 12: required_version: command not found
    /nix/store/...-ruby-aarch64-unknown-linux-gnu-2.7.6/bin/gem: line 14: unless: command not found
    /nix/store/...-ruby-aarch64-unknown-linux-gnu-2.7.6/bin/gem: line 15: abort: command not found
    /nix/store/...-ruby-aarch64-unknown-linux-gnu-2.7.6/bin/gem: line 16: end: command not found
    /nix/store/...-ruby-aarch64-unknown-linux-gnu-2.7.6/bin/gem: line 18: args: command not found
    /nix/store/...-ruby-aarch64-unknown-linux-gnu-2.7.6/bin/gem: line 20: begin: command not found
    /nix/store/...-ruby-aarch64-unknown-linux-gnu-2.7.6/bin/gem: line 21: Gem::GemRunner.new.run: command not found
    /nix/store/...-ruby-aarch64-unknown-linux-gnu-2.7.6/bin/gem: line 22: rescue: command not found
    /nix/store/...-ruby-aarch64-unknown-linux-gnu-2.7.6/bin/gem: line 23: exit: e.exit_code: numeric argument required
    ```
    Artturin committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    a720bc4 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    6b8ce2a View commit details
    Browse the repository at this point in the history
  17. Merge pull request NixOS#178689 from trofi/configurePlatform-luarocks

    luarocks: explicitly set 'configurePlatforms = [ ];'
    7c6f434c committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    4090c10 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    52e229f View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    7907ea3 View commit details
    Browse the repository at this point in the history
  20. Merge pull request NixOS#179595 from SuperSandro2000/python310Package…

    …s.requests
    
    python310Packages.requests: 2.28.0 -> 2.28.1
    SuperSandro2000 committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    2afeca8 View commit details
    Browse the repository at this point in the history
  21. Merge pull request NixOS#179476 from SuperSandro2000/python310Package…

    …s.jsonschema
    
    python310Packages.jsonschema: 4.6.0 -> 4.6.1
    SuperSandro2000 committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    394c952 View commit details
    Browse the repository at this point in the history
  22. Merge pull request NixOS#179479 from SuperSandro2000/python310Package…

    …s.pycares
    
    python310Packages.pycares: 4.2.0 -> 4.2.1
    SuperSandro2000 committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    378c023 View commit details
    Browse the repository at this point in the history
  23. Merge pull request NixOS#178779 from SuperSandro2000/python310Package…

    …s.babel
    
    python310Packages.babel: 2.10.1 -> 2.10.3
    SuperSandro2000 committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    6f47468 View commit details
    Browse the repository at this point in the history
  24. Merge pull request NixOS#179444 from SuperSandro2000/fix-gitea-commit…

    …-search
    
    pcre2: fix gitea websearch crashing when searching for a plain string
    SuperSandro2000 committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    c990bd6 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    68ad68a View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    abcd500 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    97be985 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    fb30e16 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2022

  1. Configuration menu
    Copy the full SHA
    1961d0a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4ac46f5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request NixOS#175871 from Artturin/fixcross1

    buildRubyGem: fix bundix cross
    marsam committed Jul 2, 2022
    Configuration menu
    Copy the full SHA
    ce577b8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f507277 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6f8facd View commit details
    Browse the repository at this point in the history
  6. rustc: 1.61.0 -> 1.62.0

    alyssais committed Jul 2, 2022
    Configuration menu
    Copy the full SHA
    8004d0e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    cc49d57 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8517eca View commit details
    Browse the repository at this point in the history
  9. Merge NixOS#167671: cmake: Fix a darwin-specific patch

    ...into staging-next.  I assume that applying on non-Darwin was
    just temporary for testing, so I cut that part to avoid rebuilds.
    vcunat committed Jul 2, 2022
    Configuration menu
    Copy the full SHA
    aab2ab5 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    239c4e7 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    bcbc4d0 View commit details
    Browse the repository at this point in the history
  12. Revert "stdenv: label the ephemeral coreutils-stage4 package"

    This reverts commit 23ea8b3.
    Adam Joseph committed Jul 2, 2022
    Configuration menu
    Copy the full SHA
    dc5bdd6 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2022

  1. Configuration menu
    Copy the full SHA
    5d9e711 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d16c33e View commit details
    Browse the repository at this point in the history
  3. Merge pull request NixOS#178906 from marsam/update-grpc

    grpc: 1.46.3 -> 1.47.0
    marsam committed Jul 3, 2022
    Configuration menu
    Copy the full SHA
    e8200e2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3d0e70a View commit details
    Browse the repository at this point in the history
  5. Merge NixOS#176598: gnupg: 2.3.4 -> 2.3.6, patch CVE-2022-34903

    ...into staging-next
    vcunat committed Jul 3, 2022
    Configuration menu
    Copy the full SHA
    f42d2ff View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bd3785f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    335d99d View commit details
    Browse the repository at this point in the history
  8. Merge pull request NixOS#179961 from amjoseph-nixpkgs/pr/revert/label…

    …-coreutils-with-stage4
    
    Revert "stdenv: label the ephemeral coreutils-stage4 package"
    Mindavi committed Jul 3, 2022
    Configuration menu
    Copy the full SHA
    1b94ad9 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    00b3f42 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9d5f237 View commit details
    Browse the repository at this point in the history
  11. Merge pull request NixOS#179574 from helsinki-systems/upd/libwebp

    libwebp: 1.2.1 -> 1.2.2
    ajs124 committed Jul 3, 2022
    Configuration menu
    Copy the full SHA
    73ead11 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    fc65c5c View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    116e8e9 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2022

  1. Configuration menu
    Copy the full SHA
    a653bba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d0d975c View commit details
    Browse the repository at this point in the history
  3. google-auth: Remove pyopenssl

    Pyopenssl is in `extras_require` (optional), and only needed if mTLS feature is
    enabled (disabled by default) googleapis/google-auth-library-python#697
    
    This will also make google-auth available on aarch64-darwin since
    pyopenssl is broken NixOS#172397
    azuwis committed Jul 4, 2022
    Configuration menu
    Copy the full SHA
    de839d3 View commit details
    Browse the repository at this point in the history