Commit graph

2824 commits

Author SHA1 Message Date
Maximilian Bosch ee32de777a
Merge pull request #81243 from bhipple/u/rust-cargo-bitwarden_rs
bitwarden_rs: upgrade cargo fetcher and cargoSha256
2020-02-28 20:44:56 +01:00
Maximilian Bosch a1ce8740fa
Merge pull request #81249 from bhipple/u/rust-cargo-jwt-cli
jwt-cli: upgrade cargo fetcher and cargoSha256
2020-02-28 20:25:43 +01:00
Benjamin Hipple d31aae2865 jwt-cli: upgrade cargo fetcher and cargoSha256
Infra upgrade as part of #79975; no functional change expected.
2020-02-27 23:19:22 -05:00
Benjamin Hipple e660d86a4c rage: upgrade cargo fetcher and cargoSha256
Infra upgrade as part of #79975; no functional change expected.
2020-02-27 22:59:05 -05:00
Benjamin Hipple 584a852210 bitwarden_rs: upgrade cargo fetcher and cargoSha256
Infra upgrade as part of #79975; no functional change expected.
2020-02-27 22:53:52 -05:00
Mario Rodas 4baba1a06b
Merge pull request #80533 from msteen/bitwarden_rs
bitwarden_rs-vault: 2.12.0b -> 2.12.0c
2020-02-19 09:07:01 -05:00
Maximilian Bosch 5ea19307fe
Merge pull request #80512 from xfix/tor-disable-monotonic-tests
tor: fix build
2020-02-19 13:48:49 +01:00
Matthijs Steen 425db300c1 bitwarden_rs-vault: 2.12.0b -> 2.12.0c 2020-02-19 13:26:48 +01:00
Konrad Borowski 58af3177c0 tor: fix build
Monotonic timer test expects sleep(200ms) to take at most 1s. On
loaded systems like hydra, it's possible for such a test to take
longer than 1 second.

Tests expecting sleep(200ms) to take at least 175ms weren't removed,
because load shouldn't cause sleep to be shorter.
2020-02-19 09:11:46 +01:00
zowoq 72c145115b metasploit: 5.0.45 -> 5.0.74 2020-02-18 08:32:09 -08:00
Franz Pletz 37f35dc779
clevis: init at 12 2020-02-17 15:14:28 +01:00
Benjamin Hipple 131a32a5af rust: update docs on legacyCargoFetcher; remove unnecessary defaults
As mentioned in #79975, the default on `legacyCargoFetcher` if left unspecified
is now `false`.
2020-02-15 22:07:47 -08:00
Benjamin Hipple 993719b88a sequoia: fix build by migrating off legacy fetchCargo implementation
Currently broken; see #79975 for details. Would also be fixed by #80153
eventually, but since we want to upgrade either way we might as well do so now.
2020-02-15 16:33:10 -05:00
R. RyanTM 97303641ca clamav: 0.102.1 -> 0.102.2 2020-02-15 17:52:24 +01:00
Daniel Schaefer 6befabd559
Merge pull request #74458 from r-ryantm/auto-update/mkp224o
mkp224o: 1.3.0 -> 1.4.0
2020-02-15 15:34:46 +01:00
Benjamin Hipple eb11feaa0b treewide: change fetchCargoTarball default to opt-out
Changes the default fetcher in the Rust Platform to be the newer
`fetchCargoTarball`, and changes every application using the current default to
instead opt out.

This commit does not change any hashes or cause any rebuilds. Once integrated,
we will start deleting the opt-outs and recomputing hashes.

See #79975 for details.
2020-02-13 22:41:37 -08:00
worldofpeace 3565f1782d
Merge pull request #79758 from doronbehar/update-sequoia
sequoia: 0.13.0 -> 0.14.0
2020-02-12 16:06:45 -05:00
Frederik Rietdijk 424697d512 Merge master into staging-next 2020-02-12 09:55:31 +01:00
lewo 2a773b1506
Merge pull request #79325 from eonpatapon/safe
safe: init at 1.5.1
2020-02-11 16:27:00 +01:00
Jean-Philippe Braun dd759b3b67 safe: init at 1.5.1 2020-02-11 16:09:54 +01:00
Frederik Rietdijk 1a6c3cb06b Merge staging into staging-next 2020-02-11 07:59:53 +01:00
Oleksii Filonenko 0ea4e9940b keybase,keybase-gui: 5.1.0 -> 5.1.1 2020-02-10 20:41:28 +01:00
Oleksii Filonenko 85b93ef20e keybase,keybase-gui: add filalex77 to maintainers 2020-02-10 20:41:28 +01:00
Oleksii Filonenko 0aa6230b58 keybase,keybase-gui: 5.0.0 -> 5.1.0 2020-02-10 20:41:28 +01:00
Daniel Schaefer 8a24d3f892 chipsec: 1.4.1 -> 1.4.7 2020-02-10 19:50:25 +01:00
R. RyanTM 6a64f267a0 tor: 0.4.2.5 -> 0.4.2.6 2020-02-10 19:43:58 +01:00
Doron Behar 4f6d905d1c sequoia: 0.13.0 -> 0.14.0 2020-02-10 19:54:04 +02:00
Benjamin Hipple 2115a2037c fetchcargo: use flat tar.gz file for vendored src instead of recursive hash dir
This has several advantages:

1. It takes up less space on disk in-between builds in the nix store.
2. It uses less space in the binary cache for vendor derivation packages.
3. It uses less network traffic downloading from the binary cache.
4. It plays nicely with hashed mirrors like tarballs.nixos.org, which only
   substitute --flat hashes on single files (not recursive directory hashes).
5. It's consistent with how simple `fetchurl` src derivations work.
6. It provides a stronger abstraction between input src-package and output
   package, e.g., it's harder to accidentally depend on the src derivation at
   runtime by referencing something like `${src}/etc/index.html`. Likewise, in
   the store it's harder to get confused with something that is just there as a
   build-time dependency vs. a runtime dependency, since the build-time
   src dependencies are tarred up.

Disadvantages are:
1. It takes slightly longer to untar at the start of a build.

As currently implemented, this attaches the compacted vendor.tar.gz feature as a
rider on `verifyCargoDeps`, since both of them are relatively newly implemented
behavior that change the `cargoSha256`.

If this PR is accepted, I will push forward the remaining rust packages with a
series of treewide PRs to update the `cargoSha256`s.
2020-02-10 10:17:29 -05:00
Mario Rodas b153b71523
rage: 0.2.0 -> 0.3.0
Changelog: https://github.com/str4d/rage/releases/tag/v0.3.0
2020-02-09 16:20:00 -05:00
Robert Helgesson d084221b36
jwt-cli: 2.5.1 -> 2.5.2 2020-02-09 17:33:08 +01:00
Frederik Rietdijk 30f0909e3a Merge master into staging-next 2020-02-07 19:27:52 +01:00
Marek Mahut 58ce5a3f47
Merge pull request #79419 from r-ryantm/auto-update/chrome-token-signing
chrome-token-signing: 1.1.0 -> 1.1.1
2020-02-07 14:26:59 +01:00
R. RyanTM 3f5e8c2d08 chrome-token-signing: 1.1.0 -> 1.1.1 2020-02-07 07:04:05 +00:00
R. RyanTM 346e552feb tpm2-tools: 4.1 -> 4.1.1 2020-02-06 20:08:49 +01:00
Frederik Rietdijk 292fd97f67 Merge staging-next into staging 2020-02-05 20:48:28 +01:00
Frederik Rietdijk 419bc0a4cd Revert "Revert "Merge master into staging-next""
In 87a19e9048 I merged staging-next into master using the GitHub gui as intended.
In ac241fb7a5 I merged master into staging-next for the next staging cycle, however, I accidentally pushed it to master.
Thinking this may cause trouble, I reverted it in 0be87c7979. This was however wrong, as it "removed" master.

This reverts commit 0be87c7979.
2020-02-05 19:41:25 +01:00
Frederik Rietdijk 0be87c7979 Revert "Merge master into staging-next"
I merged master into staging-next but accidentally pushed it to master.
This should get us back to 87a19e9048.

This reverts commit ac241fb7a5, reversing
changes made to 76a439239e.
2020-02-05 19:18:35 +01:00
Vladimír Čunát 48a997cd76
Merge #66528: glibc: 2.27 -> 2.30 (into staging)
Includes update of stdenv bootstap tools (for three main platforms)
and many package fixes with new glibc.
2020-02-05 13:41:09 +01:00
tilpner f58c90fa8d
sudo: 1.8.30 -> 1.8.31 2020-02-05 13:39:07 +01:00
Marek Mahut 5485b44d94 sequoia: 0.11.0 -> 0.13.0 2020-02-04 15:22:06 +01:00
Marek Mahut 58c0bd3076 qesteidutil: remove 2020-02-03 11:17:36 +01:00
Robert Hensing 6e62b01105
Merge pull request #78776 from mmahut/acsccid
acsccid: 1.1.6 -> 1.1.8
2020-02-01 22:02:47 +01:00
Maximilian Bosch ea8ae88f04
Merge branch 'staging' into glibc230 2020-02-01 17:42:03 +01:00
Franz Pletz 41483340c4
b3sum: init at 0.1.3 2020-02-01 14:20:51 +01:00
Jörg Thalheim c23f10da6a
fail2ban: 0.10.5 -> 0.11.1 (#67931)
fail2ban: 0.10.5 -> 0.11.1
2020-01-31 08:58:58 +00:00
Marek Mahut 9e85d5c50c
Merge pull request #78756 from mmahut/chrome-token-signing
chrome-token-signing: 1.0.7 -> 1.1.0
2020-01-31 08:28:16 +01:00
Ryan Mulligan 1972c34097
Merge pull request #77865 from r-ryantm/auto-update/bitwarden_rs-vault
bitwarden_rs-vault: 2.12.0 -> 2.12.0b
2020-01-30 06:56:37 -08:00
Jörg Thalheim d72905c58b
Merge pull request #78615 from msteen/bitwarden_rs
bitwarden_rs: 1.9.1 -> 1.13.1
2020-01-30 11:02:48 +00:00
Marek Mahut c2d7587758 acsccid: 1.1.6 -> 1.1.8 2020-01-30 10:17:20 +01:00
Marek Mahut 84eb0bee4b qdigidoc: adding mmahut as maintainer 2020-01-30 09:55:18 +01:00