Commit Graph

5520 Commits

Author SHA1 Message Date
R. RyanTM
62cc370279 frp: 0.31.1 -> 0.31.2 2020-02-07 09:18:02 +00:00
Maximilian Bosch
92d6ffcb64
wireguard-tools: 1.0.20200121 -> 1.0.20200206
https://lists.zx2c4.com/pipermail/wireguard/2020-February/004963.html
2020-02-06 18:29:56 +01:00
zowoq
4ccc640dd3
megatools: build on darwin, update src (#79254) 2020-02-05 15:20:52 -05:00
Frederik Rietdijk
76a439239e Merge master into staging-next 2020-02-05 10:28:52 +01:00
worldofpeace
74e4cb7ea4
Merge pull request #78543 from Atemu/dnscrypt-proxy2-service
nixos/dnscrypt-proxy2: init
2020-02-02 23:02:06 -05:00
worldofpeace
39e893c468 dnscrypt-proxy: remove 2020-02-02 21:51:19 -05:00
R. RyanTM
75a9868dbe socat: 1.7.3.3 -> 1.7.3.4 2020-02-02 22:00:23 +01:00
Frederik Rietdijk
e4c28f78e7 Merge staging-next into staging 2020-02-02 15:33:13 +01:00
worldofpeace
f025935dc6 networkmanager: reorganize directory
This was a bit of a mess.
2020-02-01 17:19:47 -05:00
worldofpeace
6aa47aa042 networkmanager: 1.22.4 -> 1.22.6
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/blob/1.22.6/NEWS
2020-02-01 17:16:02 -05:00
xrelkd
05a3625d36 brook: 20200102 -> 20200201 2020-02-01 13:52:20 +08:00
Marek Mahut
aada254bc8
Merge pull request #78948 from mmahut/vegeta
vegeta: init at 12.7.0
2020-01-31 18:30:47 +01:00
Mario Rodas
a879bd6517
Merge pull request #78909 from r-ryantm/auto-update/axel
axel: 2.17.6 -> 2.17.7
2020-01-31 08:31:04 -05:00
Marek Mahut
dd5b64a61a vegeta: init at 12.7.0 2020-01-31 10:42:58 +01:00
R. RyanTM
8d510b3424 axel: 2.17.6 -> 2.17.7 2020-01-30 20:22:35 +00:00
Franz Pletz
c5b062d064
Merge pull request #78865 from r-ryantm/auto-update/whois
whois: 5.5.3 -> 5.5.5
2020-01-30 16:41:25 +00:00
R. RyanTM
fb8967127a whois: 5.5.3 -> 5.5.5 2020-01-30 15:31:53 +00:00
Mario Rodas
9773e239e1
Merge pull request #78588 from r-ryantm/auto-update/keepalived
keepalived: 2.0.19 -> 2.0.20
2020-01-28 19:58:59 -05:00
xrelkd
6f5268e7fc brook: 20190601 -> 20200102 2020-01-29 03:13:33 +08:00
Frederik Rietdijk
dce0ca29d9 Merge master into staging-next 2020-01-28 10:46:13 +01:00
Hugo Reeves
ddec4efa7c
croc: 6.4.8 -> 6.4.10 2020-01-28 09:56:18 +13:00
Silvan Mosberger
80a2740991
Merge pull request #78265 from Synthetica9/https-homepages
treewide: fix redirected urls
2020-01-27 15:00:53 +01:00
R. RyanTM
e838bebc78 cjdns: 20.4 -> 20.5 2020-01-27 13:26:20 +01:00
R. RyanTM
3316b8fe5d keepalived: 2.0.19 -> 2.0.20 2020-01-27 03:01:16 +00:00
Marek Mahut
dcf7dd278e
Merge pull request #77906 from r-ryantm/auto-update/snabb
snabb: 2018.01.2 -> 2019.11
2020-01-26 13:23:17 +01:00
Maximilian Bosch
eb5ec176ce
bandwhich: 0.10.0 -> 0.11.0
https://github.com/imsnif/bandwhich/releases/tag/0.11.0
2020-01-25 23:08:56 +01:00
Benno Fünfstück
59e7ecdcd0 burpsuite: 1.7.36 -> 2.1.07 2020-01-25 22:17:39 +01:00
Atemu
ad3f0d9829 dnscrypt-proxy2: 2.0.25 -> 2.0.36 2020-01-25 17:39:22 +01:00
Mario Rodas
e820245294
Merge pull request #78259 from r-ryantm/auto-update/pdsh
pdsh: 2.33 -> 2.34
2020-01-24 18:36:48 -05:00
Bruno Bigras
11af4a1b42 httplz: 1.6.0 -> 1.8.0 2020-01-24 15:29:06 -05:00
Ingo Blechschmidt
89864a01d1 dsniff: Unbreak the build 2020-01-24 18:58:54 +01:00
zowoq
88235d99a4 amass: 3.0.25 -> 3.4.2 (#78001) 2020-01-22 12:13:51 -08:00
Robin Gloster
0751c48313
Merge pull request #78191 from Ma27/bump-wireguard
wireguard: 1.0.20200102 -> 1.0.20200121
2020-01-22 16:10:50 +01:00
Patrick Hilhorst
593e11fd94
treewide: fix redirected urls
According to https://repology.org/repository/nix_unstable/problems, we have a
lot of packages that have http links that redirect to https as their homepage.
This commit updates all these packages to use the https links as their
homepage.

The following script was used to make these updates:

```

curl https://repology.org/api/v1/repository/nix_unstable/problems \
    | jq '.[] | .problem' -r \
    | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \
    | sort | uniq > script.sed

find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
2020-01-22 11:26:22 +01:00
Mario Rodas
03884c3fe1
Merge pull request #78164 from servalcatty/v2ray
v2ray: 4.22.0 -> 4.22.1
2020-01-22 05:14:58 -05:00
R. RyanTM
cc7267143b pdsh: 2.33 -> 2.34 2020-01-22 09:47:39 +00:00
Matt Layher
228425978d corerad: 0.1.8 -> 0.1.9 2020-01-22 01:19:35 -08:00
Maximilian Bosch
dea2f98262
wireguard-tools: 1.0.20200102 -> 1.0.20200121
https://lists.zx2c4.com/pipermail/wireguard/2020-January/004869.html
2020-01-21 17:55:09 +01:00
Serval
39ee33c832
v2ray: 4.22.0 -> 4.22.1 2020-01-21 21:51:44 +08:00
lewo
2b4753182e
Merge pull request #77851 from zowoq/saldl
saldl: init at 40
2020-01-21 08:43:05 +01:00
Mario Rodas
e517c5251e
Merge pull request #77976 from filalex77/nebula-1.1.0
nebula: 1.0.0 -> 1.1.0
2020-01-18 15:04:56 -05:00
Maximilian Bosch
1470109737
bandwhich: 0.9.0 -> 0.10.0
https://github.com/imsnif/bandwhich/releases/tag/0.10.0
2020-01-18 13:51:58 +01:00
Oleksii Filonenko
ae3ba80c6d
nebula: 1.0.0 -> 1.1.0 2020-01-18 13:50:53 +02:00
Michael Raskin
bff47db030
Merge pull request #77918 from r-ryantm/auto-update/wavemon
wavemon: 0.9.0 -> 0.9.1
2020-01-17 22:01:32 +00:00
zowoq
531eb30f6b saldl: init at 40 2020-01-18 08:01:19 +10:00
Frederik Rietdijk
bcd8c6b8dc Merge master into staging-next 2020-01-17 17:08:16 +01:00
R. RyanTM
34cec31015 wavemon: 0.9.0 -> 0.9.1 2020-01-17 12:26:58 +00:00
R. RyanTM
153934acfc snabb: 2018.01.2 -> 2019.11 2020-01-17 11:03:57 +00:00
Matt Layher
9c66687ef1 corerad: 0.1.4 -> 0.1.8 (#77848) 2020-01-16 16:44:30 -08:00
Will Dietz
0d5b21e9ba lftp: 4.9.0 -> 4.9.1
https://lftp.yar.ru/news.html
(cherry picked from commit 6c545f25f02a4dccf9fc2ceef3a15267d9eb53c5)
2020-01-16 21:38:19 +00:00