Commit Graph

21430 Commits

Author SHA1 Message Date
github-actions[bot]
77394c111b
Merge staging-next into staging 2022-08-20 18:02:00 +00:00
github-actions[bot]
1622736ef5
Merge master into staging-next 2022-08-20 18:01:20 +00:00
Jonas Heinrich
eec56ddb99
Merge pull request #187007 from r-ryantm/auto-update/neo4j
neo4j: 4.4.8 -> 4.4.10
2022-08-20 16:15:30 +02:00
github-actions[bot]
4cff5cf6ba
Merge staging-next into staging 2022-08-20 12:01:55 +00:00
github-actions[bot]
54506fbda9
Merge master into staging-next 2022-08-20 12:01:21 +00:00
Jonas Heinrich
9e15a5ce6c
Merge pull request #187374 from mweinelt/synadm
matrix-synapse.tools.synadm: 0.34 -> 0.35
2022-08-20 13:43:39 +02:00
github-actions[bot]
8e0d18cd9d
Merge staging-next into staging 2022-08-20 00:03:16 +00:00
github-actions[bot]
318717f2e3
Merge master into staging-next 2022-08-20 00:02:22 +00:00
Sebastián Mancilla
32423326d1
Merge pull request #183329 from r-ryantm/auto-update/grocy
grocy: 3.3.0 -> 3.3.1
2022-08-19 18:30:50 -04:00
Emery Hemingway
b5526585c2 treewide: inject xdg-open into wrappers as $PATH suffix
The xdg-open utility is only ever a runtime dependency and its
dependents only expect that it accept a URI as a command line
argument and do something with it that the user would expect.
For such as a trivial relationship it should be possible for
users to override xdg-open with something else in their PATH.
2022-08-19 13:11:27 -05:00
github-actions[bot]
8b202db44b
Merge staging-next into staging 2022-08-19 18:01:56 +00:00
github-actions[bot]
949c5dc1a1
Merge master into staging-next 2022-08-19 18:01:13 +00:00
Emery Hemingway
ff69a9ad9d discourse.plugins.discourse-oauth2-basic: init 2022-08-19 12:49:32 -05:00
Sandro
d148f6dedf
Merge pull request #187460 from majewsky/portunus-1.1.0 2022-08-19 19:32:32 +02:00
Sebastián Mancilla
0b04dceb32
Merge pull request #187253 from wahjava/update-headscale
headscale: 0.16.2 -> 0.16.3
2022-08-19 11:37:07 -04:00
Stefan Majewsky
a62e865501 portunus: 1.1.0-beta.2 -> 1.1.0
Changelog: <https://github.com/majewsky/portunus/releases/tag/v1.1.0>
2022-08-19 16:42:41 +02:00
Martin Weinelt
3648f4a6fb
home-assistant: 2022.8.5 -> 2022.8.6
https://github.com/home-assistant/core/releases/tag/2022.8.6
2022-08-19 15:33:04 +02:00
Jonas Heinrich
54b1387b95
Merge pull request #187092 from andreisergiu98/prowlarr-0.4.4.1947
prowlarr: 0.2.0.1448 -> 0.4.4.1947
2022-08-19 14:15:23 +02:00
github-actions[bot]
c90a48c28f
Merge staging-next into staging 2022-08-19 12:02:18 +00:00
github-actions[bot]
c00ace1204
Merge master into staging-next 2022-08-19 12:01:31 +00:00
R. Ryantm
f6a079f3f8 prometheus-postgres-exporter: 0.11.0 -> 0.11.1 2022-08-19 13:14:18 +02:00
Jonas Heinrich
e68405e8a1
Merge pull request #187165 from r-ryantm/auto-update/redpanda
redpanda: 22.1.7 -> 22.2.1
2022-08-19 12:19:21 +02:00
Jonas Heinrich
54a3a081b0
Merge pull request #187169 from r-ryantm/auto-update/rtsp-simple-server
rtsp-simple-server: 0.19.3 -> 0.20.0
2022-08-19 12:17:13 +02:00
Jonas Heinrich
f758006e8b
Merge pull request #187175 from r-ryantm/auto-update/snappymail
snappymail: 2.17.0 -> 2.17.2
2022-08-19 11:59:11 +02:00
Adam Joseph
fe5485327e gpsd: fix cross-compilation
Prior to this commit, builds of `pkgsCross.*.gpsd` were failing.

`gpsd` expects `CCVERSION` to be set, and fails if it is not set.
Scons does not guarantee that `CCVERSION` will be set, nor does it
specify under what circumstances it will or will not be set: "This may
or may not be set, depending on the specific C compiler being used."

  https://scons.org/doc/production/HTML/scons-man.html#cv-CCVERSION

Apparently cross-compilation triggers one of those unspecified
circumstances.  There are several bug reports to scons relating to
this:

  https://github.com/SCons/scons/issues/1723
  https://github.com/SCons/scons/issues?q=is%3Aissue+ccversion+is%3Aclosed

`gpsd` does not use `CCVERSION` for any purpose other than printing a
log message at the start of the build:

  d055863603

This commit modifies the log message, replacing `env['CCVERSION']`
with `env['CC']`, since `CC` is always set when using nixpkgs'
standard builder.

With this commit, `pkgsCross.mips64el-linux-gnuabi64.gpsd` and
`pkgsCross.powernv.gpsd` build correctly on x86_64.  Prior to this
commit, they would fail with:

```
scons: Reading SConscript files ...
scons version: 4.1.0
scons is running under Python version: 3.10.5.final.0
gpsd version: 3.23.1
This system is: linux
KeyError: 'CCVERSION':
  File "/build/gpsd-3.23.1/SConstruct", line 69:
    SConscript('SConscript',
  File "/nix/store/0vmqv6f2s8bj2a50gk8g05jcb5scnifb-scons-4.1.0/lib/python3.10/site-packages/SCons/Script/SConscript.py", line 654:
    return method(*args, **kw)
  File "/nix/store/0vmqv6f2s8bj2a50gk8g05jcb5scnifb-scons-4.1.0/lib/python3.10/site-packages/SCons/Script/SConscript.py", line 591:
    return _SConscript(self.fs, *files, **subst_kw)
  File "/nix/store/0vmqv6f2s8bj2a50gk8g05jcb5scnifb-scons-4.1.0/lib/python3.10/site-packages/SCons/Script/SConscript.py", line 280:
    exec(compile(scriptdata, scriptname, 'exec'), call_stack[-1].globals)
  File "/build/gpsd-3.23.1/gpsd-3.23.1/SConscript", line 883:
    announce("cc is %s, version %s" % (env['CC'], env['CCVERSION']))
  File "/nix/store/0vmqv6f2s8bj2a50gk8g05jcb5scnifb-scons-4.1.0/lib/python3.10/site-packages/SCons/Environment.py", line 388:
    return self._dict[key]
```
2022-08-19 10:20:03 +02:00
github-actions[bot]
1a9ac09a91
Merge staging-next into staging 2022-08-19 06:02:02 +00:00
github-actions[bot]
384a573c49
Merge master into staging-next 2022-08-19 06:01:24 +00:00
Bill Ewanick
a37a6de881 meteor: formatting 2022-08-19 01:12:51 -04:00
Bill Ewanick
8248b6e741 meteor: 1.12 -> 2.7.3 2022-08-19 01:12:51 -04:00
Gauvain 'GovanifY' Roussel-Tarbouriech
6c55578c7e nixos/komga: add module 2022-08-18 22:52:27 -04:00
Martin Weinelt
76e45461fa
matrix-synapse.tools.synadm: 0.34 -> 0.35
https://github.com/JOJ0/synadm/releases/tag/v0.35
2022-08-19 02:37:10 +02:00
github-actions[bot]
784a588a10
Merge staging-next into staging 2022-08-19 00:04:04 +00:00
github-actions[bot]
767bdf0d81
Merge master into staging-next 2022-08-19 00:03:25 +00:00
a-kenji
7e533d199f
hebbot: init at 2.1 (#187178)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-08-18 23:34:31 +02:00
Ryan Horiguchi
a5c8eb14e2
plex: 1.28.0.5999-97678ded3 -> 1.28.1.6104-788f82488 2022-08-18 20:14:46 +02:00
github-actions[bot]
3346909bad
Merge staging-next into staging 2022-08-18 12:02:05 +00:00
github-actions[bot]
28612f43c8
Merge master into staging-next 2022-08-18 12:01:28 +00:00
Fabian Affolter
38890391bc
Merge pull request #187237 from r-ryantm/auto-update/checkSSLCert
checkSSLCert: 2.36.0 -> 2.37.0
2022-08-18 12:40:05 +02:00
K900
3867731e81
Merge pull request #187223 from K900/tempo-150
tempo: 1.4.1 -> 1.5.0
2022-08-18 13:18:19 +03:00
Ashish SHUKLA
ddd6ed5c3c
headscale: 0.16.2 -> 0.16.3 2022-08-18 12:11:44 +02:00
Jonas Heinrich
bb46b7a341
Merge pull request #187066 from r-ryantm/auto-update/dolt
dolt: 0.40.25 -> 0.40.26
2022-08-18 11:12:31 +02:00
R. Ryantm
8be789f7f1 checkSSLCert: 2.36.0 -> 2.37.0 2022-08-18 08:15:24 +00:00
K900
994890bfe6 tempo: 1.4.1 -> 1.5.0 2022-08-18 11:10:11 +03:00
Vladimír Čunát
c476f232a6
Merge #186955: knot-resolver: 5.5.1 -> 5.5.2 2022-08-18 09:07:06 +02:00
github-actions[bot]
f9974c3fe1
Merge staging-next into staging 2022-08-18 00:03:06 +00:00
github-actions[bot]
87085e3d62
Merge master into staging-next 2022-08-18 00:02:31 +00:00
R. Ryantm
a6c4ffa26d snappymail: 2.17.0 -> 2.17.2 2022-08-17 21:47:50 +00:00
R. Ryantm
d6c2f82fde rtsp-simple-server: 0.19.3 -> 0.20.0 2022-08-17 21:09:57 +00:00
R. Ryantm
585ceba689 redpanda: 22.1.7 -> 22.2.1 2022-08-17 20:26:16 +00:00
Lassulus
002bd07544
Merge pull request #186867 from helsinki-systems/upd/mariadb 2022-08-17 21:09:30 +02:00