-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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
staging-next 2022-07-01 #179844
staging-next 2022-07-01 #179844
Commits on Jun 1, 2022
-
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.
Configuration menu - View commit details
-
Copy full SHA for 8986441 - Browse repository at this point
Copy the full SHA 8986441View commit details -
gucci: Disable integration tests.
The version of Ginkgo it relies on might be the problem. Bug fixed by #173702 runs the previously skipped tests for this package.
Configuration menu - View commit details
-
Copy full SHA for 17672c8 - Browse repository at this point
Copy the full SHA 17672c8View commit details -
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 #173702 runs the previously skipped tests for this package.
Configuration menu - View commit details
-
Copy full SHA for 1b748f0 - Browse repository at this point
Copy the full SHA 1b748f0View commit details -
mmake: Disable non-localhost network access tests
Bug fixed by #173702 runs the previously skipped tests for this package.
Configuration menu - View commit details
-
Copy full SHA for 7f2ef31 - Browse repository at this point
Copy the full SHA 7f2ef31View commit details -
delve: Fix tests on Linux, disable tests on Darwin
Bug fixed by #173702 runs the previously skipped tests for this package.
Configuration menu - View commit details
-
Copy full SHA for 032f261 - Browse repository at this point
Copy the full SHA 032f261View commit details -
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 #173702 runs the previously skipped tests for this package.
Configuration menu - View commit details
-
Copy full SHA for aee4df7 - Browse repository at this point
Copy the full SHA aee4df7View commit details -
gitbatch: Fix tests requiring .git & writable HOME
Disable the tests requiring access to gitlab.com Bug fixed by #173702 runs the previously skipped tests for this package.
Configuration menu - View commit details
-
Copy full SHA for a3205db - Browse repository at this point
Copy the full SHA a3205dbView commit details -
kompose: Fix test dependencies
Bug fixed by #173702 runs the previously skipped tests for this package.
Configuration menu - View commit details
-
Copy full SHA for 9d09650 - Browse repository at this point
Copy the full SHA 9d09650View commit details
Commits on Jun 5, 2022
-
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 committedJun 5, 2022 Configuration menu - View commit details
-
Copy full SHA for 7fd7490 - Browse repository at this point
Copy the full SHA 7fd7490View commit details -
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 #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 committedJun 5, 2022 Configuration menu - View commit details
-
Copy full SHA for 122b693 - Browse repository at this point
Copy the full SHA 122b693View commit details -
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 committedJun 5, 2022 Configuration menu - View commit details
-
Copy full SHA for 23ea8b3 - Browse repository at this point
Copy the full SHA 23ea8b3View commit details -
Update pkgs/stdenv/linux/default.nix
Co-authored-by: sternenseemann <sternenseemann@systemli.org>
Configuration menu - View commit details
-
Copy full SHA for a9e0d86 - Browse repository at this point
Copy the full SHA a9e0d86View commit details -
stdenv: add -stageX markers to gmp, mpfr, libmpc, and isl
Adam Joseph committedJun 5, 2022 Configuration menu - View commit details
-
Copy full SHA for 0263018 - Browse repository at this point
Copy the full SHA 0263018View commit details
Commits on Jun 6, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 1b2929c - Browse repository at this point
Copy the full SHA 1b2929cView commit details
Commits on Jun 7, 2022
-
Revert "perlPackages: add default meta.mainProgram (#176398)"
This reverts commit ff7b216.
Configuration menu - View commit details
-
Copy full SHA for 61beb33 - Browse repository at this point
Copy the full SHA 61beb33View commit details -
buildPerlPackage: don't mess with
pname
and phase out use ofname
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`.
Configuration menu - View commit details
-
Copy full SHA for 399732b - Browse repository at this point
Copy the full SHA 399732bView commit details
Commits on Jun 17, 2022
-
Configuration menu - View commit details
-
Copy full SHA for d276229 - Browse repository at this point
Copy the full SHA d276229View commit details -
Configuration menu - View commit details
-
Copy full SHA for 518f3ea - Browse repository at this point
Copy the full SHA 518f3eaView commit details
Commits on Jun 19, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 98d9955 - Browse repository at this point
Copy the full SHA 98d9955View commit details -
Configuration menu - View commit details
-
Copy full SHA for 148eea3 - Browse repository at this point
Copy the full SHA 148eea3View commit details
Commits on Jun 20, 2022
-
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.
Configuration menu - View commit details
-
Copy full SHA for 30bfac6 - Browse repository at this point
Copy the full SHA 30bfac6View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 350e8ad - Browse repository at this point
Copy the full SHA 350e8adView commit details
Commits on Jun 22, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 033cfac - Browse repository at this point
Copy the full SHA 033cfacView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 131a97e - Browse repository at this point
Copy the full SHA 131a97eView commit details
Commits on Jun 23, 2022
-
cmake: use a list of suitable uiToolkits instead of Boolean values
Also, aborts when the list contains anything besides the acceptable options.
Configuration menu - View commit details
-
Copy full SHA for d6f12ab - Browse repository at this point
Copy the full SHA d6f12abView commit details -
Because it is easier to look at them as a block, not polluting the directory listing so much.
Configuration menu - View commit details
-
Copy full SHA for 02155ca - Browse repository at this point
Copy the full SHA 02155caView commit details -
Configuration menu - View commit details
-
Copy full SHA for cd39674 - Browse repository at this point
Copy the full SHA cd39674View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for d867d91 - Browse repository at this point
Copy the full SHA d867d91View commit details -
Configuration menu - View commit details
-
Copy full SHA for fc881d3 - Browse repository at this point
Copy the full SHA fc881d3View commit details -
luarocks: explicitly set 'configurePlatforms = [ ];'
Without the change build with `config.configurePlatformsByDefault = true` fails as: Error: Unknown flag: --build=x86_64-unknown-linux-gnu
Configuration menu - View commit details
-
Copy full SHA for f59fcef - Browse repository at this point
Copy the full SHA f59fcefView commit details -
Configuration menu - View commit details
-
Copy full SHA for f8d1cad - Browse repository at this point
Copy the full SHA f8d1cadView commit details -
Configuration menu - View commit details
-
Copy full SHA for fe72f92 - Browse repository at this point
Copy the full SHA fe72f92View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d27127 - Browse repository at this point
Copy the full SHA 9d27127View commit details -
Merge pull request #178646 from trofi/parallel-gnu-efi
gnu-efi: pull fix pending upstream inclusion for parallel build failures
Configuration menu - View commit details
-
Copy full SHA for 43059a0 - Browse repository at this point
Copy the full SHA 43059a0View commit details -
Merge pull request #178352 from lopsided98/texinfo-build-ref
texinfo: fix build references when cross-compiling
Configuration menu - View commit details
-
Copy full SHA for 78fa690 - Browse repository at this point
Copy the full SHA 78fa690View commit details -
Merge pull request #178211 from trofi/update-iproute2
iproute: 5.17.0 -> 5.18.0
Configuration menu - View commit details
-
Copy full SHA for dafd60f - Browse repository at this point
Copy the full SHA dafd60fView commit details -
Merge pull request #178206 from AndersonTorres/cmake
cmake: 3.22.3 -> 3.23.2
Configuration menu - View commit details
-
Copy full SHA for 2de812c - Browse repository at this point
Copy the full SHA 2de812cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b59ae1 - Browse repository at this point
Copy the full SHA 6b59ae1View commit details -
Configuration menu - View commit details
-
Copy full SHA for b6a3ccf - Browse repository at this point
Copy the full SHA b6a3ccfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2999d01 - Browse repository at this point
Copy the full SHA 2999d01View commit details
Commits on Jun 24, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 7832ede - Browse repository at this point
Copy the full SHA 7832edeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6df8849 - Browse repository at this point
Copy the full SHA 6df8849View commit details -
Configuration menu - View commit details
-
Copy full SHA for badbca8 - Browse repository at this point
Copy the full SHA badbca8View commit details -
Configuration menu - View commit details
-
Copy full SHA for f932345 - Browse repository at this point
Copy the full SHA f932345View commit details -
Configuration menu - View commit details
-
Copy full SHA for add6a3b - Browse repository at this point
Copy the full SHA add6a3bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 04be37d - Browse repository at this point
Copy the full SHA 04be37dView commit details -
Merge pull request #178215 from trofi/update-re2
re2: 2022-04-01 -> 2022-06-01
Configuration menu - View commit details
-
Copy full SHA for 29cb8d0 - Browse repository at this point
Copy the full SHA 29cb8d0View commit details -
Merge pull request #178785 from mweinelt/python3-sqlalchemy-1.4.38
python3Packages.sqlalchemy: 1.4.37 -> 1.4.38
Configuration menu - View commit details
-
Copy full SHA for e37594e - Browse repository at this point
Copy the full SHA e37594eView commit details -
Merge pull request #178700 from SuperSandro2000/urllib3
python310Packages.urllib3: correct propagatedBuildInputs
Configuration menu - View commit details
-
Copy full SHA for 9546e4c - Browse repository at this point
Copy the full SHA 9546e4cView commit details -
Configuration menu - View commit details
-
Copy full SHA for ae72071 - Browse repository at this point
Copy the full SHA ae72071View commit details -
Configuration menu - View commit details
-
Copy full SHA for beff393 - Browse repository at this point
Copy the full SHA beff393View commit details -
Merge pull request #178889 from mweinelt/python3-sqlalchemy-1.4.39
python3Packages.sqlalchemy: 1.4.38 -> 1.4.39
Configuration menu - View commit details
-
Copy full SHA for c848d57 - Browse repository at this point
Copy the full SHA c848d57View commit details
Commits on Jun 25, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 25c7844 - Browse repository at this point
Copy the full SHA 25c7844View commit details -
Configuration menu - View commit details
-
Copy full SHA for ed1037c - Browse repository at this point
Copy the full SHA ed1037cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f1156a - Browse repository at this point
Copy the full SHA 4f1156aView commit details -
ninja: disable line-clearing with TERM=dumb
milahu committedJun 25, 2022 Configuration menu - View commit details
-
Copy full SHA for 20f3160 - Browse repository at this point
Copy the full SHA 20f3160View commit details -
Merge pull request #178012 from maxeaubrey/ell_0.51_iwd_1.28
ell: 0.50 -> 0.51, iwd: 1.27 -> 1.28
Configuration menu - View commit details
-
Copy full SHA for 8505960 - Browse repository at this point
Copy the full SHA 8505960View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9c428d - Browse repository at this point
Copy the full SHA b9c428dView commit details -
Merge pull request #179027 from milahu/patch-24
ninja: disable line-clearing with TERM=dumb
Configuration menu - View commit details
-
Copy full SHA for 9dd9e70 - Browse repository at this point
Copy the full SHA 9dd9e70View commit details -
m4: build offline documentation
Dmitry Bogatov authored and Yt committedJun 25, 2022 Configuration menu - View commit details
-
Copy full SHA for 0eac24a - Browse repository at this point
Copy the full SHA 0eac24aView commit details -
texinfo4: use recent config.guess script
Dmitry Bogatov authored and Yt committedJun 25, 2022 Configuration menu - View commit details
-
Copy full SHA for e9d95b5 - Browse repository at this point
Copy the full SHA e9d95b5View commit details -
Revert "texinfo4: use recent config.guess script"
This reverts commit 767d311.
Dmitry Bogatov authored and Yt committedJun 25, 2022 Configuration menu - View commit details
-
Copy full SHA for fb3951c - Browse repository at this point
Copy the full SHA fb3951cView commit details -
Revert "m4: build offline documentation"
This reverts commit bde8c13.
Dmitry Bogatov authored and Yt committedJun 25, 2022 Configuration menu - View commit details
-
Copy full SHA for 6cc6b90 - Browse repository at this point
Copy the full SHA 6cc6b90View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7d5108c - Browse repository at this point
Copy the full SHA 7d5108cView commit details -
Configuration menu - View commit details
-
Copy full SHA for c9afe80 - Browse repository at this point
Copy the full SHA c9afe80View commit details
Commits on Jun 26, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 2eed194 - Browse repository at this point
Copy the full SHA 2eed194View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6905fbb - Browse repository at this point
Copy the full SHA 6905fbbView commit details -
Configuration menu - View commit details
-
Copy full SHA for e838f7e - Browse repository at this point
Copy the full SHA e838f7eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b4ec35 - Browse repository at this point
Copy the full SHA 6b4ec35View commit details -
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Configuration menu - View commit details
-
Copy full SHA for fe5d77f - Browse repository at this point
Copy the full SHA fe5d77fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 93343d6 - Browse repository at this point
Copy the full SHA 93343d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for daa5698 - Browse repository at this point
Copy the full SHA daa5698View commit details -
Merge pull request #179215 from SuperSandro2000/python310Packages.pyc…
…ares python310Packages.pycares: 4.1.2 -> 4.2.0
Configuration menu - View commit details
-
Copy full SHA for a0fb778 - Browse repository at this point
Copy the full SHA a0fb778View commit details -
Merge pull request #179160 from dotlambda/pytest-mock-3.8.1
python310Packages.pytest-mock: 3.7.0 -> 3.8.1
Configuration menu - View commit details
-
Copy full SHA for b7a8f5a - Browse repository at this point
Copy the full SHA b7a8f5aView commit details
Commits on Jun 27, 2022
-
Configuration menu - View commit details
-
Copy full SHA for c364b66 - Browse repository at this point
Copy the full SHA c364b66View commit details -
Configuration menu - View commit details
-
Copy full SHA for fc949ce - Browse repository at this point
Copy the full SHA fc949ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8260ea3 - Browse repository at this point
Copy the full SHA 8260ea3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 31b1f37 - Browse repository at this point
Copy the full SHA 31b1f37View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0191c1b - Browse repository at this point
Copy the full SHA 0191c1bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 81f7f2d - Browse repository at this point
Copy the full SHA 81f7f2dView commit details -
Configuration menu - View commit details
-
Copy full SHA for b6141fb - Browse repository at this point
Copy the full SHA b6141fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for bfffecf - Browse repository at this point
Copy the full SHA bfffecfView commit details -
cmake: Fix darwin-specific remove-systemconfiguration-dep patch
Unbreaks cmakeMinimal on darwin. Co-authored-by: Ryan Burns <rtburns@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 54a65b5 - Browse repository at this point
Copy the full SHA 54a65b5View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb76309 - Browse repository at this point
Copy the full SHA fb76309View commit details -
Configuration menu - View commit details
-
Copy full SHA for aede202 - Browse repository at this point
Copy the full SHA aede202View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a722b7 - Browse repository at this point
Copy the full SHA 2a722b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 71260be - Browse repository at this point
Copy the full SHA 71260beView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5abffc8 - Browse repository at this point
Copy the full SHA 5abffc8View commit details
Commits on Jun 28, 2022
-
Configuration menu - View commit details
-
Copy full SHA for a2a2713 - Browse repository at this point
Copy the full SHA a2a2713View commit details -
Configuration menu - View commit details
-
Copy full SHA for bb8ff38 - Browse repository at this point
Copy the full SHA bb8ff38View commit details -
Configuration menu - View commit details
-
Copy full SHA for d795dc4 - Browse repository at this point
Copy the full SHA d795dc4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 54ae4bd - Browse repository at this point
Copy the full SHA 54ae4bdView commit details -
Merge pull request #173702 from bdd/go-checkFlags
go-modules/packages: Run unit tests under subdirs
Configuration menu - View commit details
-
Copy full SHA for 4f8a04f - Browse repository at this point
Copy the full SHA 4f8a04fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a40b19 - Browse repository at this point
Copy the full SHA 9a40b19View commit details -
Configuration menu - View commit details
-
Copy full SHA for 36f8479 - Browse repository at this point
Copy the full SHA 36f8479View commit details -
Configuration menu - View commit details
-
Copy full SHA for 009d5bf - Browse repository at this point
Copy the full SHA 009d5bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 479c304 - Browse repository at this point
Copy the full SHA 479c304View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 365831b - Browse repository at this point
Copy the full SHA 365831bView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 2610551 - Browse repository at this point
Copy the full SHA 2610551View commit details -
Configuration menu - View commit details
-
Copy full SHA for 44c9bff - Browse repository at this point
Copy the full SHA 44c9bffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 474cd82 - Browse repository at this point
Copy the full SHA 474cd82View commit details -
Configuration menu - View commit details
-
Copy full SHA for 611edec - Browse repository at this point
Copy the full SHA 611edecView commit details -
Configuration menu - View commit details
-
Copy full SHA for d97e911 - Browse repository at this point
Copy the full SHA d97e911View commit details -
Configuration menu - View commit details
-
Copy full SHA for 71ad813 - Browse repository at this point
Copy the full SHA 71ad813View commit details -
Configuration menu - View commit details
-
Copy full SHA for 64d95b0 - Browse repository at this point
Copy the full SHA 64d95b0View commit details
Commits on Jun 29, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 58d8ce7 - Browse repository at this point
Copy the full SHA 58d8ce7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 68da255 - Browse repository at this point
Copy the full SHA 68da255View commit details -
Merge pull request #179159 from dbarrosop/python-updates
python310Packages.urllib3: remove pyopenssl as it is no longer recommended
Configuration menu - View commit details
-
Copy full SHA for 58eb7f7 - Browse repository at this point
Copy the full SHA 58eb7f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 33ca33b - Browse repository at this point
Copy the full SHA 33ca33bView commit details -
Revert "ghc: Work around broken pyopenssl on aarch64-darwin"
This reverts commit 7898af7.
Configuration menu - View commit details
-
Copy full SHA for 4650f24 - Browse repository at this point
Copy the full SHA 4650f24View commit details -
Configuration menu - View commit details
-
Copy full SHA for 919e04f - Browse repository at this point
Copy the full SHA 919e04fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 601d9db - Browse repository at this point
Copy the full SHA 601d9dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 19be303 - Browse repository at this point
Copy the full SHA 19be303View commit details -
Configuration menu - View commit details
-
Copy full SHA for ec0f3ed - Browse repository at this point
Copy the full SHA ec0f3edView commit details -
Patches: the two seemed included in the release; I also checked that the conditional patches still all apply.
Configuration menu - View commit details
-
Copy full SHA for 3f88d51 - Browse repository at this point
Copy the full SHA 3f88d51View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6ed6f0c - Browse repository at this point
Copy the full SHA 6ed6f0cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f9f65f0 - Browse repository at this point
Copy the full SHA f9f65f0View commit details -
Merge pull request #179506 from SuperSandro2000/pyopenssl-ghc
Revert GHC pyopenssl workarounds
Configuration menu - View commit details
-
Copy full SHA for fa3f2e3 - Browse repository at this point
Copy the full SHA fa3f2e3View commit details -
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")
Configuration menu - View commit details
-
Copy full SHA for e1919b2 - Browse repository at this point
Copy the full SHA e1919b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 30392f6 - Browse repository at this point
Copy the full SHA 30392f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for c51b11b - Browse repository at this point
Copy the full SHA c51b11bView commit details -
Merge pull request #179421 from K900/bump-pythran
python310Packages.pythran: 0.9.12 -> 0.11.0
Configuration menu - View commit details
-
Copy full SHA for df0bbd3 - Browse repository at this point
Copy the full SHA df0bbd3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b2922c - Browse repository at this point
Copy the full SHA 2b2922cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 40e2668 - Browse repository at this point
Copy the full SHA 40e2668View commit details -
Configuration menu - View commit details
-
Copy full SHA for 77454bd - Browse repository at this point
Copy the full SHA 77454bdView commit details
Commits on Jun 30, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 14024fe - Browse repository at this point
Copy the full SHA 14024feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 965570c - Browse repository at this point
Copy the full SHA 965570cView commit details -
Merge pull request #169378 from amjoseph-nixpkgs/stdenv-makeStaticLib…
…raries-do-what-comment-says stdenv: make stage3.{gmp,mpfr,mpc,isl} do what the comment says
Configuration menu - View commit details
-
Copy full SHA for 2fcdf54 - Browse repository at this point
Copy the full SHA 2fcdf54View commit details -
Configuration menu - View commit details
-
Copy full SHA for c9c7eb8 - Browse repository at this point
Copy the full SHA c9c7eb8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 458d91e - Browse repository at this point
Copy the full SHA 458d91eView commit details -
libv4l: fix build for non-glibc platforms
argp is a Glibc-specific feature.
Configuration menu - View commit details
-
Copy full SHA for f031daf - Browse repository at this point
Copy the full SHA f031dafView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9ffc727 - Browse repository at this point
Copy the full SHA 9ffc727View commit details -
Configuration menu - View commit details
-
Copy full SHA for b23c3d5 - Browse repository at this point
Copy the full SHA b23c3d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for dcbdbb9 - Browse repository at this point
Copy the full SHA dcbdbb9View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 77e6eda - Browse repository at this point
Copy the full SHA 77e6edaView commit details -
Configuration menu - View commit details
-
Copy full SHA for e4e7d22 - Browse repository at this point
Copy the full SHA e4e7d22View commit details -
Configuration menu - View commit details
-
Copy full SHA for 49270f7 - Browse repository at this point
Copy the full SHA 49270f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for a1edc2f - Browse repository at this point
Copy the full SHA a1edc2fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e621ea - Browse repository at this point
Copy the full SHA 6e621eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 92370d9 - Browse repository at this point
Copy the full SHA 92370d9View commit details
Commits on Jul 1, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 2ccd4bb - Browse repository at this point
Copy the full SHA 2ccd4bbView commit details -
Configuration menu - View commit details
-
Copy full SHA for d5a880f - Browse repository at this point
Copy the full SHA d5a880fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 039a68c - Browse repository at this point
Copy the full SHA 039a68cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f6b27da - Browse repository at this point
Copy the full SHA f6b27daView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a96397 - Browse repository at this point
Copy the full SHA 1a96397View commit details -
haskell.compiler.ghc865Binary: add powerpc64le bootstrap
Adam Joseph authoredJul 1, 2022 Configuration menu - View commit details
-
Copy full SHA for 86c7c09 - Browse repository at this point
Copy the full SHA 86c7c09View commit details -
Configuration menu - View commit details
-
Copy full SHA for faaf0a9 - Browse repository at this point
Copy the full SHA faaf0a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1385a15 - Browse repository at this point
Copy the full SHA 1385a15View commit details -
Merge pull request #179468 from alyssais/libsepol-parallel
libsepol: enable parallel building
Configuration menu - View commit details
-
Copy full SHA for 5811ea7 - Browse repository at this point
Copy the full SHA 5811ea7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 88738c7 - Browse repository at this point
Copy the full SHA 88738c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for c99ba0c - Browse repository at this point
Copy the full SHA c99ba0cView commit details -
Merge pull request #179728 from squalus/setuptools-scm-cross-staging-2
python310Packages.setuptools-scm: fix cross compile of dependents
Configuration menu - View commit details
-
Copy full SHA for 8890d83 - Browse repository at this point
Copy the full SHA 8890d83View commit details -
Merge pull request #179101 from qowoz/sqlite
sqlite: 3.38.5 -> 3.39.0
Configuration menu - View commit details
-
Copy full SHA for 0eaa7de - Browse repository at this point
Copy the full SHA 0eaa7deView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e9dd6b - Browse repository at this point
Copy the full SHA 0e9dd6bView commit details -
Merge pull request #178689 from trofi/configurePlatform-luarocks
luarocks: explicitly set 'configurePlatforms = [ ];'
Configuration menu - View commit details
-
Copy full SHA for 4090c10 - Browse repository at this point
Copy the full SHA 4090c10View commit details -
Configuration menu - View commit details
-
Copy full SHA for 52e229f - Browse repository at this point
Copy the full SHA 52e229fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7907ea3 - Browse repository at this point
Copy the full SHA 7907ea3View commit details -
Merge pull request #179595 from SuperSandro2000/python310Packages.req…
…uests python310Packages.requests: 2.28.0 -> 2.28.1
Configuration menu - View commit details
-
Copy full SHA for 2afeca8 - Browse repository at this point
Copy the full SHA 2afeca8View commit details -
Merge pull request #179476 from SuperSandro2000/python310Packages.jso…
…nschema python310Packages.jsonschema: 4.6.0 -> 4.6.1
Configuration menu - View commit details
-
Copy full SHA for 394c952 - Browse repository at this point
Copy the full SHA 394c952View commit details -
Merge pull request #179479 from SuperSandro2000/python310Packages.pyc…
…ares python310Packages.pycares: 4.2.0 -> 4.2.1
Configuration menu - View commit details
-
Copy full SHA for 378c023 - Browse repository at this point
Copy the full SHA 378c023View commit details -
Merge pull request #178779 from SuperSandro2000/python310Packages.babel
python310Packages.babel: 2.10.1 -> 2.10.3
Configuration menu - View commit details
-
Copy full SHA for 6f47468 - Browse repository at this point
Copy the full SHA 6f47468View commit details -
Merge pull request #179444 from SuperSandro2000/fix-gitea-commit-search
pcre2: fix gitea websearch crashing when searching for a plain string
Configuration menu - View commit details
-
Copy full SHA for c990bd6 - Browse repository at this point
Copy the full SHA c990bd6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 68ad68a - Browse repository at this point
Copy the full SHA 68ad68aView commit details -
Merge #179109: coreutils: reintroduce patch disabling SEEK_HOLE
...into staging
Configuration menu - View commit details
-
Copy full SHA for abcd500 - Browse repository at this point
Copy the full SHA abcd500View commit details -
Configuration menu - View commit details
-
Copy full SHA for 97be985 - Browse repository at this point
Copy the full SHA 97be985View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb30e16 - Browse repository at this point
Copy the full SHA fb30e16View commit details
Commits on Jul 2, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 1961d0a - Browse repository at this point
Copy the full SHA 1961d0aView commit details -
Configuration menu - View commit details
-
Copy full SHA for f507277 - Browse repository at this point
Copy the full SHA f507277View commit details -
Configuration menu - View commit details
-
Copy full SHA for cc49d57 - Browse repository at this point
Copy the full SHA cc49d57View commit details -
Merge #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.
Configuration menu - View commit details
-
Copy full SHA for aab2ab5 - Browse repository at this point
Copy the full SHA aab2ab5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 239c4e7 - Browse repository at this point
Copy the full SHA 239c4e7View commit details
Commits on Jul 3, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 5d9e711 - Browse repository at this point
Copy the full SHA 5d9e711View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d0e70a - Browse repository at this point
Copy the full SHA 3d0e70aView commit details -
Merge #176598: gnupg: 2.3.4 -> 2.3.6, patch CVE-2022-34903
...into staging-next
Configuration menu - View commit details
-
Copy full SHA for f42d2ff - Browse repository at this point
Copy the full SHA f42d2ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for bd3785f - Browse repository at this point
Copy the full SHA bd3785fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 00b3f42 - Browse repository at this point
Copy the full SHA 00b3f42View commit details -
Configuration menu - View commit details
-
Copy full SHA for fc65c5c - Browse repository at this point
Copy the full SHA fc65c5cView commit details
Commits on Jul 4, 2022
-
Configuration menu - View commit details
-
Copy full SHA for a653bba - Browse repository at this point
Copy the full SHA a653bbaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8df12a1 - Browse repository at this point
Copy the full SHA 8df12a1View commit details -
Upstream confirmed that it's an issue in the tests with sqlite update. Broken sub-tests could be skipped instead, I suppose, if someone cared.
Configuration menu - View commit details
-
Copy full SHA for f31f162 - Browse repository at this point
Copy the full SHA f31f162View commit details -
Configuration menu - View commit details
-
Copy full SHA for 41e24f5 - Browse repository at this point
Copy the full SHA 41e24f5View commit details -
Merge #180095: tracker: use upstream patch instead of disabling test
...into staging-next
Configuration menu - View commit details
-
Copy full SHA for 4f6caef - Browse repository at this point
Copy the full SHA 4f6caefView commit details -
Configuration menu - View commit details
-
Copy full SHA for 33b3f97 - Browse repository at this point
Copy the full SHA 33b3f97View commit details -
Configuration menu - View commit details
-
Copy full SHA for 54d54fd - Browse repository at this point
Copy the full SHA 54d54fdView commit details
Commits on Jul 5, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 2b746ce - Browse repository at this point
Copy the full SHA 2b746ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for c0b8d5d - Browse repository at this point
Copy the full SHA c0b8d5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c17a44 - Browse repository at this point
Copy the full SHA 0c17a44View commit details -
Configuration menu - View commit details
-
Copy full SHA for 060674a - Browse repository at this point
Copy the full SHA 060674aView commit details
Commits on Jul 6, 2022
-
Configuration menu - View commit details
-
Copy full SHA for c505b8a - Browse repository at this point
Copy the full SHA c505b8aView commit details -
Configuration menu - View commit details
-
Copy full SHA for f475dc6 - Browse repository at this point
Copy the full SHA f475dc6View commit details -
Configuration menu - View commit details
-
Copy full SHA for fc60f03 - Browse repository at this point
Copy the full SHA fc60f03View commit details -
Configuration menu - View commit details
-
Copy full SHA for 22e81f3 - Browse repository at this point
Copy the full SHA 22e81f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 268c675 - Browse repository at this point
Copy the full SHA 268c675View commit details -
python310Packages.google-auth: Fix tests after removing pyopenssl (#1…
…80301) Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for be9b19d - Browse repository at this point
Copy the full SHA be9b19dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f17eb60 - Browse repository at this point
Copy the full SHA f17eb60View commit details
Commits on Jul 7, 2022
-
Configuration menu - View commit details
-
Copy full SHA for c0b6f4c - Browse repository at this point
Copy the full SHA c0b6f4cView commit details -
Configuration menu - View commit details
-
Copy full SHA for a9e0051 - Browse repository at this point
Copy the full SHA a9e0051View commit details -
gpgme: fix a test after disallowing compressed signatures
/cc PR #180336 I'm not entirely sure about this, as I couldn't spend much time, but it seemed plausible that the patch caused a different kind of errors in this tested case - though it's possible I messed the test up. Either way, the tests seem to pass now, unblocking the CVE fixes ;-)
Configuration menu - View commit details
-
Copy full SHA for db6b3e0 - Browse repository at this point
Copy the full SHA db6b3e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1fc7604 - Browse repository at this point
Copy the full SHA 1fc7604View commit details -
Configuration menu - View commit details
-
Copy full SHA for 312ad6d - Browse repository at this point
Copy the full SHA 312ad6dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7927333 - Browse repository at this point
Copy the full SHA 7927333View commit details -
Configuration menu - View commit details
-
Copy full SHA for ef2e27e - Browse repository at this point
Copy the full SHA ef2e27eView commit details -
Configuration menu - View commit details
-
Copy full SHA for ddcb3f9 - Browse repository at this point
Copy the full SHA ddcb3f9View commit details -
Merge branch 'master' into staging-next
The purpose is to integrate the usual Haskell rebuild.
Configuration menu - View commit details
-
Copy full SHA for c869aa9 - Browse repository at this point
Copy the full SHA c869aa9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7bf7571 - Browse repository at this point
Copy the full SHA 7bf7571View commit details -
proj_7: drop tests that time out with newest sqlite
This version is really being phased out, so let's hope it's better somewhat working than not building.
Configuration menu - View commit details
-
Copy full SHA for f5adaf2 - Browse repository at this point
Copy the full SHA f5adaf2View commit details -
Merge pull request #180234 from andrew-d/andrew/twisted-pyopenssl-aar…
…ch64-darwin python310Packages.twisted: remove pyOpenSSL checkInput on aarch64-darwin
Configuration menu - View commit details
-
Copy full SHA for ccf89af - Browse repository at this point
Copy the full SHA ccf89afView commit details
Commits on Jul 8, 2022
-
Configuration menu - View commit details
-
Copy full SHA for e112391 - Browse repository at this point
Copy the full SHA e112391View commit details -
Merge #180518: python310Packages.selenium: fix dependencies
...into staging-next
Configuration menu - View commit details
-
Copy full SHA for 7147d42 - Browse repository at this point
Copy the full SHA 7147d42View commit details -
Configuration menu - View commit details
-
Copy full SHA for f08a215 - Browse repository at this point
Copy the full SHA f08a215View commit details -
Merge #180578: proj_7: drop tests that time out
... with newest sqlite (into staging-next)
Configuration menu - View commit details
-
Copy full SHA for 8e1f71e - Browse repository at this point
Copy the full SHA 8e1f71eView commit details -
Configuration menu - View commit details
-
Copy full SHA for add0201 - Browse repository at this point
Copy the full SHA add0201View commit details