Commit Graph
444037 Commits
Author SHA1 Message Date
Guillaume MaudouxandGitHub aa7cfc3aed Merge pull request #210908 from Yarny0/auto-patchelf
autoPatchelfHook: fix symlink handling
2023-01-15 17:18:01 +01:00
Michael WeissandGitHub 9fa8315130 Merge pull request #210412 from r-ryantm/auto-update/libxkbcommon
libxkbcommon: 1.4.1 -> 1.5.0
2023-01-15 13:36:21 +01:00
github-actions[bot]andGitHub 9507873881 Merge staging-next into staging 2023-01-15 12:01:56 +00:00
github-actions[bot]andGitHub 236c622e0f Merge master into staging-next 2023-01-15 12:01:24 +00:00
Kim LindbergerandGitHub 5291eac38a Merge pull request #206543 from r-ryantm/auto-update/keycloak
keycloak: 20.0.1 -> 20.0.3
2023-01-15 12:54:33 +01:00
Jonas HeinrichandGitHub 34f6fceb6a Merge pull request #210876 from urandom2/wordpress1
wordpressPackages: add builtins and update
2023-01-15 12:50:28 +01:00
Pascal BachandGitHub b5c7573211 Merge pull request #210720 from r-ryantm/auto-update/minio-client
minio-client: 2022-12-13T00-23-28Z -> 2023-01-11T03-14-16Z
2023-01-15 12:49:10 +01:00
Pascal BachandGitHub fee4025997 Merge pull request #210549 from r-ryantm/auto-update/dsview
dsview: 1.2.1 -> 1.2.2
2023-01-15 12:47:46 +01:00
Martin WeineltandGitHub a728ce407d Merge pull request #210881 from mweinelt/beets-unicompat-fix 2023-01-15 11:23:01 +00:00
Martin WeineltandGitHub 309a79d1c4 Merge pull request #210883 from K900/mpd-pipewire-fix 2023-01-15 11:18:30 +00:00
K900 c9f1487cb8 mpd: fix build 2023-01-15 14:09:16 +03:00
Martin Weinelt 7d75060573 beets: Apply patch to fix unidecode>1.3.5 compat 2023-01-15 12:03:41 +01:00
Martin WeineltandGitHub 2d798b38ac Merge pull request #210878 from mweinelt/meson-python-fix 2023-01-15 10:32:47 +00:00
Martin Weinelt 8ecc4d8479 python3Packages.meson-python: Propagate typing-extensions
It is both a build and a runtime dependency for python<3.10.
2023-01-15 11:29:50 +01:00
Colin Arnott cd8ee4179c wordpressPackages: add builtins and update
As a companion to #210873, this change adds some of the builtin plugins
and themes, that generally ship with wordpress, so that consumers can
explicitly opt into including them in their wordpress derivation.
2023-01-15 10:27:39 +00:00
Martin WeineltandGitHub 7b4bf87e27 Merge pull request #210874 from mweinelt/pydantic-disable-py39-docs 2023-01-15 10:24:21 +00:00
Martin Weinelt 52b9d9ad0e python3Packages.pydantic Disable docs build for python<3.10
It fails, because the examples require python3.10 to be executed.

```
WARNING: examples for 3.10+ requires python 3.10. They won't be executed
Traceback (most recent call last):
  File "/build/source/docs/build/main.py", line 31, in <module>
    sys.exit(main())
  File "/build/source/docs/build/main.py", line 27, in main
    return exec_examples()
  File "/build/source/docs/build/exec_examples.py", line 354, in exec_examples
    versions.extend(populate_upgraded_versions(file, file_text, lowest_version))
  File "/build/source/docs/build/exec_examples.py", line 294, in populate_upgraded_versions
    new_file.write_text(upgraded_file_text)
  File "/nix/store/9pilxd2znfsj64ybyg8lmgql9vy3fq4g-python3-3.9.16/lib/python3.9/pathlib.py", line 1285, in write_text
    with self.open(mode='w', encoding=encoding, errors=errors) as f:
  File "/nix/store/9pilxd2znfsj64ybyg8lmgql9vy3fq4g-python3-3.9.16/lib/python3.9/pathlib.py", line 1252, in open
    return io.open(self, mode, buffering, encoding, errors, newline,
  File "/nix/store/9pilxd2znfsj64ybyg8lmgql9vy3fq4g-python3-3.9.16/lib/python3.9/pathlib.py", line 1120, in _opener
    return self._accessor.open(self, flags, mode)
FileNotFoundError: [Errno 2] No such file or directory: '/build/source/docs/.tmp_examples/upgraded/dataclasses_default_schema_3_9.py'
make: *** [Makefile:118: docs] Error 1
```
2023-01-15 11:20:19 +01:00
Martin WeineltandGitHub 686f96f2b6 Merge pull request #210868 from mweinelt/fix-logutils 2023-01-15 10:16:49 +00:00
Martin Weinelt 8ceba79d54 python3Packages.logutils: Fix tests 2023-01-15 11:16:16 +01:00
Yarny0 57c8c6c3d2 Revert "tsm-client: fix patching rpath with autoPatchelf"
This reverts commit 1ed9ba08f1.

After the underlying bug in `auto-patchelf.py` got fixed,
this workaround is no longer necessary.
2023-01-15 10:57:22 +01:00
Yarny0 818d0f8cf1 auto-patchelf: don't resolve symlinks if basenames don't match
The auto-patchelf python script assembles a list of
library (so=shared object) file names and their paths.
This helps speed up the discovery of
library files later when patching elf files.
As further optimization, if a symlink points to a library file,
the script uses the resolved path and file name.
However, this produces a broken list entry if the
symlink's target name doesn't match the symlink's name.

A symptom of the bug, affecting the `tsm-client` package,
is fixed in https://github.com/NixOS/nixpkgs/pull/172372 .

The commit at hand stops resolving symlinks if
the target name differs from the symlink's name.
The commit has been authored by
layus (Guillaume Maudoux <layus.on@gmail.com>)
in pull request comment

https://github.com/NixOS/nixpkgs/pull/172372#issuecomment-1194687183
2023-01-15 10:57:22 +01:00
Martin WeineltandGitHub 0d00dd3a8e Merge pull request #210859 from vcunat/p/firefox-gcc_s 2023-01-15 09:45:03 +00:00
Martin WeineltandGitHub 6cd777e74b Merge pull request #210841 from vcunat/p/afdko-pick 2023-01-15 09:40:06 +00:00
Nick CaoandGitHub 3030265448 Merge pull request #210805 from r-ryantm/auto-update/cmctl
cmctl: 1.10.1 -> 1.11.0
2023-01-15 17:38:15 +08:00
Matt McHenryandRobert Helgesson d18008b8ea eclipses: 2022-09 -> 2022-12
drop .eclipseproduct workaround from 2012-12 /
8a7561ec09
2023-01-15 10:36:39 +01:00
Nick CaoandGitHub 3c6fa9272f Merge pull request #210809 from NickCao/qt5-hotfix
qt5: fetch submodules
2023-01-15 17:15:59 +08:00
Nick Cao c140730d40 qt5.qt3d: override src to include submodules 2023-01-15 17:15:21 +08:00
Fabian AffolterandGitHub e8eca3365d Merge pull request #210679 from r-ryantm/auto-update/ldapmonitor
ldapmonitor: 1.3 -> 1.4
2023-01-15 10:11:55 +01:00
Fabian AffolterandGitHub a394fbcb94 Merge pull request #210733 from r-ryantm/auto-update/python310Packages.pysmbc
python310Packages.pysmbc: 1.0.24 -> 1.0.25.1
2023-01-15 10:09:47 +01:00
Vladimír Čunát 2348c633d9 Merge #209662: firefox-bin: 108.0 -> 108.0.2 2023-01-15 09:54:47 +01:00
Vladimír Čunát cdf02835eb firefox: fixup build on aarch64-linux
It's the issue with old libgcc_s propagated via our glibc package; e.g.
https://github.com/NixOS/nixpkgs/pull/209113
2023-01-15 09:13:34 +01:00
Jonas HeinrichandVladimír Čunát c343ac914e python3Packages.afdko: 3.9.0 -> 3.9.2
(forward-picked from commit d9a7ea8053 from PR #210181)

A test would fail the build otherwise since last staging-next:
https://hydra.nixos.org/eval/1789199?filter=afdko&compare=1789191
and that would block NixOS tests and thus nixos-unstable channel.
2023-01-15 09:06:47 +01:00
Sergei TrofimovichandGitHub 9c0068c40e Merge pull request #210752 from trofi/make-bootstrap-tools-libstdcxx-rpath
make-bootstrap-tools: fix test to include libstdc++ -rpath
2023-01-15 07:01:34 +00:00
Sergei TrofimovichandGitHub 3a3b623c8d Merge pull request #210741 from trofi/glibc-wipe-libgcc_s.so.1-ref
libc: wipe out all references from copied libgcc_s.so.1
2023-01-15 06:33:58 +00:00
Bobby RongandGitHub fd82d2bf83 Merge pull request #210810 from bobby285271/rm/mail-notification
mail-notification: remove an unused patch
2023-01-15 14:33:47 +08:00
github-actions[bot]andGitHub f867943980 Merge staging-next into staging 2023-01-15 06:01:36 +00:00
github-actions[bot]andGitHub 2aee96e200 Merge master into staging-next 2023-01-15 06:01:02 +00:00
Nikolay KorotkiyandGitHub e8e9febf8b Merge pull request #210820 from r-ryantm/auto-update/geographiclib
geographiclib: 2.1.1 -> 2.1.2
2023-01-15 09:22:09 +04:00
Stanisław PituchaandGitHub 24b160324c Merge pull request #210728 from r-ryantm/auto-update/owl-lisp
owl-lisp: 0.2 -> 0.2.1
2023-01-15 15:10:26 +11:00
R. Ryantm 4aba481aef geographiclib: 2.1.1 -> 2.1.2 2023-01-15 03:55:36 +00:00
figsodaandGitHub c35589639d Merge pull request #210589 from figsoda/process-viewer
process-viewer: 0.5.5 -> 0.5.6
2023-01-14 21:53:46 -05:00
Bobby Rong 4784154194 mail-notification: remove an unused patch
mail-notification is previously a top-level package.

The package is removed in 193c893, so this patch is not needed.
2023-01-15 10:39:23 +08:00
Stanisław PituchaandGitHub 76dd16945e Merge pull request #210777 from r-ryantm/auto-update/flyctl
flyctl: 0.0.443 -> 0.0.447
2023-01-15 13:38:01 +11:00
Bobby RongandGitHub 01814e4a4c Merge pull request #210726 from bobby285271/rm/gnome-2
gnome2.gnome_python: remove
2023-01-15 10:32:29 +08:00
Bobby RongandGitHub b065c6801b Merge pull request #210357 from bobby285271/upd/gnome
GNOME updates
2023-01-15 10:28:23 +08:00
R. Ryantm 005e5fc073 cmctl: 1.10.1 -> 1.11.0 2023-01-15 02:09:08 +00:00
Matthew "strager" GlazarandAustin Seipp 7875a11bd6 sapling: use latest Python
After upgrading to Sapling 0.2.20221222-152408-ha6a66d09, we no longer
need a specific version of Python. Use the Nixpkgs default.
2023-01-14 19:55:17 -06:00
SandroandGitHub 09091c7521 Merge pull request #209694 from wegank/skypeexport-darwin 2023-01-15 02:51:24 +01:00
b40f0196f3 megam: add darwin support (#209898)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2023-01-15 02:50:59 +01:00
SandroandGitHub fa8ae2120d Merge pull request #208715 from elohmeier/prom-rspamd-fix
Fixes https://github.com/NixOS/nixpkgs/issues/210390
2023-01-15 02:49:52 +01:00