Mario Rodas
3320ca4bcb
ruby: rubygems 3.2.16 -> 3.2.24
2021-07-16 04:20:00 +00:00
github-actions[bot]
6630d8e9bb
Merge staging-next into staging
2021-07-14 18:01:45 +00:00
Jörg Thalheim
7afa51c2bd
Merge remote-tracking branch 'upstream/master' into HEAD
2021-07-14 15:45:51 +02:00
Jan Tojnar
21f3b2b50b
Merge pull request #126558 from zhaofengli/libproxy-optional-js
...
libproxy: Make JavaScript optional
2021-07-14 03:59:33 +02:00
Sandro
06e62a0a98
Merge pull request #129797 from mweinelt/cpython/update
2021-07-12 03:08:01 +02:00
Martin Weinelt
bcda9c8cfc
Merge remote-tracking branch 'origin/master' into staging-next
2021-07-11 16:11:09 +02:00
Alyssa Ross
30ada3e6af
spidermonkey_68: fix cross
...
The use of unspliced llvmPackages in configureFlags was causing an
eval failure when cross-compiling, but since later versions of
Firefox/Spidermonkey can correctly detect clang and libclang without
those arguments being specified, we can just backport that
patch (which applies cleanly), and not have to worry about it any
more.
2021-07-11 12:11:54 +00:00
Martin Weinelt
b322c5ecaa
python37: 3.7.10 -> 3.7.11
2021-07-10 00:02:07 +02:00
Martin Weinelt
e1e245f203
python36: 3.6.13 -> 3.6.14
2021-07-10 00:01:56 +02:00
Martin Weinelt
360c50f11d
python39: 3.9.5 -> 3.9.6
2021-07-10 00:01:41 +02:00
Martin Weinelt
250f0514f2
python38: 3.8.10 -> 3.8.11
2021-07-10 00:01:20 +02:00
Martin Weinelt
fac5757eec
cpython: disable no-semantic-interposition with older clang versions
...
> clang-7: error: unknown argument: '-fno-semantic-interposition'
This primarily affects current darwin builds, but as soon as they
migrate to a newer clang version they will immediately start benefitting
from this change.
2021-07-09 22:24:43 +02:00
github-actions[bot]
958dc88d65
Merge master into staging-next
2021-07-08 12:01:23 +00:00
Sandro
4c1ff84d7d
Merge pull request #129542 from rvolosatovs/update/luajit
2021-07-08 13:39:38 +02:00
Dmitry Kalinkin
280e629ee0
Merge branch 'master' into staging-next
2021-07-08 04:38:15 -04:00
Roman Volosatovs
7992d315de
luajit_2_1: 2.1.0-2021-05-29 -> 2.1.0-2021-06-25
2021-07-07 16:26:09 +02:00
Roman Volosatovs
1775ee342a
luajit_2_0: 2.1.0-2021-05-29 -> 2.1.0-2021-06-08
2021-07-07 16:26:08 +02:00
Mario Rodas
afd61a6069
ruby_3_0: 3.0.1 -> 3.0.2
...
https://www.ruby-lang.org/en/news/2021/07/07/ruby-3-0-2-released/
2021-07-07 04:20:00 +00:00
Mario Rodas
5f9f17cc11
ruby_2_7: 2.7.3 -> 2.7.4
...
https://www.ruby-lang.org/en/news/2021/07/07/ruby-2-7-4-released/
2021-07-07 04:20:00 +00:00
Mario Rodas
2d420c1559
ruby_2_6: 2.6.7 -> 2.6.8
...
https://www.ruby-lang.org/en/news/2021/07/07/ruby-2-6-8-released/
2021-07-07 04:20:00 +00:00
Mario Rodas
6d4b46a56d
ruby: update RVM patchsets
2021-07-07 04:20:00 +00:00
github-actions[bot]
e04f827a74
Merge staging-next into staging
2021-07-06 18:01:55 +00:00
Vladimír Čunát
417563fab9
nix-exec: remove
...
As stated in d202a0ce67
, it hasn't worked for over four years.
2021-07-06 18:10:33 +02:00
Martin Weinelt
eb5659f4c2
Merge pull request #126962 from stigtsp/package/perl-5.34.0
2021-07-06 16:03:48 +02:00
Jonathan Ringer
07571e7ae5
python3: only enable LTO for 64bit builds
...
Avoid failures with 32bit builds:
```
cc1: error: LTO support has not been enabled in this configuration
```
2021-07-05 12:34:02 -07:00
Andreas Rammhold
1e47dd9cb8
cpython: Enable LTO on all builds as it doesn't break reproducibility
...
LTO allows us to optimise the binaries we are shipping a bit further
than just with the regular -Ox and other compiler flags. It also is
deterministic and doesn't harm our reproducibility efforts while
providing us with up to 10% performance gain (and sometimes slightly
slower). See the table below for a comparsion of this version with the
Python 3.9 build that sets -fno-semantic-interposition.
+-------------------------+--------------------+------------------------+--------------+------------------------+
| Benchmark | py39-nsip.nix.json | py39-nsip-lto.nix.json | Change | Significance |
+=========================+====================+========================+==============+========================+
| 2to3 | 642 ms | 620 ms | 1.03x faster | Significant (t=12.04) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| chameleon | 14.6 ms | 14.4 ms | 1.02x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| chaos | 182 ms | 182 ms | 1.00x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| crypto_pyaes | 175 ms | 172 ms | 1.02x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| deltablue | 11.2 ms | 11.2 ms | 1.00x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| django_template | 82.0 ms | 81.4 ms | 1.01x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| dulwich_log | 101 ms | 99.8 ms | 1.01x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| fannkuch | 634 ms | 638 ms | 1.01x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| float | 176 ms | 189 ms | 1.08x slower | Significant (t=-4.30) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| go | 366 ms | 365 ms | 1.00x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| hexiom | 14.9 ms | 15.1 ms | 1.01x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| json_dumps | 18.7 ms | 18.5 ms | 1.01x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| json_loads | 37.9 us | 37.3 us | 1.02x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| logging_format | 14.2 us | 14.3 us | 1.01x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| logging_silent | 305 ns | 313 ns | 1.02x slower | Significant (t=-3.91) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| logging_simple | 13.0 us | 13.2 us | 1.01x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| mako | 24.7 ms | 23.3 ms | 1.06x faster | Significant (t=10.74) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| meteor_contest | 130 ms | 128 ms | 1.01x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| nbody | 201 ms | 201 ms | 1.00x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| nqueens | 152 ms | 154 ms | 1.01x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| pathlib | 26.3 ms | 26.2 ms | 1.01x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| pickle | 13.1 us | 13.7 us | 1.05x slower | Significant (t=-10.36) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| pickle_dict | 26.6 us | 27.1 us | 1.02x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| pickle_list | 4.34 us | 4.31 us | 1.01x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| pickle_pure_python | 738 us | 759 us | 1.03x slower | Significant (t=-5.26) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| pidigits | 181 ms | 181 ms | 1.00x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| pyflate | 959 ms | 974 ms | 1.02x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| python_startup | 34.0 ms | 31.4 ms | 1.08x faster | Significant (t=29.75) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| python_startup_no_site | 15.3 ms | 14.5 ms | 1.06x faster | Significant (t=17.58) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| raytrace | 849 ms | 846 ms | 1.00x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| regex_compile | 261 ms | 261 ms | 1.00x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| regex_dna | 187 ms | 221 ms | 1.18x slower | Significant (t=-46.94) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| regex_effbot | 3.66 ms | 3.98 ms | 1.09x slower | Significant (t=-18.55) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| regex_v8 | 29.7 ms | 29.3 ms | 1.01x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| richards | 113 ms | 110 ms | 1.03x faster | Significant (t=3.47) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| scimark_fft | 592 ms | 590 ms | 1.00x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| scimark_lu | 253 ms | 265 ms | 1.05x slower | Significant (t=-8.97) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| scimark_monte_carlo | 170 ms | 177 ms | 1.04x slower | Significant (t=-4.96) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| scimark_sor | 310 ms | 315 ms | 1.02x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| scimark_sparse_mat_mult | 8.36 ms | 8.33 ms | 1.00x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| spectral_norm | 232 ms | 229 ms | 1.02x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| sqlalchemy_declarative | 185 ms | 183 ms | 1.01x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| sqlalchemy_imperative | 27.4 ms | 27.6 ms | 1.01x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| sqlite_synth | 4.73 us | 4.73 us | 1.00x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| sympy_expand | 813 ms | 819 ms | 1.01x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| sympy_integrate | 31.6 ms | 31.8 ms | 1.01x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| sympy_str | 477 ms | 479 ms | 1.00x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| sympy_sum | 245 ms | 247 ms | 1.01x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| telco | 11.3 ms | 11.4 ms | 1.00x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| tornado_http | 172 ms | 172 ms | 1.00x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| unpack_sequence | 56.2 ns | 51.2 ns | 1.10x faster | Significant (t=2.50) |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| unpickle | 19.8 us | 19.5 us | 1.02x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| unpickle_list | 5.75 us | 5.75 us | 1.00x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| unpickle_pure_python | 524 us | 522 us | 1.01x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| xml_etree_generate | 148 ms | 148 ms | 1.00x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| xml_etree_iterparse | 129 ms | 131 ms | 1.02x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| xml_etree_parse | 179 ms | 177 ms | 1.01x faster | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
| xml_etree_process | 118 ms | 119 ms | 1.00x slower | Not significant |
+-------------------------+--------------------+------------------------+--------------+------------------------+
2021-07-05 12:34:02 -07:00
Andreas Rammhold
322eb3596b
cpython: add enableNoSemanticInterposition flag
...
This flags enables the -fno-semantic-interposition compiler flag for all
our cpython builds by default. It can be disabled by overriding the
enableNoSemanticInterposition attribute.
This CFLAG has the impact that our python code runs up to 23% faster
than previously. See the pyperformance benchmark results below.
The only downside that exists is that we can no longer override
libpython symbols via LD_PRELOAD when calling the python interpreter. If
a user needs they can disable the newly introduced flag and use that
instead. However those situations should be rare.
The Fedora Project did the equivalent change in their Fedora 32 release
(and haven't reverted it yet). They wrote a nice [wiki page] about the
ups and downs of this change. I recommend reading that.
Benchmark results of running Python 3.9 before and after this change:
+-------------------------+---------------+--------------------+--------------+------------------------+
| Benchmark | py39.nix.json | py39-nsip.nix.json | Change | Significance |
+=========================+===============+====================+==============+========================+
| 2to3 | 666 ms | 642 ms | 1.04x faster | Significant (t=12.73) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| chameleon | 15.0 ms | 14.6 ms | 1.03x faster | Significant (t=4.70) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| chaos | 198 ms | 182 ms | 1.09x faster | Significant (t=13.73) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| crypto_pyaes | 185 ms | 175 ms | 1.06x faster | Significant (t=9.70) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| deltablue | 12.3 ms | 11.2 ms | 1.10x faster | Significant (t=14.45) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| django_template | 85.1 ms | 82.0 ms | 1.04x faster | Significant (t=6.61) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| dulwich_log | 102 ms | 101 ms | 1.01x faster | Not significant |
+-------------------------+---------------+--------------------+--------------+------------------------+
| fannkuch | 670 ms | 634 ms | 1.06x faster | Significant (t=15.87) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| float | 182 ms | 176 ms | 1.03x faster | Significant (t=7.32) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| go | 393 ms | 366 ms | 1.07x faster | Significant (t=17.63) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| hexiom | 15.8 ms | 14.9 ms | 1.06x faster | Significant (t=13.81) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| json_dumps | 19.3 ms | 18.7 ms | 1.03x faster | Significant (t=7.46) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| json_loads | 38.4 us | 37.9 us | 1.01x faster | Not significant |
+-------------------------+---------------+--------------------+--------------+------------------------+
| logging_format | 15.0 us | 14.2 us | 1.05x faster | Significant (t=6.32) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| logging_silent | 328 ns | 305 ns | 1.07x faster | Significant (t=8.85) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| logging_simple | 13.8 us | 13.0 us | 1.06x faster | Significant (t=10.77) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| mako | 25.2 ms | 24.7 ms | 1.02x faster | Not significant |
+-------------------------+---------------+--------------------+--------------+------------------------+
| meteor_contest | 133 ms | 130 ms | 1.03x faster | Significant (t=3.59) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| nbody | 222 ms | 201 ms | 1.10x faster | Significant (t=26.85) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| nqueens | 161 ms | 152 ms | 1.06x faster | Significant (t=8.84) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| pathlib | 28.4 ms | 26.3 ms | 1.08x faster | Significant (t=11.85) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| pickle | 13.8 us | 13.1 us | 1.06x faster | Significant (t=10.84) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| pickle_dict | 32.7 us | 26.6 us | 1.23x faster | Significant (t=32.43) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| pickle_list | 4.39 us | 4.34 us | 1.01x faster | Not significant |
+-------------------------+---------------+--------------------+--------------+------------------------+
| pickle_pure_python | 782 us | 738 us | 1.06x faster | Significant (t=15.71) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| pidigits | 184 ms | 181 ms | 1.01x faster | Not significant |
+-------------------------+---------------+--------------------+--------------+------------------------+
| pyflate | 1.02 sec | 959 ms | 1.07x faster | Significant (t=21.13) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| python_startup | 34.3 ms | 34.0 ms | 1.01x faster | Not significant |
+-------------------------+---------------+--------------------+--------------+------------------------+
| python_startup_no_site | 15.5 ms | 15.3 ms | 1.01x faster | Not significant |
+-------------------------+---------------+--------------------+--------------+------------------------+
| raytrace | 912 ms | 849 ms | 1.07x faster | Significant (t=11.21) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| regex_compile | 273 ms | 261 ms | 1.05x faster | Significant (t=5.82) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| regex_dna | 188 ms | 187 ms | 1.00x faster | Not significant |
+-------------------------+---------------+--------------------+--------------+------------------------+
| regex_effbot | 3.37 ms | 3.66 ms | 1.09x slower | Significant (t=-16.12) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| regex_v8 | 29.8 ms | 29.7 ms | 1.01x faster | Not significant |
+-------------------------+---------------+--------------------+--------------+------------------------+
| richards | 119 ms | 113 ms | 1.05x faster | Significant (t=5.71) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| scimark_fft | 625 ms | 592 ms | 1.06x faster | Significant (t=19.64) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| scimark_lu | 273 ms | 253 ms | 1.08x faster | Significant (t=16.68) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| scimark_monte_carlo | 186 ms | 170 ms | 1.10x faster | Significant (t=14.70) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| scimark_sor | 330 ms | 310 ms | 1.07x faster | Significant (t=11.89) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| scimark_sparse_mat_mult | 9.03 ms | 8.36 ms | 1.08x faster | Significant (t=17.71) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| spectral_norm | 247 ms | 232 ms | 1.06x faster | Significant (t=14.64) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| sqlalchemy_declarative | 194 ms | 185 ms | 1.04x faster | Significant (t=4.80) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| sqlalchemy_imperative | 28.2 ms | 27.4 ms | 1.03x faster | Significant (t=3.80) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| sqlite_synth | 4.89 us | 4.73 us | 1.03x faster | Significant (t=10.60) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| sympy_expand | 833 ms | 813 ms | 1.02x faster | Significant (t=4.82) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| sympy_integrate | 33.0 ms | 31.6 ms | 1.05x faster | Significant (t=6.47) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| sympy_str | 490 ms | 477 ms | 1.03x faster | Significant (t=7.58) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| sympy_sum | 254 ms | 245 ms | 1.04x faster | Significant (t=7.82) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| telco | 11.6 ms | 11.3 ms | 1.03x faster | Significant (t=5.62) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| tornado_http | 175 ms | 172 ms | 1.02x faster | Not significant |
+-------------------------+---------------+--------------------+--------------+------------------------+
| unpack_sequence | 51.4 ns | 56.2 ns | 1.09x slower | Significant (t=-2.40) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| unpickle | 20.3 us | 19.8 us | 1.02x faster | Significant (t=4.09) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| unpickle_list | 5.41 us | 5.75 us | 1.06x slower | Significant (t=-26.56) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| unpickle_pure_python | 544 us | 524 us | 1.04x faster | Significant (t=6.47) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| xml_etree_generate | 154 ms | 148 ms | 1.04x faster | Significant (t=7.98) |
+-------------------------+---------------+--------------------+--------------+------------------------+
| xml_etree_iterparse | 130 ms | 129 ms | 1.01x faster | Not significant |
+-------------------------+---------------+--------------------+--------------+------------------------+
| xml_etree_parse | 178 ms | 179 ms | 1.00x slower | Not significant |
+-------------------------+---------------+--------------------+--------------+------------------------+
| xml_etree_process | 123 ms | 118 ms | 1.04x faster | Significant (t=10.22) |
+-------------------------+---------------+--------------------+--------------+------------------------+
[wiki page]: https://fedoraproject.org/wiki/Changes/PythonNoSemanticInterpositionSpeedup
2021-07-05 12:34:02 -07:00
Frederik Rietdijk
94cd70bae2
python3: 3.8 -> 3.9
2021-07-05 12:34:02 -07:00
Sandro
5daf2b8e90
Merge pull request #126993 from Stunkymonkey/2pname&name
2021-07-05 18:51:19 +02:00
github-actions[bot]
22990416fd
Merge staging-next into staging
2021-07-05 12:01:35 +00:00
github-actions[bot]
94a5660d8f
Merge master into staging-next
2021-07-05 12:01:03 +00:00
Peter Hoeg
11b1684c8e
janet: the nix sandbox doesn't have /usr/bin/env
2021-07-05 19:24:08 +08:00
github-actions[bot]
5a31e44bd3
Merge staging-next into staging
2021-07-04 12:01:40 +00:00
github-actions[bot]
a6fdcf8d52
Merge master into staging-next
2021-07-04 12:01:06 +00:00
R. RyanTM
d6d304cd12
erlang: 24.0.2 -> 24.0.3
2021-07-04 19:56:21 +09:00
github-actions[bot]
e0ef1b29bf
Merge staging-next into staging
2021-07-03 06:01:45 +00:00
github-actions[bot]
77a94d88ad
Merge master into staging-next
2021-07-03 06:01:13 +00:00
R. RyanTM
0cd16a251d
alda: 1.4.4 -> 1.5.0
2021-07-03 00:34:40 +00:00
github-actions[bot]
269427cbd0
Merge staging-next into staging
2021-07-01 18:01:37 +00:00
github-actions[bot]
9d5de3eca1
Merge master into staging-next
2021-07-01 18:01:04 +00:00
ajs124
cf9fe3942e
php74: 7.4.20 -> 7.4.21
...
fixes CVE-2021-21705 and CVE-2021-21704
2021-07-01 14:03:19 +02:00
ajs124
d0c10fc34c
php80: 8.0.7 -> 8.0.8
...
fixes CVE-2021-21705 and CVE-2021-21704
also various other bugs, see https://www.php.net/ChangeLog-8.php#8.0.8
for a complete changelog
2021-07-01 14:01:14 +02:00
ajs124
1e6a414cad
php: drop left-over 7.3 check
2021-07-01 14:00:01 +02:00
github-actions[bot]
ece0ec5a6e
Merge staging-next into staging
2021-07-01 00:02:10 +00:00
github-actions[bot]
7350c52b9b
Merge master into staging-next
2021-07-01 00:01:35 +00:00
Luke Granger-Brown
e8d4f67e8a
Merge pull request #128123 from Mazurel/master
...
hy: 0.19.0 -> 1.0a1 and improvements
2021-06-30 23:03:13 +01:00
github-actions[bot]
ddd1833e46
Merge staging-next into staging
2021-06-30 12:04:24 +00:00
github-actions[bot]
629cea2cd0
Merge master into staging-next
2021-06-30 12:04:22 +00:00
Elis Hirwing
f091739337
Merge pull request #128521 from aanderse/php-mkExtension
...
php: expose mkExtension
2021-06-30 13:16:43 +02:00
Felix Buehler
3c12e95ad1
development: /s/name/pname&version/
2021-06-30 09:45:11 +02:00
github-actions[bot]
6fc46db369
Merge staging-next into staging
2021-06-30 06:04:20 +00:00
github-actions[bot]
7f05df0a91
Merge master into staging-next
2021-06-30 06:04:18 +00:00
Gabriel Gonzalez
ef0a42347e
dhall: Use --base-import-url flag for documentation ( #128588 )
...
This updates `pkgs.dhallPackages.buildDhallGitHubPackage` to use the
newly added `--base-import-url` `dhall-docs` flag. This flag is used
by the generated documentation so that paths copied to the clipboard
represent complete URLs that can be imported instead of only the
relative path to the import.
2021-06-29 19:09:29 -07:00
Felix Buehler
c9d456ad60
proglodyte-wasm: remove
...
unmaintained since 5 years with zero github stars
2021-06-29 23:27:45 +02:00
Martin Weinelt
1c5a86776c
Merge pull request #128471 from mweinelt/cpython-venv-permissions
...
cpython: fix permissions on venv activation scripts
2021-06-29 23:01:15 +02:00
Martin Weinelt
bb696403b0
python310: 3.10.0a5 -> 3.10.0b3
2021-06-29 07:27:22 -07:00
Martin Weinelt
7ca18ab93f
python39: 3.9.4 -> 3.9.5
2021-06-29 07:27:22 -07:00
Martin Weinelt
3898eb1897
python38: 3.8.9 -> 3.8.10
2021-06-29 07:27:22 -07:00
Aaron Andersen
485d0fc973
php: expose mkExtension
2021-06-29 07:38:12 -04:00
Martin Weinelt
4fa69858d9
cpython: fix permissions on venv activation scripts
...
Previously these ended up without u+w permissions which meant they could
not be regenerated, which was hugely annoying when these venvs were for
example created and recreated in a nix-shell.
2021-06-28 03:15:04 +02:00
Mazurel
30a15dbc5e
hy: 0.19.0 -> 1.0a1 and improvements
2021-06-27 12:34:28 +02:00
github-actions[bot]
1016b5a6ba
Merge staging-next into staging
2021-06-27 00:10:43 +00:00
Elis Hirwing
94d07b7492
php: Run nixpkgs-fmt on all php related files
2021-06-26 20:07:56 +02:00
Sandro
f7ba1da31a
Merge pull request #127425 from malbarbo/lua
2021-06-25 18:51:32 +02:00
github-actions[bot]
bcc720d9c5
Merge staging-next into staging
2021-06-23 18:04:33 +00:00
github-actions[bot]
b68a0d2f5e
Merge master into staging-next
2021-06-23 18:04:30 +00:00
R. RyanTM
ab9c4eaecd
jruby: 9.2.18.0 -> 9.2.19.0
2021-06-23 09:43:01 -07:00
github-actions[bot]
64eb8c173d
Merge staging-next into staging
2021-06-23 00:09:37 +00:00
Martin Weinelt
b607aadaac
Merge branch 'master' into staging-next
2021-06-22 23:55:21 +02:00
Sandro
b4b3372763
Merge pull request #127677 from NixOS/revert-125405-patch-1
2021-06-22 18:46:44 +02:00
Marco A L Barbosa
0e4c13ba16
lua: remove unecessary postBuild for lua 5.3
...
I Think this is not necessary anymore since 34f8d7e15a
2021-06-22 11:34:50 -03:00
Marco A L Barbosa
8f8b8d5000
lua: support static only builds
2021-06-22 11:34:33 -03:00
Jonathan Ringer
48d0ca0c05
update-python-libraries: handle github branches and tags with same name
2021-06-22 13:42:46 +02:00
Martin Weinelt
136f6574a3
python3Packages.fetchPypi: support wheels where dist & python differ
...
This introduces the `dist` argument to the `computeWheelUrl`, that
allows the distribution format in the path to differ from the python
version.
A wheel can be py3 and still have their file below the py2.py3 dist url.
2021-06-22 13:42:45 +02:00
Marco A L Barbosa
b23217f3b2
wasm3: init at 0.5.0
2021-06-22 08:06:31 -03:00
github-actions[bot]
1df79d27a7
Merge staging-next into staging
2021-06-22 00:07:12 +00:00
Drew Risinger
30097aeabc
python: pythonRemoveTestsDirHook removes /test
...
Some packages have their tests installed at ./test, not just ./tests.
This covers that use case by removing both.
2021-06-21 16:48:39 -07:00
Martin Weinelt
eef9694ebc
Merge branch 'master' into staging-next
2021-06-22 00:58:31 +02:00
Kim Lindberger
0d9496f7be
Revert "php/generic: Allow to extend PHP_INI_SCAN_DIR"
2021-06-21 16:04:01 +02:00
SCOTT-HAMILTON
2250baba4e
wasmer interpreter: 1.0.2 -> 2.0.0
2021-06-21 14:07:53 +02:00
Sandro
d7c45ca03c
Merge pull request #127405 from stigtsp/fix/rakudo-closure-bloat
2021-06-21 11:52:44 +02:00
Sandro
30d6de5404
Merge pull request #119921 from marsam/fix-python310-darwin
2021-06-21 11:26:09 +02:00
Stig Palmquist
24eceb46b7
rakudo: remove references to stdenv.cc.cc
...
Rakudo depends on gcc noticeably increasing closure size, this commit
removes the references.
Fixes #101097
2021-06-21 09:13:59 +02:00
R. RyanTM
57ac5534e2
erlangR23: 23.3.4.3 -> 23.3.4.4
2021-06-21 12:16:44 +09:00
Nguyễn Gia Phong
c4b95abcb3
rakudo: 2021.05 -> 2021.06
2021-06-20 12:15:51 +07:00
Nguyễn Gia Phong
e9243d3990
nqp: 2021.05 -> 2021.06
2021-06-20 12:01:03 +07:00
Nguyễn Gia Phong
24c69ece8e
moarvm: 2021.05 -> 2021.06
2021-06-20 12:00:49 +07:00
github-actions[bot]
a41fe705d5
Merge staging-next into staging
2021-06-19 06:05:09 +00:00
github-actions[bot]
011dae7f43
Merge master into staging-next
2021-06-19 06:05:05 +00:00
R. RyanTM
0e3229d628
erlangR22: 22.3.4.19 -> 22.3.4.20
2021-06-19 11:35:54 +09:00
Sandro
53b46ef5b1
Merge pull request #127252 from SuperSandro2000/expect
2021-06-18 02:42:20 +02:00
Sandro Jäckel
4109b119c2
tcl: allow passing in extra wrapper args through tclWrapperArgs
2021-06-17 20:39:44 +02:00
github-actions[bot]
597535ca02
Merge master into staging-next
2021-06-17 06:04:38 +00:00
Jonathan Ringer
310c53d0d4
Merge pull request #124095 from NixOS/staging-next
...
Staging next
2021-06-16 17:48:52 -07:00
Zhaofeng Li
f5b2b2f1db
duktape: Add pkgconfig file
2021-06-16 17:42:03 -07:00
github-actions[bot]
538d5cc5d0
Merge staging-next into staging
2021-06-17 00:09:51 +00:00
github-actions[bot]
51bf815af0
Merge master into staging-next
2021-06-17 00:09:48 +00:00
Stig Palmquist
3a058740c5
rakudo: 2021.02.1 -> 2021.05
2021-06-16 13:51:19 -07:00
Stig Palmquist
edb61aba85
nqp: 2021.02 -> 2021.05
2021-06-16 13:51:19 -07:00
Stig Palmquist
7a370f0016
moarvm: 2021.02 -> 2021.05
2021-06-16 13:51:19 -07:00
R. RyanTM
068b26fa11
jruby: 9.2.17.0 -> 9.2.18.0
2021-06-16 13:09:05 -07:00
R. RyanTM
9854c5b979
janet: 1.16.0 -> 1.16.1
2021-06-16 13:08:46 -07:00
Jan Tojnar
e3dfa79441
Merge branch 'staging-next' into staging
...
Regenerated pkgs/servers/x11/xorg/default.nix to resolve the conflict.
2021-06-16 19:59:05 +02:00
Sandro
f19e197e43
Merge pull request #114942 from lopsided98/spidermonkey-arm
...
spidermonkey_78: fix build on armv7l
2021-06-16 18:28:22 +02:00
Stig Palmquist
73de228e71
perl: 5.32.1 -> 5.34.0
...
- perl534: init at 5.34.0
- perl: perl532 -> perl534
- perlPackages: perl532Packages -> perl534Packages
- perl530: remove
- remove obsolete patches
2021-06-16 17:13:43 +02:00
github-actions[bot]
b08ae54dd9
Merge master into staging-next
2021-06-16 12:04:47 +00:00
R. RyanTM
e264354b61
erlangR23: 23.3.4.2 -> 23.3.4.3
2021-06-16 15:21:49 +09:00
Jonathan Ringer
d1d37feb6d
Merge branch 'master' into staging-next
...
Conflicts:
pkgs/servers/x11/xorg/default.nix
2021-06-15 19:32:36 -07:00
NANASHI0X74
af734f5a8c
dart: 2.12.2 -> 2.13.1 ( #126979 )
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-06-16 03:42:30 +02:00
Sandro
5e91584b6a
Merge pull request #126849 from jshholland/master
...
gnuapl: set meta.mainProgram
2021-06-16 03:31:49 +02:00
Martin Weinelt
d1fed968a6
Merge pull request #125302 from mweinelt/spidermonkey
...
spidermonkey_78: 78.8.0 -> 78.11.0
2021-06-16 00:39:41 +02:00
Pavol Rusnak
b3eeffe90a
micropython: fix build on aarch64-darwin and aarch64-linux
...
by disabling failing tests
2021-06-15 16:43:35 +02:00
Jan Tojnar
91171e2955
Merge branch 'master' into staging-next
...
Regenerated pkgs/servers/x11/xorg/default.nix to resolve the conflict.
2021-06-15 11:19:41 +02:00
Josh Holland
88245d55db
gnuapl: set meta.mainProgram
2021-06-14 17:34:33 +01:00
Serhii Zhuravel
9fb4d19c2e
Allow to extend PHP_INI_SCAN_DIR
...
Fixes #109383
2021-06-14 14:41:00 +03:00
github-actions[bot]
1047d03dd0
Merge staging-next into staging
2021-06-13 18:04:27 +00:00
github-actions[bot]
23986c7b23
Merge master into staging-next
2021-06-13 18:04:25 +00:00
Pavol Rusnak
9a3f486709
Merge pull request #125952 from musfay/micropython
...
micropython: 1.13 -> 1.15
2021-06-13 18:17:34 +02:00
Mustafa Çalışkan
363140fd27
micropython: 1.13 -> 1.15
2021-06-13 18:56:39 +03:00
John Ericson
3553c3bc79
Merge pull request #126727 from zhaofengli/riscv-mesa
...
mesa: Enable riscv64-linux
2021-06-13 10:24:15 -04:00
Zhaofeng Li
1f007dd009
Use lib.meta.availableOn for optional Valgrind dependency
2021-06-12 23:17:13 -07:00
github-actions[bot]
261638938e
Merge master into staging-next
2021-06-13 00:10:24 +00:00
Matthieu Coudron
baf91ea7d9
pythonPackages: set mainProgram to pname by default
...
Calling `nix run poetry` or another python package usually fails
because of the "pythonX" prefix in name.
Adjust mainProgram to ignore that prefix.
2021-06-12 23:23:35 +02:00
github-actions[bot]
212846c302
Merge master into staging-next
2021-06-11 12:04:38 +00:00
Zhaofeng Li
16f69cc525
spidermonkey68: Disable on RISC-V
2021-06-10 20:20:16 -07:00
github-actions[bot]
dcfc502458
Merge master into staging-next
2021-06-11 00:09:47 +00:00
Thiago Kenji Okada
17721bc55d
babashka: 0.4.3 -> 0.4.5
2021-06-10 19:09:16 -03:00
Sandro
887d26463f
Merge pull request #125283 from yrashk/racket-8.1
...
racket: 8.0 -> 8.1
2021-06-10 21:10:34 +02:00
github-actions[bot]
870106ba69
Merge master into staging-next
2021-06-10 18:14:17 +00:00
Sandro
10caccc2e8
Merge pull request #126474 from siraben/trealla-update
...
trealla: 1.7.65 -> 1.8.74
2021-06-10 18:36:10 +02:00
Ben Siraphob
e29b003621
trealla: 1.7.65 -> 1.8.74
2021-06-10 19:23:21 +07:00
github-actions[bot]
da8d931c82
Merge master into staging-next
2021-06-10 06:07:24 +00:00
AndersonTorres
e9e5f5f84d
Change all alsaLib references to alsa-lib
2021-06-10 01:12:49 -03:00
github-actions[bot]
e8f8906d68
Merge master into staging-next
2021-06-08 18:16:27 +00:00
Anderson Torres
9be8db34cf
Merge pull request #126140 from AndersonTorres/quick-patches
...
quickjs: 2020-11-08 -> 2021-03-27, edbrowse: 3.7.7 -> 3.8.0
2021-06-08 14:37:33 -03:00
github-actions[bot]
afc6dcbb89
Merge master into staging-next
2021-06-08 12:04:36 +00:00
Elis Hirwing
8521538585
Merge pull request #125916 from jtojnar/php-cleanups
...
php: Simplify generic.nix
2021-06-08 10:09:14 +02:00
github-actions[bot]
89746ce131
Merge master into staging-next
2021-06-08 06:12:14 +00:00
Ryan Mulligan
e3a6ff5f0d
Merge pull request #125252 from r-ryantm/auto-update/clojure
...
clojure: 1.10.3.849 -> 1.10.3.855
2021-06-07 19:55:10 -07:00
github-actions[bot]
45dbaf4c3d
Merge master into staging-next
2021-06-08 00:18:58 +00:00
AndersonTorres
bab9dcdaac
quickjs: 2020-11-08 -> 2021-03-27
2021-06-07 20:32:10 -03:00
Yurii Rashkovskii
4b4df46bab
clips: 6.31 -> 6.40
2021-06-07 07:44:10 -07:00
github-actions[bot]
33d7555871
Merge master into staging-next
2021-06-07 06:37:28 +00:00
happysalada
e41c7bc1f8
erlang: remove unused setup hook
2021-06-07 10:03:48 +09:00
github-actions[bot]
6076dbb085
Merge master into staging-next
2021-06-06 12:14:32 +00:00
R. RyanTM
fb4023f046
erlangR21: 21.3.8.23 -> 21.3.8.24
2021-06-06 17:31:47 +09:00
Jan Tojnar
c27d583b42
php: Simplify generic.nix
...
There is no need for the outer function since all arguments are shadowed anyway.
2021-06-06 08:40:43 +02:00
github-actions[bot]
51ecdeca84
Merge master into staging-next
2021-06-06 00:15:19 +00:00
Ricardo M. Correia
d9bf02324a
tk-8_6: fix hash after tcl-8_6 update
...
tcl-8_6 was updated in 4fb92ae60d
from
8.6.9 -> 8.6.11 but tk's hash wasn't updated at the same time,
which means the current hash was still from tk 8.6.9 rather than 8.6.11.
2021-06-06 01:40:39 +02:00
Maximilian Bosch
2d2c58970a
evcxr: 0.9.0 -> 0.10.0
...
ChangeLog: https://github.com/google/evcxr/blob/v0.10.0/RELEASE_NOTES.md#version-0100
2021-06-05 20:59:07 +02:00
github-actions[bot]
ad63c3d31f
Merge master into staging-next
2021-06-04 19:40:59 +00:00
Kim Lindberger
8960c09eed
Merge pull request #125500 from etu/php-spring-release-cleaning
...
php: post-release spring cleaning and upgrade to 8.0 as default
2021-06-04 17:48:47 +02:00
github-actions[bot]
065a1dcee6
Merge master into staging-next
2021-06-04 13:00:24 +00:00
Elis Hirwing
6b7b002544
php80: 8.0.6 -> 8.0.7
...
https://www.php.net/ChangeLog-8.php#8.0.7
2021-06-04 13:40:35 +02:00
github-actions[bot]
9e48485e23
Merge master into staging-next
2021-06-04 07:46:29 +00:00
Elis Hirwing
68eb5305ac
php: Drop PHP 7.3 support
...
PHP 7.3 won't be supported by upstream for the entire life cycle of
the 21.11 release.
Also drop the pcre' alias since it isn't needed anymore since we don't
need different pcre versions anymore.
2021-06-04 09:26:54 +02:00
Aaron Andersen
fd88cc6103
Merge pull request #125513 from etu/php-upgrades
...
php: php upgrades
2021-06-03 23:09:49 -04:00
github-actions[bot]
a9f286f5cf
Merge master into staging-next
2021-06-03 19:52:02 +00:00
stigtsp
b421690ee9
Merge pull request #125182 from alyssais/perl-cross
...
perl.perl-cross-src: 2021-03-21 -> 1.3.6
2021-06-03 18:32:38 +02:00
Elis Hirwing
a3c966cc7a
php80: 8.0.5 -> 8.0.6
...
https://www.php.net/ChangeLog-8.php#8.0.6
2021-06-03 17:11:10 +02:00
Elis Hirwing
23548b2552
php74: 7.4.18 -> 7.4.20
...
https://www.php.net/ChangeLog-7.php#7.4.19
https://www.php.net/ChangeLog-7.php#7.4.20
2021-06-03 17:10:38 +02:00
Alyssa Ross
71c1bf81e2
perldevel: 5.33.8 -> 5.35.0
2021-06-03 13:23:01 +00:00
happysalada
af0844c7a2
beam: nixpkgs-fmt
2021-06-03 22:15:31 +09:00
github-actions[bot]
1fe3553272
Merge master into staging-next
2021-06-03 02:08:32 +00:00
R. RyanTM
b1926fc77e
erlangR23: 23.3.4.1 -> 23.3.4.2
2021-06-03 09:36:41 +09:00
github-actions[bot]
c8ea5daaaf
Merge master into staging-next
2021-06-02 02:32:51 +00:00
Martin Weinelt
c0a0f6ceee
spidermonkey_78: 78.8.0 -> 78.11.0
2021-06-02 02:03:14 +02:00
Ryan Mulligan
126db3381e
Merge pull request #125041 from r-ryantm/auto-update/janet
...
janet: 1.15.5 -> 1.16.0
2021-06-01 17:00:21 -07:00
R. RyanTM
7ec26084b8
erlang: 24.0.1 -> 24.0.2
2021-06-02 07:22:03 +09:00
Yurii Rashkovskii
2377c7ea61
racket: 8.0 -> 8.1
2021-06-01 13:08:54 -07:00
R. RyanTM
b4f26c949a
clojure: 1.10.3.849 -> 1.10.3.855
2021-06-01 16:16:47 +00:00
Alyssa Ross
d5607f05af
perl.perl-cross-src: 2021-03-21 -> 1.3.6
...
New version adds support for NetBSD (by me!).
2021-06-01 08:38:15 +00:00
Alyssa Ross
1439845fed
perl.perl-cross-src: use fetchFromGitHub
2021-06-01 08:21:08 +00:00
github-actions[bot]
61893de097
Merge master into staging-next
2021-06-01 02:27:07 +00:00
Janne Heß
cf7fde4b02
lua5_4: 5.4.2 -> 5.4.3
2021-05-31 22:22:11 +02:00
R. RyanTM
2cc146464c
janet: 1.15.5 -> 1.16.0
2021-05-31 06:20:10 +00:00
github-actions[bot]
2867d5301f
Merge master into staging-next
2021-05-30 19:15:10 +00:00
Luka Blaskovic
b9bf83bc5a
luajit_2_0: 2.1.0-2021-05-17 -> 2.1.0-2021-05-29
2021-05-30 16:02:20 +00:00
Luka Blaskovic
20db1f287f
luajit_2_1: 2.1.0-2021-05-22 -> 2.1.0-2021-05-29
2021-05-30 16:02:20 +00:00
github-actions[bot]
c33da551bf
Merge master into staging-next
2021-05-30 07:13:26 +00:00
Thiago Kenji Okada
33a488c9af
babashka: 0.4.1 -> 0.4.3 ( #124325 )
2021-05-30 04:26:37 +02:00
github-actions[bot]
f57b038275
Merge master into staging-next
2021-05-29 12:49:29 +00:00
R. RyanTM
6933d068c5
elixir: 1.12.0 -> 1.12.1
2021-05-29 19:05:07 +09:00
github-actions[bot]
4cfefea5b2
Merge master into staging-next
2021-05-29 01:43:58 +00:00
R. RyanTM
8ed2973cb1
erlangR24: 24.0 -> 24.0.1
2021-05-29 09:27:25 +09:00
github-actions[bot]
f2a2e8f5e9
Merge master into staging-next
2021-05-28 12:48:40 +00:00
DavHau
6c0b85cf3a
buildPythonPackage: add support for conda
2021-05-28 14:31:40 +02:00
github-actions[bot]
ffa8e995ba
Merge master into staging-next
2021-05-27 01:17:56 +00:00
Sandro
a2eaa1fb67
Merge pull request #124535 from jlesquembre/clj
...
clojure: 1.10.3.839 -> 1.10.3.849
2021-05-27 03:07:35 +02:00
Vladimír Čunát
ce2e9f9124
Merge #124110 : luajit updates
2021-05-26 21:49:38 +02:00
José Luis Lafuente
b38eb1b34c
clojure: 1.10.3.839 -> 1.10.3.849
2021-05-26 21:37:54 +02:00
github-actions[bot]
0615bb674f
Merge master into staging-next
2021-05-25 00:59:01 +00:00
Thomas Depierre
f55c3e2f21
beam-packages: drop erlang R18 R19 R20 and cuter
2021-05-25 07:38:41 +09:00
github-actions[bot]
39f8014bf7
Merge master into staging-next
2021-05-24 12:29:00 +00:00
R. RyanTM
4f51b501fe
erlangR22: 22.3.4.17 -> 22.3.4.19
2021-05-24 20:33:08 +09:00
github-actions[bot]
e061b757fe
Merge master into staging-next
2021-05-24 06:24:12 +00:00
happysalada
7e26b2a455
elixir: remove unused setup hook
2021-05-24 10:14:44 +09:00
happysalada
79118eb657
elixir: format: group inherit
2021-05-24 10:14:44 +09:00
happysalada
58a66f0160
elixir: nixpkgs-fmt
2021-05-24 10:14:44 +09:00
happysalada
aa86fdcf85
elixir: default to 1.12; init 1.12
2021-05-24 10:14:17 +09:00
github-actions[bot]
a8835232ec
Merge master into staging-next
2021-05-24 01:00:29 +00:00
Doron Behar
71acbedaaa
Merge pull request #123984 from doronbehar/pkg/octave/withPackages
...
octave.buildEnv: Handle better no packages situation
2021-05-23 19:58:43 +00:00
github-actions[bot]
e9fa1eeaf7
Merge master into staging-next
2021-05-23 12:26:48 +00:00
Luka Blaskovic
e7a2af956a
luajit_2_1: 2.1.0-2020-12-28 -> 2.1.0-2021-05-22
...
Changes since last update:
65378759f3...5783ba1bf7
2021-05-23 08:23:04 +00:00
Luka Blaskovic
e0b048da92
luajit_2_0: 2.0.5-2020-12-28 -> 2.0.5-2021-05-17
...
Changes since last update:
56c04accf9...44684fa71d
2021-05-23 08:20:08 +00:00
R. RyanTM
1f5baa4bf8
erlang: 23.3.4 -> 23.3.4.1
2021-05-23 16:47:31 +09:00
Doron Behar
351187d848
octave.buildEnv: Handle better no packages situation
...
Use `rm -f` for *.tar.gz files so the command won't fail in case there
aren't any packages.
Create the `$out/.octave_packages` file before iterating the packages.
2021-05-23 09:19:18 +03:00
Jonathan Ringer
b9b9cdb87c
Merge remote-tracking branch 'origin/staging' into staging-next
2021-05-22 19:23:14 -07:00
Jonathan Ringer
11a9ac00fc
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
pkgs/tools/networking/xh/default.nix
2021-05-22 18:19:10 -07:00
Sandro Jäckel
0197f1dc41
pythonPackages: Add aliases 🎉
2021-05-22 15:02:50 -07:00
Andrew Brooks
b7b9680e66
tcl: update maintainers
...
When I reached out to vrthra / Rahul Gopinath about this PR, he
indicated that he no longer has the time to serve as tcl maintainer
and suggested that I take on the responsibility.
2021-05-21 15:18:31 -05:00
Andrew Brooks
4b5d85bf44
tcl: use double square brackets consistently in tcl package hook
2021-05-21 15:18:30 -05:00
Andrew Brooks
927251e781
tcl: avoid readonly local in package hook
...
If a path with a space were added to TCLLIBPATH, _addToTclLibPath
would attempt to mutate the tclPkg local and fail.
2021-05-21 15:18:29 -05:00
Andrew Brooks
ca4b34f09e
tcl: combine inherit expressions
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-05-21 15:18:27 -05:00
Andrew Brooks
e22fe366af
tcl: fix TCLLIBPATH edge cases in tcl package hook
...
TCLLIBPATH was not actually extended if a package's path was a substring
of a package already on the path. This commit fixes that behavior.
Additionally, '--prefix' is now used in place of '--set', as the latter
was found to break tkremind from the remind package.
2021-05-21 15:18:26 -05:00
Andrew Brooks
9571f53665
tclreadline: simplify package with tcl.mkTclDerivation
2021-05-21 15:18:04 -05:00
Andrew Brooks
c6ca1ba9c7
tcl: Add tclPackageHook and mkTclDerivation
...
Implement tclPackageHook, a setup hook that adjusts TCLLIBPATH to include the
paths of any installed Tcl packages, propagates that TCLLIBPATH to
anti-dependencies, and wraps any installed binaries to set their TCLLIBPATH.
Additionally, implement a makePythonPackage-style mkDerivation wrapper to use
reasonable defaults for Tcl packages and use tclPackageHook.
2021-05-21 15:18:03 -05:00
Mario Rodas
dadbf69b76
Merge pull request #123748 from baloo/baloo/rubygems/tmpdir
...
rubygems: ensure temporary directories are cleaned up
2021-05-21 03:56:38 -05:00
github-actions[bot]
76337e9ea4
Merge staging-next into staging
2021-05-21 06:22:12 +00:00
Jonathan Ringer
6b15fdce86
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
pkgs/shells/ion/default.nix
pkgs/tools/misc/cicero-tui/default.nix
2021-05-20 22:11:42 -07:00
R. RyanTM
16f2ed30d2
clojure: 1.10.3.822 -> 1.10.3.839
2021-05-20 14:52:49 -07:00
Arthur Gautier
7b48454121
rubygems: ensure temporary directories are cleaned up
...
see #123718
Signed-off-by: Arthur Gautier <baloo@superbaloo.net>
2021-05-20 20:51:41 +00:00
github-actions[bot]
0a0c0a9fb9
Merge staging-next into staging
2021-05-20 18:36:04 +00:00
Jonathan Ringer
14f3686af1
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
pkgs/applications/terminal-emulators/alacritty/default.nix
pkgs/servers/clickhouse/default.nix
2021-05-20 09:12:42 -07:00
Eduardo Sánchez Muñoz
4aee58ec96
pythonPackages.buildPythonPackage: enable verbose output with pyproject
...
This makes the build log more useful
2021-05-19 12:16:15 -07:00
github-actions[bot]
99a3061e9f
Merge staging-next into staging
2021-05-18 18:36:38 +00:00
Jonathan Ringer
f7a112f6c4
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
pkgs/applications/graphics/emulsion/default.nix
pkgs/development/tools/misc/texlab/default.nix
pkgs/development/tools/rust/bindgen/default.nix
pkgs/development/tools/rust/cargo-udeps/default.nix
pkgs/misc/emulators/ruffle/default.nix
pkgs/tools/misc/code-minimap/default.nix
2021-05-18 08:57:16 -07:00
FliegendeWurst
9e16b3b579
renpy: ffmpeg_3 -> ffmpeg
2021-05-18 09:42:58 +02:00
David
9f4878daca
fix lfe
2021-05-18 05:40:58 +09:00
R. RyanTM
4cb9549496
chibi: 0.9.1 -> 0.10
2021-05-17 13:35:12 -07:00
Sandro
981d89bddc
Merge pull request #123041 from thiagokokada/bump-babashka
...
babashka: 0.4.0 -> 0.4.1
2021-05-17 19:09:35 +02:00
Jonathan Ringer
d8e62d8e41
Merge remote-tracking branch 'origin/master' into staging-next
...
Fix cargo-flash build
2021-05-16 18:27:14 -07:00
Michael Raskin
5e9437ef57
Merge pull request #123289 from OPNA2608/fix/supertuxkart-darwin/21.05
...
superTuxKart: Build on Darwin
2021-05-16 22:59:10 +00:00
R. RyanTM
f867062ef9
erlangR21: 21.3.8.22 -> 21.3.8.23
2021-05-17 07:58:15 +09:00
Stéphan Kochen
873996595c
acl2: fix darwin build
2021-05-16 14:59:44 -07:00
OPNA2608
dfb2d52a78
angelscript: Make Darwin-compatible
2021-05-16 21:45:55 +02:00
github-actions[bot]
9911b1c75b
Merge staging-next into staging
2021-05-16 01:01:01 +00:00
github-actions[bot]
b484cef365
Merge master into staging-next
2021-05-16 01:00:58 +00:00
Stéphan Kochen
e957b3c5b8
evcxr: fix darwin build
2021-05-15 12:35:47 -07:00
github-actions[bot]
c10600230e
Merge staging-next into staging
2021-05-15 18:30:31 +00:00
Alyssa Ross
665732d877
lua: fix linkage
...
This fixes a couple of problems:
* Lua 5.1 doesn't have SYSLIBS, so wasn't being linked with any
libraries.
* SYSLIBS doesn't include -lm, so we had to add that manually to
pkgconfig. LIBS includes -lm, so we don't need that hack any more.
2021-05-15 09:33:46 -07:00
Alyssa Ross
1758c0ac65
lua5_4: fix eval
...
This patch was removed in 34f8d7e15a
("lua: one dso patch to rule
them all"), and the reference to it in lua5_4 was removed at the time,
but it seems to have found its way back somehow (probably through a
merge?).
(cherry picked from commit 5b278213a2
)
2021-05-15 09:33:46 -07:00
Alyssa Ross
3f5ecec613
Revert "staging-next: lua5: fix eval, add lib.so.patch"
...
This reverts commit 537a1940e8
.
This patch was deliberately removed in 34f8d7e15a
("lua: one dso
patch to rule them all"). The correct fix is to remove the reference
to it that was reintroduced, rather than re-adding the patch.
2021-05-15 09:33:46 -07:00
Alyssa Ross
399223fdf7
Revert "lua5_*: tweak linking libraries"
...
This reverts commit 539ad4f811
.
The correct fix here is to fix our addition to the Makefile.
2021-05-15 09:33:46 -07:00
github-actions[bot]
49ec716c04
Merge staging-next into staging
2021-05-15 12:25:36 +00:00
Alyssa Ross
5b278213a2
lua5_4: fix eval
...
This patch was removed in 34f8d7e15a
("lua: one dso patch to rule
them all"), and the reference to it in lua5_4 was removed at the time,
but it seems to have found its way back somehow (probably through a
merge?).
2021-05-15 12:47:06 +02:00
Vladimír Čunát
539ad4f811
lua5_*: tweak linking libraries
...
All liblua.so were missing a library or two;
I'm not sure if there's a better way to add them. Check:
ldd -r ./result/lib/liblua.so
2021-05-15 09:36:05 +02:00
Jonathan Ringer
537a1940e8
staging-next: lua5: fix eval, add lib.so.patch
2021-05-14 23:38:34 -07:00
github-actions[bot]
78ae7ac75e
Merge staging-next into staging
2021-05-15 06:22:25 +00:00
Robert T. McGibbon
2e55b7301b
pytestCheckHook: improve disabledTestPaths whitespace handling
2021-05-14 21:59:55 -07:00