Commit Graph

3696 Commits (f6da38a42b6677df1873c03304aa20cd824b120e)

Author SHA1 Message Date
Philippe Hürlimann c6218f2172 trigger: apply review suggestions 2020-10-17 08:43:35 -07:00
Ben Siraphob 683a87dbeb treewide: remove periods from end of package descriptions 2020-10-17 08:22:31 -07:00
Philippe Hürlimann f85e2e1eeb trigger: 0.6.6 -> 0.6.6.1
fix linker flag for trigger
added tinyxml-2 as dependency as it's not shipped anymore
improved description
2020-10-14 00:42:35 +02:00
Erik Oosting 90321a7bb3
ut2004demo: fix src URL (#100424)
vlaai.snt.utwente.nl does not exist anymore and has been replaced by
ftp.snt.utwente.nl. Actually it has been this way for quite a while...
2020-10-13 12:11:28 -04:00
Sage Raflik e507c77a7d crispy-doom: 5.8.0 -> 5.9.2 2020-10-04 10:52:08 -05:00
Sage Raflik 23e5901ef3 crispy-doom: add python to generate manpages 2020-10-04 10:52:05 -05:00
Solène Rapenne ccc6c5faae ezquake: 3.2 -> 3.2.2 2020-10-03 18:08:41 +02:00
Patrick Hilhorst b133532434 treewide: remove some trailing whitespace to please ofborg 2020-10-02 09:01:35 -07:00
Patrick Hilhorst f7e390e6d4 treewide: fix redirected urls (run 3)
Related:
 - 9fc5e7e473
 - 593e11fd94
 - 508ae42a0f

Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).

Here's the new script I used:

```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
   | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
   | sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```

I will also add this script to `maintainers/scripts`.
2020-10-02 09:01:35 -07:00
Benjamin Hipple b038c23225
Merge pull request #99320 from kampka/wesnoth
wesnoth: 1.14.13 -> 1.14.14
2020-10-01 22:03:45 -04:00
Christian Kampka 0954caa348
wesnoth: 1.14.13 -> 1.14.14 2020-10-01 21:33:34 +02:00
R. RyanTM 88a43d1e6a osu-lazer: 2020.903.0 -> 2020.925.0 2020-09-30 08:49:36 -07:00
Thomas Tuegel ebe4cc8870
megaglest: use libvlc 2020-09-26 05:50:24 -05:00
Lassulus b69f76b5c5
Merge pull request #86829 from iblech/patch-13
tuxpaint: install desktop file
2020-09-25 15:01:14 +02:00
Tim Steinbach 1230f00c07
Merge pull request #98590 from NeQuissimus/stockfish_12
stockfish: 11 -> 12
2020-09-24 11:44:36 -04:00
Ryan Mulligan e42857b58a
Merge pull request #98453 from TredwellGit/minecraft
minecraft: 2.1.16102 -> 2.1.17627
2020-09-23 20:56:41 -07:00
Tim Steinbach 6a42a1ce64
stockfish: 11 -> 12 2020-09-23 16:31:56 -04:00
Timo Kaufmann 2f352077e7
Merge pull request #85203 from fgaz/koboredux/init
audiality2, koboredux: init
2020-09-23 21:18:53 +02:00
TredwellGit d458c00d7f minecraft: 2.1.17417 -> 2.1.17627 2020-09-23 18:22:56 +00:00
Anderson Torres c7bc218f02
Merge pull request #97803 from JamieMagee/dotnet-sdk-3.1
dotnetCorePackages.sdk_3_1: 3.1.102 -> 3.1.402
2020-09-23 14:39:53 -03:00
Francesco Gazzetta 130ce6de1c koboredux,koboredux-free: init at 0.7.5.1 2020-09-23 19:39:23 +02:00
Jamie Magee 460c98ec69
dotnetCorePackages.sdk_3_1: fix dependent packages 2020-09-23 13:18:44 +02:00
TredwellGit d7ac5bd4c0 minecraft: 2.1.16102 -> 2.1.17417
Launcher 2.1.15852 removed GConf dependency.
2020-09-22 08:55:52 +00:00
Mario Rodas 7c7ee58775
Merge pull request #98229 from bbigras/df
dwarf-fortress: update themes.json
2020-09-20 19:42:18 -05:00
Gabriel Ebner 6eab2acc6a multimc: use jdk8 2020-09-19 17:43:00 +02:00
Gabriel Ebner 6784e7ec75 steam: use jdk8 2020-09-19 15:29:19 +02:00
Gabriel Ebner cdcdeb63b2 dwarf-fortress: use jdk8 2020-09-19 14:06:15 +02:00
Bruno Bigras 5427e43b08 dwarf-fortress: update themes.json 2020-09-18 13:44:06 -04:00
aszlig 948d828955
uqm: Fix purity checking error during config phase
Since commit fb777be7d2, linking programs
in /tmp will no longer work, since with this commit (hardcoded) /tmp
will no longer be treated a valid temporary directory by the purity
checking logic.

Essentially what that logic does is checking whether the link target is
either relative, in some temporary directory or in the Nix store and if
that's not the case, an error is thrown like in this case:

  gcc -c /tmp/build.24.tmp.c -o /tmp/build.24.tmp.c.o
  gcc /tmp/build.24.tmp.c.o -o /tmp/build.24.tmp.out
  impure path `/tmp/build.24.tmp.out' used in link
  collect2: error: ld returned 1 exit status

Note here, that $TMP and $TMPDIR point to /build while the output here
still refers to /tmp. This is because the custom build system of uqm
simply hardcodes /tmp and doesn't honor any of these variables.

To fix this, all we need to do is the latter and we're now using $TMPDIR
instead of /tmp for these compile-tests during configure.

While the pull request[1] introducing said commit has a few comments
regarding other issues and it could still be either reverted or changed,
using $TMPDIR in the uqm build script is entirely backwards-compatible
and shouldn't hurt in any case.

[1]: https://github.com/NixOS/nixpkgs/pull/93560

Signed-off-by: aszlig <aszlig@nix.build>
2020-09-18 12:33:03 +02:00
Lassulus 1c4113e359
Merge pull request #97099 from r-ryantm/auto-update/crawl
crawl: 0.25.0 -> 0.25.1
2020-09-17 20:53:08 +02:00
Mathnerd314 47ba35d6d4
unnethack: 5.2.0 -> 5.3.2 (#97595)
Co-authored-by: Jon <jonringer@users.noreply.github.com>
2020-09-14 20:48:49 -07:00
Matthew Bauer a4ad9e740a
Merge pull request #97507 from jonascarpay/gambatte-alsa-fix
gambatte: add alsa dependency, 2016-05-03 -> 2020-03-14
2020-09-14 21:44:19 -05:00
Silvan Mosberger 3558be46b0
Merge pull request #97674 from Avaq/avaq/minecraft-server
minecraft-server: 1.16.2 -> 1.16.3
2020-09-12 18:44:43 +02:00
Jan Tojnar 607509ac8f
Merge pull request #97690 from jtojnar/inkscape-1.0.1 2020-09-12 16:30:53 +02:00
Daniel Fullmer b3de09bc52
steam: fix typo in LD_LIBRARY_PATH (#97818) 2020-09-11 23:19:31 -04:00
Lassulus 5cd42271a3
Merge pull request #97452 from Lassulus/zandronum-fix
zandronum: use new hg url
2020-09-10 22:57:00 +02:00
Lassulus ee16664c28
Merge pull request #66641 from 0x4A6F/master-wyvern
wyvern: init at 1.4.1
2020-09-10 22:40:02 +02:00
0x4A6F 2e69b42a81
wyvern: init at 1.4.1 2020-09-10 19:27:00 +00:00
Jan Tojnar 35deaa45a1
inkscape_0: drop
Inkscape 1.0.1 re-added the old CLI flags:
3ca6a4ed08
2020-09-10 20:46:55 +02:00
Aldwin Vlasblom 0d8400aa82
minecraft-server: 1.16.2 -> 1.16.3 2020-09-10 17:39:34 +02:00
marius david 43d9d1d7d8 instead: 3.3.1 -> 3.3.2; fix compilation 2020-09-09 10:36:06 -07:00
Jonas Carpay 9db2ca30ac gambatte: add alsa dependency, 2016-05-03 -> 2020-03-14 2020-09-09 15:28:24 +09:00
lassulus e9c4e3ffb4 zandronum: use new hg url 2020-09-08 16:26:41 +02:00
Renato Alves 068400bdfc
tdm: 2.07 -> 2.08 2020-09-06 20:31:59 +02:00
Ryan Mulligan b25c6a293e
Merge pull request #97224 from r-ryantm/auto-update/osu-lazer
osu-lazer: 2020.820.0 -> 2020.903.0
2020-09-05 13:03:27 -07:00
Ryan Mulligan e782f6151d
Merge pull request #97096 from r-ryantm/auto-update/cockatrice
cockatrice: 2020-03-20-Release-2.7.4 -> 2020-08-23-Release-2.7.5
2020-09-05 13:00:54 -07:00
R. RyanTM 0555dc1c23 shattered-pixel-dungeon: 0.8.2b -> 0.8.2d 2020-09-05 18:03:57 +00:00
R. RyanTM 2e91a108d0 osu-lazer: 2020.820.0 -> 2020.903.0 2020-09-05 13:08:02 +00:00
Jan Tojnar 5079e1cd3b
Merge pull request #96939 from jtojnar/drop-gst-010 2020-09-04 17:13:43 +02:00
R. RyanTM bc134692c5 crawl: 0.25.0 -> 0.25.1 2020-09-04 09:41:46 +00:00