Commit Graph

6917 Commits

Author SHA1 Message Date
github-actions[bot]
822bf096f2
Merge staging-next into staging 2022-11-07 00:04:07 +00:00
github-actions[bot]
e51ba60580
Merge master into staging-next 2022-11-07 00:03:30 +00:00
Jörg Thalheim
7eccc4973c
Merge pull request #195055 from Mic92/buildPythonPackage
buildPythonPackage: fix regression if no setuptools is used
2022-11-06 20:37:18 +01:00
Doron Behar
b42282abdf octave: 7.1.0 -> 7.3.0 2022-11-05 20:56:58 +02:00
Sergei Trofimovich
3c65029d0d
Merge pull request #198672 from trofi/pythonFull-without-xlibsWrapper
pythonFull: drop unused xlibsWrapper input
2022-11-05 10:18:25 +00:00
github-actions[bot]
2248464524
Merge staging-next into staging 2022-11-04 12:02:07 +00:00
R. Ryantm
d92b6cead0 clojure: 1.11.1.1182 -> 1.11.1.1189 2022-11-03 04:47:14 +00:00
github-actions[bot]
89bfc5f960
Merge staging-next into staging 2022-11-03 00:02:55 +00:00
Thiago Kenji Okada
9e7feda53c
Merge pull request #199153 from r-ryantm/auto-update/babashka
babashka: 1.0.164 -> 1.0.165
2022-11-02 23:21:54 +00:00
R. Ryantm
da44bf129d babashka: 1.0.164 -> 1.0.165 2022-11-02 11:52:45 +00:00
github-actions[bot]
ff1df95c8f
Merge staging-next into staging 2022-11-02 06:05:15 +00:00
github-actions[bot]
d6b8789005
Merge master into staging-next 2022-11-02 06:04:45 +00:00
R. Ryantm
fdd9ddb34c jruby: 9.3.8.0 -> 9.3.9.0 2022-11-02 10:49:36 +08:00
Pierre Bourdon
4fe74d5257
Merge pull request #198802 from delroth/relax-deps-hook-regexp
pythonRelaxDepsHook: improve Requires-Dist parsing
2022-11-01 15:10:07 +01:00
Pierre Bourdon
1f197e240e
pythonRelaxDepsHook: improve Requires-Dist parsing
Prior to this commit, pythonRelaxDeps would only support removing
version constraints from "Requires-Dist" lines formatted in a particular
way ("foo (>= 1.2.3)"). This way is deprecated as per PyPA Core Metadata
Specs v2.1 [1]:

> Tools parsing the format should accept optional parentheses around
> this, but tools generating it should not use parentheses.

Additionally, a "Requires-Dist" dependency specification can contain
other metadata than just package name and version (extra names,
environment marker). These were being silently dropped by the prior
version of pythonRelaxDeps, or the version could not be relaxed.

The actual grammar is defined in PEP 508 [2]. Our tool of choice here is
sed extended regexps, so there's only so much we can do to be correct
with this parser. The regexp implemented in this commit makes an attempt
at supporting [extra] names, ; env_markers, as well as version specs
without parentheses. There are still unsupported features (URL specs) as
well as unhandled edge cases, but at some point trying to make the
regexp better is bound to awake ZALGO [3].

[1] https://packaging.python.org/en/latest/specifications/core-metadata/#requires-dist-multiple-use
[2] https://peps.python.org/pep-0508/#grammar
[3] https://stackoverflow.com/a/1732454/179806
2022-10-31 17:05:12 +01:00
github-actions[bot]
76cceffaf9
Merge master into staging-next 2022-10-31 12:01:26 +00:00
Maximilian Bosch
42be0c4f20
Merge pull request #198499 from r-ryantm/auto-update/evcxr
evcxr: 0.14.0 -> 0.14.1
2022-10-31 10:08:01 +01:00
Sergei Trofimovich
845c39bab5 pythonFull: drop unused xlibsWrapper input
Tested as no material change in `out` output with `diffoscope`.
2022-10-30 16:47:30 +00:00
github-actions[bot]
d3cd7d0199
Merge master into staging-next 2022-10-29 18:01:22 +00:00
R. Ryantm
84beab6d45 evcxr: 0.14.0 -> 0.14.1 2022-10-29 17:05:27 +00:00
Mario Rodas
8179e52c63
Merge pull request #198472 from marsam/update-luau
luau: 0.550 -> 0.551
2022-10-29 11:35:33 -05:00
Pol Dellaiera
f8cd3d8b2b
php81: 8.1.11 -> 8.1.12 2022-10-29 08:34:15 +02:00
Pol Dellaiera
305a0e8e65
php80: 8.0.24 -> 8.0.25 2022-10-29 08:33:57 +02:00
Mario Rodas
16a3d3c1b3 luau: 0.550 -> 0.551
https://github.com/Roblox/luau/releases/tag/0.551
2022-10-29 04:20:00 +00:00
github-actions[bot]
6e5f43a5bd
Merge master into staging-next 2022-10-28 18:01:29 +00:00
Frederik Rietdijk
cb445d527b python3Packages: stdenv does not have to be a Python module
stdenv is included in the package set. It does not provide a Python
module however and was therefore catched by the test. Because we do need
it we provide an exception for it.
2022-10-28 19:11:31 +02:00
github-actions[bot]
e0499d49ca
Merge staging-next into staging 2022-10-28 06:01:46 +00:00
R. Ryantm
3023508eba wasmtime: 2.0.0 -> 2.0.1 2022-10-28 00:44:32 +00:00
Frederik Rietdijk
d3ca664b6a Merge staging-next into staging 2022-10-27 10:06:54 +02:00
Frederik Rietdijk
33d12e5f0b pythonPackages: ensure all derivations provide python modules
This adds a test to ensure no new uses of `buildPythonApplication` can
be added to `python-packages.nix`.

Python packages can be grouped into two groups: 1) applications and 2)
packages providing importable modules. In `python-packages.nix` we only
want to have 2). 1) should be in the top-level package set.

To achieve this, all setup hooks need to be marked as being a setup hook.
For the setup hooks in the Python packages set this is done by creating
a new builder, `makePythonHook`.

Because there were issues with splicing, the file importing all the hooks
is converted to an extension. All non-packages were moved out of `python-packages.nix`
into `python-packages-base.nix`. The `keep` argument to `makeScopeWithSplicing
was cleaned up as well; there is no need to keep this one manually in sync
reducing the risk of breaking cross-compilation.
2022-10-27 10:03:16 +02:00
github-actions[bot]
abfd2fe8a8
Merge staging-next into staging 2022-10-26 12:01:52 +00:00
Mario Rodas
420959735a
Merge pull request #197447 from marsam/add-luau
luau: init at 0.550
2022-10-26 05:31:03 -05:00
R. Ryantm
5fb74a0e7a clojure: 1.11.1.1177 -> 1.11.1.1182 2022-10-26 06:45:54 +00:00
github-actions[bot]
4e978a8caa
Merge staging-next into staging 2022-10-26 00:03:42 +00:00
figsoda
0f190ab597
Merge pull request #197767 from r-ryantm/auto-update/joker
joker: 1.0.1 -> 1.0.2
2022-10-25 15:20:38 -04:00
github-actions[bot]
81a6c5a54c
Merge staging-next into staging 2022-10-25 18:16:24 +00:00
R. Ryantm
b9c493616b joker: 1.0.1 -> 1.0.2 2022-10-25 17:34:04 +00:00
Martin Weinelt
4932ed92a4
python311: 3.11.0-rc2 -> 3.11.0
https://www.python.org/downloads/release/python-3110/
https://discuss.python.org/t/python-3-11-0-final-is-now-available/20291
2022-10-25 00:30:25 +02:00
github-actions[bot]
38a8b47046
Merge staging-next into staging 2022-10-24 18:06:30 +00:00
R. Ryantm
b65f049b6b clojure: 1.11.1.1165 -> 1.11.1.1177 2022-10-24 11:55:27 +00:00
github-actions[bot]
f4c71b2f8c
Merge staging-next into staging 2022-10-23 18:02:19 +00:00
Anderson Torres
925c0fa54a
Merge pull request #197322 from atorres1985-contrib/cleanup-maintainers
Cleanup maintainers
2022-10-23 11:59:28 -03:00
AndersonTorres
a0ae2b81c0 picolisp: remove tohl
Because tohl disappeared (last seen 2021-01-28).
2022-10-23 11:36:17 -03:00
AndersonTorres
313d405f46 gtk-server: remove tohl from meta.maintainers list
Because tohl disappeared (last seen 2021-01-28).
2022-10-23 01:22:31 -03:00
AndersonTorres
e93d594a4c clisp hg: remove tohl from meta.maintainers list
Because tohl disappeared (last seen 2021-01-28).
2022-10-23 01:19:49 -03:00
AndersonTorres
023b6ea7c7 clisp default: remove tohl from meta.maintainers list
Because tohl disappeared (last seen 2021-01-28).
2022-10-23 01:18:48 -03:00
github-actions[bot]
d079720429
Merge staging-next into staging 2022-10-22 12:01:58 +00:00
github-actions[bot]
71e4896d63
Merge master into staging-next 2022-10-22 12:01:25 +00:00
Mario Rodas
2cf27dbed8 luau: init at 0.550 2022-10-22 04:20:00 +00:00
Rafael Fernández López
1f5628592e
wasmtime: 1.0.1 -> 2.0.0 2022-10-21 10:02:34 +02:00