Commit Graph

25401 Commits

Author SHA1 Message Date
Benjamin Hipple
a67fbc1562
cargo-license: upgrade cargo fetcher and cargoSha256 (#82084) 2020-03-08 21:06:00 -04:00
Aaron Andersen
2c61263fb3
Merge pull request #80013 from bignaux/romdirfs
romdirfs: init at 1.2
2020-03-08 20:39:34 -04:00
Florian Klink
a2aacb6989
Merge pull request #82052 from mweinelt/pr/borgbackup/1.1.11
borgbackup: 1.1.10 → 1.1.11
2020-03-08 16:26:36 -07:00
Benjamin Hipple
d1cdeb7aae
ripasso-cursive: upgrade cargo fetcher and cargoSha256 (#81988) 2020-03-08 19:18:40 -04:00
Benjamin Hipple
df4ec15453
intecture-cli: upgrade cargo fetcher and cargoSha256 (#81982) 2020-03-08 19:18:22 -04:00
Benjamin Hipple
c1a78b7928
intecture-agent: upgrade cargo fetcher and cargoSha256 (#81981) 2020-03-08 19:17:12 -04:00
Benjamin Hipple
e9d492a896
intecture-auth: upgrade cargo fetcher and cargoSha256 (#81979) 2020-03-08 19:16:56 -04:00
Bignaux Ronan
a3df64c8a7 appimage-exec.sh: simplify and improve getopts options 2020-03-08 20:34:23 +01:00
Ryan Mulligan
5e8c897901
Merge pull request #82053 from r-ryantm/auto-update/java-service-wrapper
java-service-wrapper: 3.5.42 -> 3.5.43
2020-03-08 12:18:55 -07:00
ajs124
bc21f7a0ce bitwarden_rs-vault: fix directory structure 2020-03-08 16:41:00 +01:00
R. RyanTM
ff54badc61 java-service-wrapper: 3.5.42 -> 3.5.43 2020-03-08 13:11:20 +00:00
Martin Weinelt
dbff9b5479
borgbackup: 1.1.10 → 1.1.11
Version 1.1.11 (2020-03-08)

Compatibility notes:

    When upgrading from borg 1.0.x to 1.1.x, please note:
        read all the compatibility notes for 1.1.0*, starting from 1.1.0b1.
        borg upgrade: you do not need to and you also should not run it.
        borg might ask some security-related questions once after upgrading. You can answer them either manually or via environment variable. One known case is if you use unencrypted repositories, then it will ask about a unknown unencrypted repository one time.
        your first backup with 1.1.x might be significantly slower (it might completely read, chunk, hash a lot files) - this is due to the --files-cache mode change (and happens every time you change mode). You can avoid the one-time slowdown by using the pre-1.1.0rc4-compatible mode (but that is less safe for detecting changed files than the default). See the --files-cache docs for details.
    1.1.11 removes WSL autodetection (Windows 10 Subsystem for Linux). If WSL still has a problem with sync_file_range, you need to set BORG_WORKAROUNDS=basesyncfile in the borg process environment to work around the WSL issue.

Fixes:

    fixed potential index corruption / data loss issue due to bug in hashindex_set, #4829 Please read and follow the more detailled notes close to the top of this document.
    upgrade bundled xxhash to 0.7.3, #4891 0.7.2 is the minimum requirement for correct operations on ARMv6 in non-fixup mode, where unaligned memory accesses cause bus errors. 0.7.3 adds some speedups and libxxhash 0.7.3 even has a pkg-config file now.
    upgrade bundled lz4 to 1.9.2
    upgrade bundled zstd to 1.4.4
    fix crash when upgrading erroneous hints file, #4922
    extract:
        fix KeyError for "partial" extraction, #4607
        fix "partial" extract for hardlinked contentless file types, #4725
        fix preloading for old (0.xx) remote servers, #4652
        fix confusing output of borg extract --list --strip-components, #4934
    delete: after double-force delete, warn about necessary repair, #4704
    create: give invalid repo error msg if repo config not found, #4411
    mount: fix FUSE mount missing st_birthtime, #4763 #4767
    check: do not stumble over invalid item key, #4845
    info: if the archive doesn't exist, print a pretty message, #4793
    SecurityManager.known(): check all files, #4614
    Repository.open: use stat() to check for repo dir, #4695
    Repository.check_can_create_repository: use stat() to check, #4695
    fix invalid archive error message
    fix optional/non-optional location arg, #4541
    commit-time free space calc: ignore bad compact map entries, #4796
    ignore EACCES (errno 13) when hardlinking the old config, #4730
    --prefix / -P: fix processing, avoid argparse issue, #4769

New features:

    enable placeholder usage in all extra archive arguments
    new BORG_WORKAROUNDS mechanism, basesyncfile, #4710
    recreate: support --timestamp option, #4745
    support platforms without os.link (e.g. Android with Termux), #4901 if we don't have os.link, we just extract another copy instead of making a hardlink.
    support linux platforms without sync_file_range (e.g. Android 7 with Termux), #4905

Other:

    ignore --stats when given with --dry-run, but continue, #4373
    add some ProgressIndicator msgids to code / fix docs, #4935
    elaborate on "Calculating size" message
    argparser: always use REPOSITORY in metavar, also use more consistent help phrasing.
    check: improve error output for matching index size, see #4829
    docs:
        changelog: add advisory about hashindex_set bug #4829
        better describe BORG_SECURITY_DIR, BORG_CACHE_DIR, #4919
        infos about cache security assumptions, #4900
        add FAQ describing difference between a local repo vs. repo on a server.
        document how to test exclusion patterns without performing an actual backup
        timestamps in the files cache are now usually ctime, #4583
        fix bad reference to borg compact (does not exist in 1.1), #4660
        create: borg 1.1 is not future any more
        extract: document limitation "needs empty destination", #4598
        how to supply a passphrase, use crypto devices, #4549
        fix osxfuse github link in installation docs
        add example of exclude-norecurse rule in help patterns
        update macOS Brew link
        add note about software for automating backups, #4581
        AUTHORS: mention copyright+license for bundled msgpack
        fix various code blocks in the docs, #4708
        updated docs to cover use of temp directory on remote, #4545
        add restore docs, #4670
        add a pull backup / push restore how-to, #1552
        add FAQ how to retain original paths, #4532
        explain difference between --exclude and --pattern, #4118
        add FAQs for SSH connection issues, #3866
        improve password FAQ, #4591
        reiterate that 'file cache names are absolute' in FAQ
    tests:
        cope with ANY error when importing pytest into borg.testsuite, #4652
        fix broken test that relied on improper zlib assumptions
        test_fuse: filter out selinux xattrs, #4574
    travis / vagrant:
        misc python versions removed / changed (due to openssl 1.1 compatibility) or added (3.7 and 3.8, for better borg compatibility testing)
        binary building is on python 3.5.9 now
    vagrant:
        add new boxes: ubuntu 18.04 and 20.04, debian 10
        update boxes: openindiana, darwin, netbsd
        remove old boxes: centos 6
        darwin: updated osxfuse to 3.10.4
        use debian/ubuntu pip/virtualenv packages
        rather use python 3.6.2 than 3.6.0, fixes coverage/sqlite3 issue
        use requirements.d/development.lock.txt to avoid compat issues
    travis:
        darwin: backport some install code / order from master
        remove deprecated keyword "sudo" from travis config
        allow osx builds to fail, #4955 this is due to travis-ci frequently being so slow that the OS X builds just fail because they exceed 50 minutes and get killed by travis.
2020-03-08 14:00:40 +01:00
Bignaux Ronan
a201e3dbc4 romdirfs: init at 1.2 2020-03-08 13:45:06 +01:00
Maximilian Bosch
e0a5d34664
brutespray: init at 1.6.6 2020-03-08 10:52:13 +01:00
Maximilian Bosch
3d6908bca1
medusa-unstable: init at 2018-12-16 2020-03-08 10:52:13 +01:00
Frederik Rietdijk
0eb0ddc4db Merge staging-next into master 2020-03-08 08:11:01 +01:00
Ryan Mulligan
6b6f9d769a
Merge pull request #81878 from r-ryantm/auto-update/dpic
dpic: 2019.11.30 -> 2020.03.01
2020-03-07 21:23:09 -08:00
Benjamin Hipple
9044bdef6a heatseeker: 1.5.1 -> 1.7.1
The build is currently broken on master; upgrading fixes it.
2020-03-07 15:22:11 -05:00
Bignaux Ronan
b36d3f2c4a appimage: replace writeScript to a standalone appimage-exec.sh 2020-03-07 20:24:26 +01:00
Ryan Mulligan
32a7992874
Merge pull request #81960 from r-ryantm/auto-update/profile-sync-daemon
profile-sync-daemon: 6.35 -> 6.36
2020-03-07 09:10:22 -08:00
markuskowa
98b3523f04
Merge pull request #81953 from r-ryantm/auto-update/phoronix-test-suite
phoronix-test-suite: 9.4.0 -> 9.4.1
2020-03-07 16:02:14 +01:00
Izorkin
784740aee0 mc: 4.8.23 -> 4.8.24 2020-03-07 16:00:31 +03:00
Silvan Mosberger
a0d2bed383
Merge pull request #81938 from Infinisil/fix/du-dust-name
du-dust: Change derivation name from dust to du-dust
2020-03-07 13:41:09 +01:00
Daiderd Jordan
82e27330cb
Merge pull request #81949 from marsam/update-vault
vault: 1.3.2 -> 1.3.3
2020-03-07 12:31:51 +01:00
Silvan Mosberger
ad126ee28e
du-dust: Change derivation name from dust to du-dust
This prevents confusion by nix-env when installing packages by
derivation name, since there is another package named dust already
2020-03-07 12:27:33 +01:00
R. RyanTM
5a0bbfa7f2 par2cmdline: 0.8.0 -> 0.8.1 2020-03-07 09:00:05 +01:00
R. RyanTM
c062681530 moosefs: 3.0.109 -> 3.0.110 2020-03-07 08:58:56 +01:00
R. RyanTM
ad450e99b9 profile-sync-daemon: 6.35 -> 6.36 2020-03-07 07:13:29 +00:00
R. RyanTM
6609c367ee phoronix-test-suite: 9.4.0 -> 9.4.1 2020-03-07 04:42:46 +00:00
Ryan Mulligan
a985982db6
Merge pull request #81871 from r-ryantm/auto-update/byobu
byobu: 5.131 -> 5.133
2020-03-06 18:00:23 -08:00
Andreas Rammhold
142c3153f7
ppp: apply patch for CVE-2020-8597
This fixes a potential buffer overflow in the eap_{request,response}
functions.
2020-03-06 23:35:18 +01:00
Andreas Rammhold
caffd51048
ppp: 2.4.7 -> 2.4.8 2020-03-06 23:33:43 +01:00
Lancelot SIX
95bb029bb5
Merge pull request #81914 from doronbehar/update-sequoia
sequoia: 0.14.0 -> 0.15.0
2020-03-06 23:11:37 +01:00
Lancelot SIX
389f5ce9f1
Merge pull request #81916 from r-ryantm/auto-update/libreswan
libreswan: 3.30 -> 3.31
2020-03-06 22:58:13 +01:00
R. RyanTM
40877c81a5 vector: 0.8.0 -> 0.8.1 2020-03-06 15:27:26 -06:00
R. RyanTM
bce33c5d74 libreswan: 3.30 -> 3.31 2020-03-06 19:37:20 +00:00
Doron Behar
25151bcbb6 sequoia: 0.14.0 -> 0.15.0 2020-03-06 20:03:05 +02:00
Pascal Wittmann
d3f3e83c47
Merge pull request #81883 from peterhoeg/u/pdf2djvu
pdf2djvu: 0.9.14 -> 0.9.17
2020-03-06 16:53:55 +01:00
Ryan Mulligan
d055db280a
Merge pull request #81795 from r-ryantm/auto-update/ibus-table
ibus-engines.table: 1.9.22 -> 1.9.25
2020-03-06 05:58:16 -08:00
Jörg Thalheim
4afc287a06
Merge pull request #81879 from dmeijboom/feature/update-and-fix-pulumi
Feature/update and fix pulumi
2020-03-06 10:13:54 +00:00
Maximilian Bosch
5d4fba7f43
Merge pull request #81846 from zowoq/youtube-dl
youtube-dl: 2020.03.01 -> 2020.03.06
2020-03-06 10:30:01 +01:00
Mario Rodas
ef4b914b11
vault: 1.3.2 -> 1.3.3 2020-03-06 04:20:00 -05:00
Mario Rodas
b11c5e5436
Merge pull request #81856 from r-ryantm/auto-update/topgrade
topgrade: 4.0.2 -> 4.2.0
2020-03-06 04:19:26 -05:00
Dillen Meijboom
c4f5f95d8d
Updated and fixed libstdc++ issue 2020-03-06 10:05:27 +01:00
R. RyanTM
450f8fa9b2 dpic: 2019.11.30 -> 2020.03.01 2020-03-06 08:21:15 +00:00
R. RyanTM
2f863c721e byobu: 5.131 -> 5.133 2020-03-06 07:12:15 +00:00
R. RyanTM
d34475c91b facter: 3.14.7 -> 3.14.8 2020-03-06 07:21:40 +01:00
Frederik Rietdijk
188c3a4d03 Merge staging-next into staging 2020-03-06 07:09:30 +01:00
Felix Tenley
efc1e24565 vdpauinfo: 1.0 -> 1.3 2020-03-06 07:01:06 +01:00
Vincent Breitmoser
7cc68a961d gnupg: apply patch to allow import of key updates without user ids
This adds a patch series which allows GnuPG to import updates
(revocations and subkeys) from certificates that contain no user ids.
This is relevant for refreshing keys from the default keyserver
keys.openpgp.org, where only user ids that contain verified email
addresses will be distributed, and revoked keys never contain any user
ids.

This patch series was originally authored and submitted to upstream half
a year ago (by me), but now comes from Debian packaging where it's been
included since then.

Relates to the following upstream issue: https://dev.gnupg.org/T4393
2020-03-06 06:58:56 +01:00
Peter Hoeg
d05f8b3a95 pdf2djvu: 0.9.14 -> 0.9.17 2020-03-06 11:49:52 +08:00
Mario Rodas
93ba4ecd58
Merge pull request #81830 from r-ryantm/auto-update/broot
broot: 0.13.1 -> 0.13.2
2020-03-05 21:21:44 -05:00
R. RyanTM
2106ce07d6 topgrade: 4.0.2 -> 4.2.0 2020-03-06 01:21:51 +00:00
Mario Rodas
d472a32752
Merge pull request #81798 from r-ryantm/auto-update/haproxy
haproxy: 2.1.2 -> 2.1.3
2020-03-05 19:28:08 -05:00
R. RyanTM
5db4396b91 debootstrap: 1.0.117 -> 1.0.119 2020-03-05 15:45:32 -08:00
R. RyanTM
98968b1854 wpgtk: 6.0.12 -> 6.0.13 2020-03-05 15:20:47 -08:00
R. RyanTM
7948c35be6 bitwarden_rs-vault: 2.12.0c -> 2.12.0e 2020-03-05 15:12:09 -08:00
R. RyanTM
4b4dcda1b1 chafa: 1.2.1 -> 1.2.2 2020-03-05 15:09:11 -08:00
R. RyanTM
ceeaf410be abcmidi: 2019.12.09 -> 2020.02.12 2020-03-05 15:08:03 -08:00
zowoq
815f25daed youtube-dl: 2020.03.01 -> 2020.03.06
https://github.com/ytdl-org/youtube-dl/releases/tag/2020.03.06
2020-03-06 07:24:04 +10:00
Ryan Mulligan
058023b993
Merge pull request #81837 from r-ryantm/auto-update/findomain
findomain: 1.4.1 -> 1.4.2
2020-03-05 11:22:35 -08:00
Ryan Mulligan
440f129b19
Merge pull request #81836 from r-ryantm/auto-update/emplace
emplace: 0.2.10 -> 0.2.12
2020-03-05 11:11:02 -08:00
R. RyanTM
6c20f4def3 findomain: 1.4.1 -> 1.4.2 2020-03-05 18:36:27 +00:00
R. RyanTM
d2bea921e2 emplace: 0.2.10 -> 0.2.12 2020-03-05 18:20:16 +00:00
Bignaux Ronan
349e923e00 appimage-run: replace writeScript to a standalone appimage-exec.sh 2020-03-05 18:53:11 +01:00
R. RyanTM
e7387ad05c broot: 0.13.1 -> 0.13.2 2020-03-05 16:54:20 +00:00
Ryan Mulligan
aa7634d817
Merge pull request #81766 from r-ryantm/auto-update/FanFicFare
fanficfare: 3.15.0 -> 3.16.0
2020-03-05 07:56:25 -08:00
Ryan Mulligan
f3730595ca
Merge pull request #81770 from r-ryantm/auto-update/graylog
graylog: 3.2.1 -> 3.2.2
2020-03-05 07:54:49 -08:00
Ryan Mulligan
10dfd5a8c4
Merge pull request #81760 from r-ryantm/auto-update/eternal-terminal
eternal-terminal: 6.0.6 -> 6.0.7
2020-03-05 07:46:50 -08:00
Mario Rodas
3813630ccd
Merge pull request #81806 from bhipple/auto-update/procs
procs: 0.9.11 -> 0.9.18
2020-03-05 07:59:07 -05:00
Mario Rodas
836b2246a5
Merge pull request #81797 from marsam/update-chezmoi
chezmoi: 1.7.13 -> 1.7.16
2020-03-05 07:56:35 -05:00
Mario Rodas
e368551f7a
Merge pull request #81471 from r-ryantm/auto-update/bacula
bacula: 9.4.4 -> 9.6.2
2020-03-05 07:50:55 -05:00
Jan Tojnar
ede0fff868
Merge pull request #81808 from r-ryantm/auto-update/link-grammar
link-grammar: 5.7.0 -> 5.8.0
2020-03-05 10:09:17 +01:00
zimbatm
3d6cdfa24b
nixpkgs-fmt: 0.6.1 -> 0.7.0 (#81805) 2020-03-05 08:28:11 +00:00
R. RyanTM
ebd985439f link-grammar: 5.7.0 -> 5.8.0 2020-03-05 08:05:02 +00:00
R. RyanTM
6a443fb7ce logrotate: 3.15.1 -> 3.16.0 2020-03-05 08:00:03 +00:00
Benjamin Hipple
c882a90bc6 procs: 0.9.11 -> 0.9.18 2020-03-05 01:30:08 -05:00
R. RyanTM
e08b7fff16 haproxy: 2.1.2 -> 2.1.3 2020-03-05 04:38:58 +00:00
R. RyanTM
b0af283e05 ibus-engines.table: 1.9.22 -> 1.9.25 2020-03-05 04:04:38 +00:00
Mario Rodas
e1a183e21c
Merge pull request #81642 from r-ryantm/auto-update/stress-ng
stress-ng: 0.10.19 -> 0.11.01
2020-03-04 19:55:37 -05:00
Mario Rodas
70296be9f6
chezmoi: 1.7.13 -> 1.7.16 2020-03-04 18:00:00 -05:00
R. RyanTM
2954d5544d graylog: 3.2.1 -> 3.2.2 2020-03-04 22:58:13 +00:00
R. RyanTM
983a77a46c fanficfare: 3.15.0 -> 3.16.0 2020-03-04 22:17:43 +00:00
R. RyanTM
c522b865b9 eternal-terminal: 6.0.6 -> 6.0.7 2020-03-04 20:39:16 +00:00
Jan Tojnar
1a44e325d2
Merge branch 'staging-next' into staging 2020-03-04 21:24:05 +01:00
Lancelot SIX
7399c59c41
Merge pull request #81743 from r-ryantm/auto-update/asymptote
asymptote: 2.62 -> 2.63
2020-03-04 20:43:13 +01:00
R. RyanTM
efd0ee0d3c asymptote: 2.62 -> 2.63 2020-03-04 17:46:41 +00:00
Mario Rodas
a7454c0a18
Merge pull request #81700 from r-ryantm/auto-update/nwipe
nwipe: 0.26 -> 0.27
2020-03-04 08:47:01 -05:00
Mario Rodas
7b3aae052c
Merge pull request #81702 from zowoq/fuse-overlayfs
fuse-overlayfs: 0.7.6 -> 0.7.7
2020-03-04 07:47:13 -05:00
Mario Rodas
6c5b7304fb
Merge pull request #81226 from zowoq/tealdeer
tealdeer: 1.2.0 -> 1.3.0
2020-03-04 07:46:39 -05:00
Mario Rodas
a8c63feb3c
Merge pull request #81699 from r-ryantm/auto-update/mutagen
mutagen: 0.11.0 -> 0.11.2
2020-03-04 07:42:09 -05:00
Emery Hemingway
ea15605aaa stubby: 0.2.6 -> 0.3.0 2020-03-04 11:21:22 +01:00
zowoq
4f2e31a131 fuse-overlayfs: 0.7.6 -> 0.7.7
https://github.com/containers/fuse-overlayfs/releases/tag/v0.7.7
2020-03-04 18:56:31 +10:00
R. RyanTM
37f9f898ad nwipe: 0.26 -> 0.27 2020-03-04 08:31:40 +00:00
R. RyanTM
baff63e0ba mutagen: 0.11.0 -> 0.11.2 2020-03-04 08:15:39 +00:00
Jan Tojnar
9d0fac46fd
Merge pull request #81664 from jtojnar/vips-cleanup
vips: general clean-ups
2020-03-04 08:26:18 +01:00
Mario Rodas
8b44e6b1ee
Merge pull request #81683 from r-ryantm/auto-update/fluent-bit
fluent-bit: 1.3.8 -> 1.3.9
2020-03-03 23:33:09 -05:00
R. RyanTM
fb2f9d807f fluent-bit: 1.3.8 -> 1.3.9 2020-03-04 03:59:07 +00:00
Florian Klink
d881de1e96
Merge pull request #81317 from eamsden/eamsden/nix23-fix-cross-compile
nix: Patch config.nix.in to reference host platform binaries
2020-03-03 17:35:31 -08:00
Jan Tojnar
3aa9d99a0a
vips: split into multiple outputs 2020-03-04 01:32:41 +01:00
Jan Tojnar
658b4914f3
vips: propagate glib
The .pc file has gobject-2.0 in Requires
2020-03-04 01:28:09 +01:00
Jan Tojnar
1829f233dc
vips: do not run configure twice 2020-03-04 01:27:23 +01:00
Jan Tojnar
9806a7638b
vips: clean up 2020-03-04 01:23:43 +01:00
Mario Rodas
9294305e1f
Merge pull request #80583 from marsam/update-du-dust
du-dust: 0.4.4 -> 0.5.0
2020-03-03 18:46:17 -05:00
Edward Amsden
3b72c55fc5
nix: Drive-by cleanup: replace ifthenelse with lib.optionalString 2020-03-03 18:07:21 -05:00
Edward Amsden
f1415f633c
nix: Patch config.nix.in to reference host platform binaries 2020-03-03 18:07:09 -05:00
Christian Lütke-Stetzkamp
c8299d69b0 licensor: Fix test in 2020 2020-03-03 22:40:33 +01:00
Jan Tojnar
1459b34afa
netpbm: fix wrappers 2020-03-03 22:30:52 +01:00
worldofpeace
1bb8a2baaf
Merge pull request #81554 from ianmjones/snippetpixie-update-1.3.1
snippetpixie: 1.2.2 -> 1.3.1
2020-03-03 19:19:27 +00:00
R. RyanTM
0b121e343d stress-ng: 0.10.19 -> 0.11.01 2020-03-03 18:59:55 +00:00
Mario Rodas
e9375934de
Merge pull request #81592 from zowoq/kepubify
kepubify: 3.0.0 -> 3.1.0
2020-03-03 08:03:03 -05:00
Ian M. Jones
017926a8b3 snippetpixie: 1.2.2 -> 1.3.1 2020-03-03 09:24:32 +00:00
R. RyanTM
774324ae76 plantuml: 1.2020.1 -> 1.2020.2 2020-03-03 09:21:16 +01:00
R. RyanTM
fe898d5f76 modemmanager: 1.12.4 -> 1.12.6 2020-03-03 07:42:09 +01:00
zowoq
3c7eb6f1be kepubify: 3.0.0 -> 3.1.0
https://github.com/geek1011/kepubify/releases/tag/v3.1.0
2020-03-03 16:25:05 +10:00
Lancelot SIX
ac75010d33
Merge pull request #81549 from r-ryantm/auto-update/parallel
parallel: 20200122 -> 20200222
2020-03-02 23:35:57 +01:00
David Wood
f4d6ed2e8b starship: 0.36.1 -> 0.37.0
Signed-off-by: David Wood <david@davidtw.co>
2020-03-02 21:05:06 +01:00
Jan Tojnar
f27031f48f
Merge pull request #81063 from NixOS/netpbm
netpbm: 10.82.01 → 10.89.1
2020-03-02 19:26:25 +01:00
R. RyanTM
519ac8cff4 parallel: 20200122 -> 20200222 2020-03-02 18:12:18 +00:00
Maximilian Bosch
9da547da98
Merge pull request #81478 from Profpatsch/httpie-docs
Httpie docs
2020-03-02 12:32:39 +01:00
Peter Hoeg
476dd85c09 vmfs-tools: minor cleanup 2020-03-02 17:41:47 +08:00
Peter Hoeg
dde9dad3ae
Merge pull request #81280 from peterhoeg/u/peruse
peruse: 1.2.20180618 -> 1.2.20200208
2020-03-02 10:55:00 +08:00
Mario Rodas
f6ed819204
Merge pull request #81455 from eadwu/wakatime/13.0.7
wakatime: 13.0.4 -> 13.0.7
2020-03-01 19:57:01 -05:00
Profpatsch
2167ed8aac httpie: add fish and bash completions 2020-03-02 01:16:54 +01:00
Profpatsch
9176f20bc3 httpie: add manpage and html docs
httpie has quite extensive documentation in form of its rst readme.
With docutils it’s quite easy to convert to html.

We can also convert it to a manpage, which makes the documentation
accessible from the command line (even though it’s not quite standard
format as far as manpages go; however a lot better than nothing).
2020-03-02 00:47:23 +01:00
zowoq
5ce2974294 youtube-dl: 2020.02.16 -> 2020.03.01
https://github.com/ytdl-org/youtube-dl/releases/tag/2020.03.01
2020-03-02 09:15:28 +10:00
R. RyanTM
1439ba682e bacula: 9.4.4 -> 9.6.2 2020-03-01 22:28:37 +00:00
Michael Weiss
4e1f77e9aa
wob: 0.7 -> 0.8 2020-03-01 17:45:24 +01:00
Jan Tojnar
7566c09a0c
netpbm: Remove "CVE" patch
The CVE was patched upstream long ago.

http://cve.circl.lu/cve/CVE-2005-2471

-dPARANOIDSAFER seems not to be supported any more.

https://phabricator.wikimedia.org/T136402#2338482
https://git.ghostscript.com/?p=ghostpdl.git;a=commit;h=79a06b45e784e6839b2b2129cd2620ea606254e1
2020-03-01 16:14:38 +01:00
Mario Rodas
5d9c31572b
Merge pull request #81128 from deingithub/keybase-5-2-1-update
keybase,kbfs,keybase-gui: 5.1.1 -> 5.2.1
2020-03-01 10:14:38 -05:00
Mario Rodas
6df88af9cc
Merge pull request #81426 from r-ryantm/auto-update/aws-google-auth
aws-google-auth: 0.0.33 -> 0.0.34
2020-03-01 10:05:56 -05:00
Jan Tojnar
43ea7f1c0a
netpbm: Hardcode rgb.txt path
We did that in the past with rgbpaths.patch in the past but it was eventually removed. This fixes the regression.
2020-03-01 15:40:29 +01:00
Jan Tojnar
44f69611ad
netpbm: re-enable parallel building
It was disabled in abd3c246a4 but it no longer seems to fail.
2020-03-01 15:27:41 +01:00
Jan Tojnar
256f7172ac
netpbm: more clean ups
* Append to config.mk instead of substituting
* Remove unused path substitution (rgbpaths.patch was deleted in f6c28984f2)
* -lz in LDFLAGS does not seem to be necessary
* Touching the file (introduced in 4dd9507b83) does not seem to be necessary.
2020-03-01 15:27:35 +01:00
Maximilian Bosch
c3b331a777
bandwhich: 0.11.0 -> 0.12.0
https://github.com/imsnif/bandwhich/releases/tag/0.12.0
2020-03-01 15:14:46 +01:00
Jan Tojnar
9555834399
netpbm: split into multiple outputs 2020-03-01 15:13:03 +01:00
Jan Tojnar
90180905a2
netpbm: Fix tiff support
The build script check whether JPEGLIB and ZLIB are not set to NONE.
We did not set the latter as pkg-config handles zlib requirement
for libpng dependency and the comment in config.mk only talks about
zlib being needed for libpng.

Since libtiff only needs libz for static linking, we turn TIFFLIB_NEEDS_ZLIB
off instead of pointlessly setting ZLIB value.

Closes: https://github.com/NixOS/nixpkgs/issues/75156
2020-03-01 15:13:03 +01:00
Jan Tojnar
aa1aefd06a
netpbm: 10.82.01 → 10.89.1
https://sourceforge.net/p/netpbm/code/3735/tree//advanced/doc/HISTORY
2020-03-01 15:13:03 +01:00
Jan Tojnar
6b4d057b66
netpbm: add pre/post phase hooks 2020-03-01 15:13:02 +01:00
Jan Tojnar
8ea075bcb9
netpbm: Clean up
* Format with nixpkgs-fmt
* Move build tools to nativeBuildInputs
* Clarify license
2020-03-01 15:13:02 +01:00
Jan Tojnar
b19ce7cfe9
netpbm: add updateScript 2020-03-01 15:13:02 +01:00
worldofpeace
851aac4055
Merge pull request #80987 from andir/ipmitool
ipmitool: migrate to openssl 1.1
2020-03-01 14:10:11 +00:00
worldofpeace
82217553b0 ipmitool: fix compile on darwin 2020-03-01 08:50:00 -05:00
Florian Klink
43ec75d470 ipmitool: cleanup expression
* remove no-op substitution of s6_addr16 -> s6_addr

This string doesn't exist anymore in that file.

* clean up configureFlags
2020-03-01 08:49:29 -05:00
Frederik Rietdijk
33133b2667
Merge pull request #81167 from NixOS/staging-next
Staging next
2020-03-01 13:45:30 +01:00
R. RyanTM
543c864f23
aws-google-auth: 0.0.33 -> 0.0.34 2020-03-01 09:16:22 +00:00
Mario Rodas
3a8e954e29
Merge pull request #81251 from bhipple/u/rust-cargo-bukubrow
bukubrow: upgrade cargo fetcher and cargoSha256
2020-02-29 19:33:09 -05:00
Mario Rodas
d778aafabd
Merge pull request #80588 from r-ryantm/auto-update/hevea
hevea: 2.32 -> 2.33
2020-02-29 18:26:14 -05:00
Mario Rodas
60cfad09ca
Merge pull request #81349 from r-ryantm/auto-update/openfortivpn
openfortivpn: 1.11.0 -> 1.12.0
2020-02-29 18:18:51 -05:00
Mario Rodas
c03bfa676e
Merge pull request #81250 from bhipple/u/rust-cargo-lorri
lorri: upgrade cargo fetcher and cargoSha256
2020-02-29 18:17:45 -05:00