Commit graph

8508 commits

Author SHA1 Message Date
Robert Schütz 570daf897f opentsdb: mark as insecure
https://github.com/OpenTSDB/opentsdb/issues/2051 has not been addressed yet
2021-01-25 15:16:35 +01:00
ilian 1ddc730412 moreutils: 0.63 -> 0.65 2021-01-25 12:44:20 +01:00
github-actions[bot] b10ed56b8e
Merge master into staging-next 2021-01-25 01:18:25 +00:00
Michael Weiss ab757a382c
lf: 18 -> 19 2021-01-24 20:43:26 +01:00
Jan Tojnar cc8fd11ffb
Merge branch 'master' into staging-next 2021-01-24 20:41:42 +01:00
Mario Rodas a517bcfb1d
Merge pull request #110217 from r-ryantm/auto-update/plantuml
plantuml: 1.2020.26 -> 1.2021.0
2021-01-24 11:59:52 -05:00
volth bc0d605cf1 treewide: fix double quoted strings in meta.description
Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
2021-01-24 19:56:59 +07:00
github-actions[bot] 09e2990117
Merge master into staging-next 2021-01-24 12:41:11 +00:00
zowoq 5cdf493674 youtube-dl: 2021.01.16 -> 2021.01.24.1
https://github.com/ytdl-org/youtube-dl/releases/tag/2021.01.24.1
2021-01-24 22:39:58 +10:00
Frederik Rietdijk 4acf7fd6bc Revert "findutils: 4.7.0 -> 4.8.0"
Broke darwin stdenv
https://github.com/NixOS/nixpkgs/pull/110647#issuecomment-766300643

This reverts commit 67000665dd.
2021-01-24 08:45:38 +01:00
github-actions[bot] b88b52998b
Merge master into staging-next 2021-01-24 01:18:51 +00:00
Sandro 212bc4ecbf
Merge pull request #110639 from bobrik/ivan/mc-prefixup
mc: move dependency pruning from post to pre fixup
2021-01-24 01:21:55 +01:00
Jan Tojnar 01ee4ea574
Merge branch 'master' into staging-next 2021-01-24 00:09:45 +01:00
Ivan Babrou a7f0bf7916 mc: move dependency pruning from post to pre fixup
See: https://github.com/NixOS/nixpkgs/pull/105026#issuecomment-751163086
2021-01-23 14:20:31 -08:00
markuskowa 2f34b4b883
Merge pull request #108983 from markuskowa/dev-mpi
Use mpi attribute consistently to provide a default MPI implementation
2021-01-23 22:51:09 +01:00
Robert Schütz fcef64cc39
esphome: 1.15.2 -> 1.15.3 (#110609) 2021-01-23 20:18:58 +01:00
github-actions[bot] 58752914f4
Merge master into staging-next 2021-01-23 12:40:13 +00:00
Jörg Thalheim 38833ce603
Merge pull request #99386 from mohe2015/smaller-system
grub2: Properly disable zfs by default
2021-01-23 11:22:19 +00:00
Sander van der Burg 9af95960e2 skawarePackages: 2021-01 release
Maintainer notes
-----
The execline exec function interface changed quite drastically, and
backwards-compatibility to the old functions was dropped in-between
the last release and this one. Thus, downstream code might break.
At the end of this commit message is a compatibility interface.

-----
Release notes
-----

 Hello,

 Happy New Year to everyone!
 New versions of the skarnet.org packages are available.

 This is a major release. The skalibs major version number has been
bumped, which means that compatibility with previous versions is not
ensured. Other packages have been updated to build against the new
skalibs. If they only had their patch number increased, that's all
the modifications they had (save for possible bugfixes); but some
packages also received significant changes and underwent either a major
(compatibility not ensured) or minor (simple additions) release.

 Support for the 2.9.* branch of skalibs, and associated versions of
the other packages, is still ensured for a while, but users are always
strongly encouraged to upgrade.

 * General
   -------

 - Some rarely-triggered build bugs have been fixed.
 - -fno-stack-protector is not part of the default CFLAGS anymore;
stack protector policy now defaults to the compiler's settings.

* skalibs-2.10.0.0
  ----------------

 - Bugfixes.
 - Significant code cleanup.
 - New sysdep: chroot.
 - Lots of new functions, mostly to optimize the number of needed
fcntl() calls at open() time. Traces should generally be marginally
shorter than they were before.
 - Removal of the DJBUNIX_FLAG_NB and DJBUNIX_FLAG_COE macros, replaced
by the POSIX O_NONBLOCK and O_CLOEXEC macros wherever they were used.
 - Removal of the skalibs/webipc.h header, and better header separation.
 - Complete revamping of the pathexec functions, now separated into
exec_* (simple execution) and mexec_* (execution with merging of the
environment first). In true skalibs fashion, there is a little code,
and 3 pages of convenience macros (the exec.h header).
 - Complete rewrite of the locking functions, with a change of
underlying mechanisms. The skalibs locking primitives are now named
fd_lock(), fd_unlock() and fd_islocked().
 The Unix locks primitive space is a horror show. flock() is not
POSIX and does not have a way to test for a lock without taking it.
The POSIX lockf() only has exclusive locks, not shared ones. The least
bad option is fcntl(), which has shared and exclusive locks *and* a way
to check for a lock without taking it, but does not allow taking a
shared lock via a O_WRONLY file descriptor. Of all inconveniences this
is the most minor one, so now skalibs uses fcntl().

 https://skarnet.org/software/skalibs/
 git://git.skarnet.org/skalibs

 * nsss-0.1.0.0
   ------------

 - New --enable-libc-includes configure option. Without this option,
the pwd.h, grp.h and shadow.h headers are not installed anymore, so
by default installing nsss on a FHS system does not overwrite the
libc headers.

 https://skarnet.org/software/nsss/
 git://git.skarnet.org/nsss

 * utmps-0.1.0.0
   -------------

 - New --enable-libc-includes configure option. Without this option,
the utmpx.h header is not installed anymore, so by default installing
utmps on a FHS system does not overwrite the libc headers.

 https://skarnet.org/software/utmps/
 git://git.skarnet.org/utmps

 * execline-2.7.0.0
   ----------------

 - Bugfixes.
 - The trap program has changed. The "timeout" directive has been
removed; a "default" directive has been added, to handle all signals
for which a specific directive has not been given. Subprograms are
now run with the SIGNAL environment variable set to the signal number
(in addition to ! always being set to the application's pid).
 - The forstdin program has changed. It now exits 0 if it has read at
least one line, and 1 otherwise.
 - The default list of delimiters for backtick, withstdinas, forstdin
and forbacktickx has been set to "\n", so by default those programs
will read and/or split on lines and only lines.
 - The backtick, withstdinas, forstdin, forbacktickx, forx, getpid
and getcwd programs now have a -E option to activate autoimport.
(This saves the user from manually adding "importas var var" after
every use of these programs.)

 https://skarnet.org/software/execline/
 git://git.skarnet.org/execline

 * s6-2.10.0.0
   -----------

 It is imperative to restart your supervision trees, by rebooting if
necessary, after upgrading s6 to the new version. Otherwise, new s6
binaries interacting with service directories maintained by old
s6-supervise binaries may not work.
 If you are using s6-linux-init, it is necessary to upgrade to the
latest version of s6-linux-init at the same time as s6.

 - Bugfixes.
 - Significant code refactoring.
 - The internal locking system of service directories has changed,
allowing for a cleaner permissions model and official support of
relaxed permissions.
 - New binary to implement those relaxed permissions: s6-svperms.
 - The "nosetsid" file is not supported anymore in service directories.
Services are now always started in a new session.
 - s6-supervise now traps SIGINT: before dying, it sends a SIGINT to its
service's process group. This allows correct transmission of ^C when a
supervision tree is running in a terminal, even though every service
runs in its own session.
 - s6-svc -X doesn't exist anymore. s6-supervise now always closes stdin
and stdout on the last execution of the service.
 - The semantics of SIGHUP and SIGQUIT have changed for s6-supervise.
 - The set of commands sent by s6-svscanctl and received by s6-svscan
has been cleaned up and made more logical.
 - When told to exit normally (typically via s6-svscanctl -t), s6-svscan
now first waits for the whole supervision tree to die. The
.s6-svscan/finish script can now assume that all services are completely
down. (s6-svscanctl -b is an exception; it should not be used in normal
circumstances.)
 - The -s and -S options to s6-svscan are not supported anymore. Signal
management in s6-svscan has been streamlined: signals have a default
handler that can be overridden by a corresponding executable
.s6-svscan/SIGfoo file.
 - Default signal handlers for s6-svscan have more intuitive semantics.
 - New binary to help with management of user-owned supervision trees:
s6-usertree-maker.

 https://skarnet.org/software/s6/
 git://git.skarnet.org/s6

s6 now has man pages! Thanks to flexibeast for performing the conversion

work. Please allow some time for the man pages to be updated to reflect
the current HTML documentation. The repository can be found here:

 https://github.com/flexibeast/s6-man-pages

 * s6-linux-init-1.0.6.0
   ---------------------

 It *is necessary* to upgrade s6-linux-init at the same time as s6.
 It *is recommended*, although not strictly necessary, to create your
run-image directory again via a s6-linux-init-maker invocation. Old
images will still boot, as long as you are using an upgraded version
of s6-linux-init; but they may incorrectly handle signals sent to init,
so for instance Ctrl-Alt-Del may not work anymore, until you run
s6-linux-init-maker again.

 - New internal binary: s6-linux-init-nuke. This program is not meant
to be invoked by users directly: it simply removes a dependency to the
'kill' program in a rare case involving containers.

 https://skarnet.org/software/s6-linux-init/
 git://git.skarnet.org/s6-linux-init

 * s6-dns-2.3.4.0
   --------------

 - New library function: s6dns_message_parse_question().

 https://skarnet.org/software/s6-dns/
 git://git.skarnet.org/s6-dns

 * s6-networking-2.4.0.0
   ---------------------

 - Important refactoring of the tls code. The crypto tunnel now runs
as a child of the application, instead of the other way around. It is
now isolated in a s6-tls[cd]-io binary; s6-tlsc is now a simple wrapper
around s6-tlsc-io, and s6-tlsd is a simple wrapper around s6-tlsd-io.
 - New binaries: s6-ucspitlsc and s6-ucspitlsd. Those implement
opportunistic TLS via the UCSPI-TLS protocol.
 - The -K option to the tls binaries has changed semantics: it now
enforces a timeout for the handshake instead of dropping the connection
after some inactivity. Note that this option is only useful with the
bearssl backend: the libtls backend always performs a synchronous
handshake, with no way of interrupting it after a timeout expires.
 - The execline dependency is now optional. Disabling execline, however,
changes the behaviour of s6-tcpserver-access (which cannot support
exec files without it).

 https://skarnet.org/software/s6-networking/
 git://git.skarnet.org/s6-networking

 It is now possible to build the s6-networking package against OpenSSL
instead of LibreSSL, thanks to the libretls project:
 https://git.causal.agency/libretls/about/

 * mdevd-0.1.3.0
   -------------

 - New -C option to the mdevd program. This option makes mdevd
automatically spawn a mdevd-coldplug program when it's ready, allowing
mdevd to be used as a drop-in mdev -d replacement. (Note that the
coldplug is also performed if mdevd restarts after being killed, so
this feature should not be used in place of a proper service startup
sequence with a mdevd-coldplug oneshot depending on the mdevd longrun.
It has only been added for convenience.)

 https://skarnet.org/software/mdevd/
 git://git.skarnet.org/mdevd

 * Other packages
   --------------

 The following packages have received an update so they build with the

latest version of skalibs and other dependencies, but nothing has changed

except possibly some bugfixes, and hopefully not too many bug additions.

 - s6-rc-0.5.2.1. (It is not necessary to recompile your service
database. However, it is necessary to upgrade s6-rc along with s6, and
to reboot the system ASAP after upgrading.)
 - s6-portable-utils-2.2.3.1
 - s6-linux-utils-2.5.1.4
 - bcnm-0.0.1.2

 Enjoy,
 Bug-reports welcome.

--
 Laurent

-----
execline compat interface
-----

    /* Compatibility */

    #define pathexec_run(file, argv, envp) exec_ae(file, argv, envp)
    #define pathexec0_run(file, argv, envp) exec0_ae(file, argv, envp)
    #define xpathexec_run(file, argv, envp) xexec_ae(file, argv, envp)
    #define xpathexec0_run(file, argv, envp) xexec0_ae(file, argv, envp)

    #define pathexec_env(key, value) env_mexec(key, value)
    #define pathexec_fromenv(argv, envp, envlen) mexec_f(argv, envp, envlen)
    #define pathexec(argv) mexec(argv)
    #define pathexec0(argv) mexec0(argv)
    #define xpathexec_fromenv(argv, envp, envlen) xmexec_f(argv, envp, envlen)
    #define xpathexec(argv) xmexec(argv)
    #define xpathexec0(argv) xmexec0(argv)

    #define pathexec_r_name(file, argv, envp, envlen, modif, modiflen) mexec_afm(file, argv, envp, envlen, modif, modiflen)
    #define pathexec_r(argv, envp, envlen, modif, modiflen) mexec_fm(argv, envp, envlen, modif, modiflen)
    #define xpathexec_r_name(file, argv, envp, envlen, modif, modiflen) xmexec_afm(file, argv, envp, envlen, modif, modiflen)
    #define xpathexec_r(argv, envp, envlen, modif, modiflen) xmexec_fm(argv, envp, envlen, modif, modiflen)

    #endif

copied from 18e4356557 (diff-69efbe5d997280a1430a6af2fa38e3f5105e706076a26fc751885c505ca598c6R140)
2021-01-23 12:16:41 +01:00
Markus Kowalewski 6dba41fbcb
mpi: use mpi attribute consistently as the default MPI implementations
Use the attribute mpi to provide a system wide default MPI
implementation. The default is openmpi (as before).
This now allows for overriding the MPI implentation by using
the overlay mechanism. Build all packages with mpich instead
of the default openmpi can now be achived like this:
self: super:
 {
   mpi = super.mpich;
 }

All derivations that have been using "mpi ? null" to provide optional
building with MPI have been change in the following way to allow for
optional builds with MPI:
{ ...
, mpi
, useMpi ? false
}
2021-01-23 12:15:13 +01:00
github-actions[bot] 8103cb9089
Merge staging-next into staging 2021-01-23 01:18:03 +00:00
Mario Rodas d65c354710
Merge pull request #110528 from r-ryantm/auto-update/pgmetrics
pgmetrics: 1.10.3 -> 1.10.5
2021-01-22 19:57:04 -05:00
Lancelot SIX 67000665dd findutils: 4.7.0 -> 4.8.0
See https://lists.gnu.org/archive/html/info-gnu/2021-01/msg00008.html
for release announcement.
2021-01-22 21:36:59 +01:00
Jörg Thalheim fa521222a4
Merge pull request #110511 from r-ryantm/auto-update/nix-direnv
nix-direnv: 1.2 -> 1.2.1
2021-01-22 20:17:31 +00:00
R. RyanTM da96664623 pgmetrics: 1.10.3 -> 1.10.5 2021-01-22 19:04:36 +00:00
github-actions[bot] 08c4f9056e
Merge staging-next into staging 2021-01-22 18:52:00 +00:00
R. RyanTM e58c59c3dc nix-direnv: 1.2 -> 1.2.1 2021-01-22 16:49:58 +00:00
AndersonTorres 3e61deb190 rcm: 1.1.3 -> 1.3.4 2021-01-22 10:27:48 -03:00
github-actions[bot] a5bbeb4fb1
Merge staging-next into staging 2021-01-22 12:43:02 +00:00
Matthias Beyer e3b4a6c2d8
sfeed: init at 0.9.20 (#107173)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-22 09:33:43 +01:00
Sandro 9a92886922
Merge pull request #110395 from zowoq/gemset 2021-01-22 09:31:07 +01:00
zowoq 153ad8bc1e Merge staging-next into staging 2021-01-22 16:56:40 +10:00
Bruno Bigras 754d6347b6 tab-rs: 0.5.5 -> 0.5.6 2021-01-21 21:17:58 -05:00
zowoq 59b83c43e0 treewide: add final newline 2021-01-22 07:18:04 +10:00
github-actions[bot] 27c8ef972c
Merge staging-next into staging 2021-01-21 18:51:36 +00:00
mohe2015 d44c6219b8
grub2: Properly disable zfs by default 2021-01-21 18:28:35 +01:00
Ryan Mulligan 515fcfe4a8
Merge pull request #110354 from r-ryantm/auto-update/fend
fend: 0.1.11 -> 0.1.13
2021-01-21 09:27:24 -08:00
R. RyanTM d35953fc3c fend: 0.1.11 -> 0.1.13 2021-01-21 15:15:25 +00:00
Ryan Mulligan 48e923959e
Merge pull request #110222 from r-ryantm/auto-update/phoronix-test-suite
phoronix-test-suite: 10.0.1 -> 10.2.0
2021-01-21 06:48:54 -08:00
github-actions[bot] 7d80106978
Merge staging-next into staging 2021-01-21 12:44:13 +00:00
Bruno Bigras 7d3c52356f broot: 1.1.10 -> 1.2.0 2021-01-21 04:56:01 -05:00
Mario Rodas 762f665963
Merge pull request #110240 from r-ryantm/auto-update/powerline-go
powerline-go: 1.18.0 -> 1.20.0
2021-01-20 21:09:16 -05:00
github-actions[bot] e5fef074d6
Merge staging-next into staging 2021-01-21 01:19:31 +00:00
R. RyanTM 2e258c1358 powerline-go: 1.18.0 -> 1.20.0 2021-01-20 23:50:13 +00:00
R. RyanTM d1468d9531 phoronix-test-suite: 10.0.1 -> 10.2.0 2021-01-20 21:09:08 +00:00
R. RyanTM d8c6dbf7b6 plantuml: 1.2020.26 -> 1.2021.0 2021-01-20 20:55:45 +00:00
Sandro 809a698280
Merge pull request #110202 from llathasa-veleth/master
disfetch: 1.13 -> 1.14
2021-01-20 21:10:31 +01:00
llathasa-veleth 92815bb5b7 disfetch: 1.13 -> 1.14 2021-01-20 22:26:15 +03:00
github-actions[bot] 49d7c98041
Merge staging-next into staging 2021-01-20 18:53:18 +00:00
Guillaume Girol 7a865aa59c
Merge pull request #109965 from r-ryantm/auto-update/kcollectd
kcollectd: 0.11.99.0 -> 0.12.0
2021-01-20 18:45:40 +00:00
Sandro 7eabc55c90
Merge pull request #110188 from Emantor/pkg/rauc
rauc: init at 1.5
2021-01-20 19:44:38 +01:00
Oleksii Filonenko 9a1b21a39f
Merge pull request #110173 from r-ryantm/auto-update/onefetch
onefetch: 2.7.3 -> 2.9.1
2021-01-20 20:19:04 +02:00
Rouven Czerwinski 1d260dad5a rauc: init at 1.5
The Robust Auto Update Controller is an update program for embedded
systems. Primarily useful in NixOS for working with bundles.
2021-01-20 17:39:08 +01:00
R. RyanTM 7d0d15be5a onefetch: 2.7.3 -> 2.9.1 2021-01-20 14:19:35 +00:00
Sandro 9a3761b663
Merge pull request #106814 from freezeboy/unbreak-archi
archi: unbreak build
2021-01-20 14:40:11 +01:00
github-actions[bot] 77750c1f20
Merge staging-next into staging 2021-01-20 12:43:41 +00:00
SCOTT-HAMILTON 912c39a7ad haste-client: replace bundlerEnv with cleaner bundlerApp 2021-01-20 00:49:41 -08:00
github-actions[bot] 8f8d526926
Merge staging-next into staging 2021-01-20 06:46:54 +00:00
Ryan Mulligan 1681e5b3c4
Merge pull request #109845 from r-ryantm/auto-update/goreleaser
goreleaser: 0.149.0 -> 0.155.0
2021-01-19 18:22:53 -08:00
github-actions[bot] b27f238893
Merge staging-next into staging 2021-01-20 01:20:12 +00:00
zowoq 31f5dd3f36 treewide: editorconfig fixes
- remove trailing whitespace
- use spaces for indentation
2021-01-20 09:11:11 +10:00
Ryan Mulligan da25268ca2
Merge pull request #109993 from r-ryantm/auto-update/latex2html
latex2html: 2020.2 -> 2021
2021-01-19 11:05:59 -08:00
github-actions[bot] e064950cb7
Merge staging-next into staging 2021-01-19 18:52:27 +00:00
R. RyanTM 5821cd7c06 latex2html: 2020.2 -> 2021 2021-01-19 18:02:08 +00:00
Sandro dbb7804073
Merge pull request #109736 from ymarkus/rpi-imager
rpi-imager: init at 1.5
2021-01-19 16:32:24 +01:00
R. RyanTM 8605813232 kcollectd: 0.11.99.0 -> 0.12.0 2021-01-19 14:33:36 +00:00
Sandro abcd2c1cda
Merge pull request #109858 from r-ryantm/auto-update/hebcal
hebcal: 4.22 -> 4.24
2021-01-19 14:38:01 +01:00
Yannick Markus 956f1a8e71
rpi-imager: init at 1.5 2021-01-19 14:35:45 +01:00
github-actions[bot] 4f6b8a3611
Merge staging-next into staging 2021-01-19 06:43:37 +00:00
Mario Rodas cf07f8d15d
Merge pull request #109668 from marsam/update-mcfly
mcfly: 0.5.2 -> 0.5.3
2021-01-18 22:06:08 -05:00
github-actions[bot] e8a1f18e58
Merge staging-next into staging 2021-01-19 01:18:25 +00:00
R. RyanTM 0e1dedba4b hebcal: 4.22 -> 4.24 2021-01-19 00:01:27 +00:00
R. RyanTM 126463c378 goreleaser: 0.149.0 -> 0.155.0 2021-01-18 22:45:54 +00:00
R. RyanTM 580dd1b6fb gammy: 0.9.59 -> 0.9.62 2021-01-18 20:57:33 +00:00
github-actions[bot] 9f3193a9ee
Merge staging-next into staging 2021-01-18 18:51:57 +00:00
Sandro 0dfe3152b6
Merge pull request #109782 from r-ryantm/auto-update/dua
dua: 2.10.5 -> 2.10.9
2021-01-18 17:44:03 +01:00
Silvan Mosberger 40762d37a8
Merge pull request #109781 from r-ryantm/auto-update/du-dust
du-dust: 0.5.3 -> 0.5.4
2021-01-18 16:45:23 +01:00
R. RyanTM c514b2dc3c dua: 2.10.5 -> 2.10.9 2021-01-18 15:08:37 +00:00
R. RyanTM d4fc41099e du-dust: 0.5.3 -> 0.5.4 2021-01-18 15:04:04 +00:00
Sandro 1ab634ebdc
Merge pull request #109749 from r-ryantm/auto-update/chezmoi
chezmoi: 1.8.9 -> 1.8.10
2021-01-18 14:29:19 +01:00
Sandro 43dbe13483
Merge pull request #98464 from mpoquet/i3nator-init-1.2.0
i3nator: init at 1.2.0
2021-01-18 14:15:15 +01:00
Sandro 0939b6d2e0
Merge pull request #96536 from SCOTT-HAMILTON/haste-client
haste-client: Init at 0.2.3
2021-01-18 14:04:31 +01:00
R. RyanTM 3f859fcec9 chezmoi: 1.8.9 -> 1.8.10 2021-01-18 12:57:06 +00:00
github-actions[bot] 22e408d5f1
Merge staging-next into staging 2021-01-18 06:42:39 +00:00
Jörg Thalheim 57d863b1f0
Merge remote-tracking branch 'upstream/staging-next' into HEAD 2021-01-17 18:09:56 +01:00
Sandro 4e292b04af
Merge pull request #109632 from siraben/stdenv-lib-2 2021-01-17 16:29:40 +01:00
Ben Siraphob d1852aca3c pkgs/tools, pkgs/applications: [sS]tdenv.*lib -> lib 2021-01-17 20:59:15 +07:00
Sandro 17830a521a
Merge pull request #109593 from Wulfsta/psw
psw: 0.1.2 -> 0.2.0
2021-01-17 14:13:49 +01:00
github-actions[bot] 3de5f8be30
Merge staging-next into staging 2021-01-17 12:38:53 +00:00
Ben Siraphob 76f93cc731 pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
Jan Tojnar 643a72b4f1
Merge branch 'staging-next' into staging 2021-01-17 05:52:43 +01:00
Mario Rodas 9483d11a4c mcfly: 0.5.2 -> 0.5.3 2021-01-17 04:20:00 +00:00
Mario Rodas bdbbd013bd psw: enable on darwin 2021-01-17 04:20:00 +00:00
Wulfsta 727cb67dfb psw: 0.1.2 -> 0.2.0 2021-01-16 19:54:36 -05:00
Mario Rodas b30f0e0ad4
Merge pull request #109524 from dotlambda/routino-3.3.3
routino: 3.3.2 -> 3.3.3
2021-01-16 14:16:38 -05:00
Sandro Jäckel ea6ae87eed pythonPackages.swaglyrics: Fix dependencies 2021-01-16 10:56:42 -08:00
github-actions[bot] ac253c6eed
Merge staging-next into staging 2021-01-16 18:51:11 +00:00
Robert Schütz bb971b16de routino: 3.3.2 -> 3.3.3 2021-01-16 13:54:00 +01:00
Ben Siraphob badf51221d treewide: stdenv.lib -> lib 2021-01-16 17:58:11 +07:00
github-actions[bot] 72a465f835
Merge staging-next into staging 2021-01-16 06:41:38 +00:00
zowoq 11434e2040 youtube-dl: 2021.01.08 -> 2021.01.16
https://github.com/ytdl-org/youtube-dl/releases/tag/2021.01.16
2021-01-16 12:56:23 +10:00
Jan Tojnar e03806bc45
Merge branch 'staging-next' into staging 2021-01-15 17:47:43 +01:00
Ben Siraphob 8c5d37129f pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
github-actions[bot] 3773920be6
Merge staging-next into staging 2021-01-15 01:16:38 +00:00
Alyssa Ross 3893d6c6d7 gitAndTools: move everything to the top level
The comment at the top of git-and-tools/default.nix said:

    /* All git-relates tools live here, in a separate attribute set so that users
     * can get a fast overview over what's available.

but unfortunately that hasn't actually held up in practice.

Git-related packages have continued to be added to the top level, or
into gitAndTools, or sometimes both, basically at random, so having
gitAndTools is just confusing.  In fact, until I looked as part of
working on getting rid of gitAndTools, one program (ydiff) was
packaged twice independently, once in gitAndTools and once at the top
level (I fixed this in 98c3490196).

So I think it's for the best if we move away from gitAndTools, and
just put all the packages it previously contained at the top level.
I've implemented this here by just making gitAndTools an alias for the
top level -- this saves having loads of lines in aliases.nix.  This
means that people can keep referring to gitAndTools in their
configuration, but it won't be allowed to be used within Nixpkgs, and
it won't be presented to new users by e.g. nix search.

The only other change here that I'm aware of is that
appendToName "minimal" is not longer called on the default git
package, because doing that would have necessitated having a private
gitBase variable like before.  I think it makes more sense not to do
that anyway, and reserve the "minimal" suffix only for gitMinimal.
2021-01-14 21:27:48 +00:00
Sandro 1fa1ae39f5
Merge pull request #108563 from mkuettel/plantuml-1.2020.26
plantuml: 1.2020.19 -> 1.2020.26
2021-01-14 20:58:38 +01:00
github-actions[bot] fb6ed8abd1
Merge staging-next into staging 2021-01-14 18:54:08 +00:00
github-actions[bot] 44f5b1d3bd
Merge staging-next into staging 2021-01-14 12:42:23 +00:00
Emery Hemingway f385802067 gnuvd: remove
The backend service for this dictionary has been discontinued or is
incompatible.
2021-01-14 13:36:21 +01:00
Zhaofeng Li 091a4ef01e coreutils: Apply sys_getdents patch unconditionally
Also breaks build for riscv64.
2021-01-13 20:13:59 -08:00
llathasa-veleth 92803d781b disfetch: 1.12 -> 1.13 2021-01-13 22:33:51 +03:00
Mogria 2025ca9528 plantuml: 1.2020.22 -> 1.2020.26
PlantUML complains that it's too old when a diagram is generated to PNG an
error occurs.
2021-01-13 16:31:10 +01:00
Sandro 9c043cf029
Merge pull request #109084 from r-ryantm/auto-update/tmuxp
tmuxp: 1.6.3 -> 1.7.0
2021-01-12 23:00:17 +01:00
adisbladis 7412b9f065
trillian: init at 1.3.11 2021-01-12 13:18:33 +01:00
R. RyanTM b3daf3ebc5 tmuxp: 1.6.3 -> 1.7.0 2021-01-12 05:52:09 +00:00
Sandro 1760d488e4
Merge pull request #99565 from fishi0x01/fishi0x01/vsh
vsh: init at 0.7.2
2021-01-12 01:51:03 +01:00
Sandro Jäckel 0e780ce872
nagstamon: Mark as broken 2021-01-11 12:08:18 +01:00
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
github-actions[bot] db7b9735f9
Merge master into staging-next 2021-01-11 06:33:30 +00:00
Wulfsta 5ca3562611 psw: init at 0.1.2 2021-01-10 22:22:28 -08:00
Sandro 0e99531c54
Merge pull request #108953 from fgaz/urn/init
urn-timer: init at unstable-2017-08-20
2021-01-11 02:19:40 +01:00
Jan Tojnar dd72357155
Merge branch 'master' into staging-next 2021-01-10 23:24:33 +01:00
Francesco Gazzetta 5dc817a54c urn-timer: init at unstable-2017-08-20 2021-01-10 22:29:48 +01:00
Anderson Torres 1373f75002
Merge pull request #108801 from AndersonTorres/update-argtable
argtable: 3.0.1 -> 3.1.5 
libmicrohttpd: init at 0.9.72
libjson-rpc-cpp: 0.7.0 -> 1.3.0
2021-01-10 16:59:03 -03:00
AndersonTorres db27acb1c8 argtable: 3.0.1 -> 3.1.5 2021-01-10 12:43:48 -03:00
github-actions[bot] add2d89082
Merge master into staging-next 2021-01-10 06:32:12 +00:00
zowoq 2032339e5b mmv-go: 0.1.2 -> 0.1.3
https://github.com/itchyny/mmv/releases/tag/v0.1.3
2021-01-10 11:54:57 +10:00
github-actions[bot] ecebf82121
Merge master into staging-next 2021-01-08 12:29:36 +00:00
Pavol Rusnak 922b041809
Merge pull request #108009 from nima2007/mcrypt1
mcrypt: patch to include stdlib.h instead of malloc.h to build on darwin
2021-01-08 13:19:29 +01:00
zowoq 752fce151b youtube-dl: 2021.01.03 -> 2021.01.08
https://github.com/ytdl-org/youtube-dl/releases/tag/2021.01.08
2021-01-08 16:34:54 +10:00
github-actions[bot] 67bbf2c845
Merge master into staging-next 2021-01-08 06:28:59 +00:00
Joachim Breitner a00f391174 coreutils: Do not autoreconfHook on Musl
as suggested by @tobim, fixes #108661
2021-01-08 05:43:28 +00:00
Mario Rodas ba410c2647
Merge pull request #108533 from purcell/hdf4-darwin-libtirpc
[hdf4] Fix build on Darwin, which blocked gdal, postgis and more
2021-01-07 22:35:06 -05:00
Jan Tojnar e6c0c98940
Merge branch 'master' into staging-next
zynaddsubfx conflict has been updated to 3.0.1, which conflicted with rewrite after 3.0.5 update on a different branch.
2021-01-08 02:07:34 +01:00
Sandro 610ec6fe8f
Merge pull request #108704 from acowley/aux2bib
bibtex2html: add perl dependency
2021-01-08 00:30:04 +01:00
Sandro 7a2a45cfc0
Merge pull request #108622 from bbigras/tab-rs
tab-rs: init at 0.5.5
2021-01-07 22:56:40 +01:00
Anthony Cowley d620de4a69 bibtex2html: add perl dependency
The `aux2bib` tool that is part of the bibtex2html package requires
perl. Without this dependency, the `aux2bib` script is installed with
a shebang pointing to `/usr/bin/perl`.
2021-01-07 12:51:16 -05:00
Jan Tojnar f19eb635b4
Merge branch 'master' into staging-next
b04fc593e7 seems to have accidentally changed mkDerivation function for dfilemanager and solarus-quest-editor so I have reverted that here.
2021-01-07 13:04:31 +01:00
Sandro 5796227734
Merge pull request #108633 from tckmn/add-foma 2021-01-07 12:20:28 +01:00
Bruno Bigras 4d76eb1621 tab-rs: init at 0.5.5
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-07 05:43:09 -05:00
Andy Tockman 926854440f foma: init at 0.9.18alpha 2021-01-06 21:13:20 -06:00
Sandro de2c770f3e
Merge pull request #108510 from zowoq/fzf
fzf: 0.24.4 -> 0.25.0
2021-01-07 00:14:22 +01:00
Steve Purcell 0f4be28af5 hdf4: fix build on darwin
The fix here is to not include libtirc on Darwin, on which platform
the library is unavailable.
2021-01-07 11:51:22 +13:00
Sandro fd0c2add78
Merge pull request #108555 from Enzime/remove/maintainer-status
treewide: stop maintaining most packages
2021-01-06 11:42:54 +01:00
Michael Hoang 31f9051cf6 treewide: stop maintaining most packages 2021-01-06 17:06:03 +11:00
Mario Rodas 5ca9b52719 vorbisgain: enable on darwin 2021-01-06 04:20:00 +00:00
zowoq 8710256ef4 fzf: 0.24.4 -> 0.25.0
https://github.com/junegunn/fzf/releases/tag/0.25.0
2021-01-06 06:11:26 +10:00
Anderson Torres 0972bbc12d
Merge pull request #108445 from AndersonTorres/updates
Misc updates
2021-01-05 11:54:15 -03:00
zowoq ef5cb37c30 miniserve: 0.10.3 -> 0.10.4
https://github.com/svenstaro/miniserve/releases/tag/v0.10.4
2021-01-05 17:46:36 +10:00
AndersonTorres c1cb63e2ec ytree: 2.02 -> 2.03 2021-01-04 20:32:02 -03:00
github-actions[bot] f0187a2cf3
Merge staging-next into staging 2021-01-04 12:26:43 +00:00
Emery Hemingway c9839d6129 ipxe: 1.20.1 -> 1.21.1 2021-01-04 12:28:03 +01:00
Josef Kemetmüller 311addecb8 hdf4: Fix aarch64 build
The last glibc bump did break the aarch64 build of hdf4. We fix it by
adding the libtirpc dependency, which was previously part of glibc.

Fixes: #108340
2021-01-04 09:32:50 +01:00
github-actions[bot] 92f5b04596
Merge staging-next into staging 2021-01-04 06:25:40 +00:00
Sandro 00dc9ff545
Merge pull request #108260 from charles-dyfis-net/ttygif-missing-deps
ttygif: add missing dependencies on xwd, imagemagick
2021-01-04 04:43:49 +01:00
github-actions[bot] 581059aed4
Merge staging-next into staging 2021-01-04 00:57:38 +00:00
John Ericson b3f29f3817
Merge pull request #107238 from Ericson2314/no-static-overlay
treewide: Start to break up static overlay
2021-01-03 15:15:49 -05:00
John Ericson f52263ced0 treewide: Start to break up static overlay
We can use use `stdenv.hostPlatform.isStatic` instead, and move the
logic per package. The least opionated benefit of this is that it makes
it much easier to replace packages with modified ones, as there is no
longer any issue of overlay order.

CC @FRidh @matthewbauer
2021-01-03 19:18:16 +00:00
github-actions[bot] 07165c7226
Merge staging-next into staging 2021-01-03 18:38:32 +00:00
John Ericson b03fdcc7f9
Merge pull request #108300 from siraben/parallel-cmake
treewide: remove enableParallelBuilding = true if using cmake
2021-01-03 13:22:09 -05:00
Michael Weiss 16b53ed1e2
html-proofer: 3.18.3 -> 3.18.5 2021-01-03 19:00:26 +01:00
Charles Duffy 0d758e68a2
ttygif: add missing dependencies on xwd, imagemagick 2021-01-03 10:26:30 -06:00
rnhmjoj 3488d7ba1f
bdf2psf: 1.999 -> 1.200 2021-01-03 14:35:44 +01:00
zowoq 907e95015c youtube-dl: 2020.12.31 -> 2021.01.03
https://github.com/ytdl-org/youtube-dl/releases/tag/2021.01.03
2021-01-03 22:41:47 +10:00
github-actions[bot] 0649757570
Merge staging-next into staging 2021-01-03 12:24:59 +00:00
Ben Siraphob 3ae5e6ce03 treewide: remove enableParallelBuilding = true if using cmake 2021-01-03 18:37:40 +07:00
Bernardo Meurer 52a4a170b9
Merge pull request #108263 from bbigras/starship
starship: 0.47.0 -> 0.48.0
2021-01-03 06:48:14 +00:00
zowoq fb2311d430 Merge staging-next into staging 2021-01-03 16:33:28 +10:00
Milan 3b7d783cb0
coreboot-utils: 4.12 -> 4.13 (#108254) 2021-01-03 00:27:49 +01:00
Robert Helgesson 17136f61d5
trash-cli: 0.20.11.23 -> 0.20.12.26 2021-01-02 23:07:56 +01:00
Bruno Bigras 2f080eaf41 starship: 0.47.0 -> 0.48.0 2021-01-02 16:15:13 -05:00
Charles Duffy 854096fa4f
ttyrec: 1.0.8 -> ovh-ttyrec 1.1.6.6 (#108182)
Replace unmaintained/broken upstream ttyrec with a maintained, compatible fork
2021-01-02 19:20:31 +00:00
github-actions[bot] 0eb369d907
Merge staging-next into staging 2021-01-01 18:39:12 +00:00
Jonas Chevalier 1996ff7d42
direnv: 2.25.1 -> 2.27.0 (#108125) 2021-01-01 08:39:41 -08:00
Frederik Rietdijk 3f08495212
Merge pull request #108022 from siraben/cmake-native-build-inputs
[staging] treewide: cmake buildInputs to nativeBuildInputs, minor cleanups
2021-01-01 10:54:25 +01:00
Ben Siraphob b04fc593e7 treewide: cmake buildInputs to nativeBuildInputs, minor cleanups 2021-01-01 11:52:33 +07:00
Sandro 027b3b478e
Merge pull request #107811 from llathasa-veleth/master 2021-01-01 02:27:26 +01:00
Sandro 0acc36357a
Merge pull request #86943 from IvarWithoutBones/betterdiscord
betterdiscordctl: init at 1.7.0
2021-01-01 02:05:01 +01:00
Sandro 819694aced
Merge pull request #107861 from dbirks/add-microplane
microplane: init at 0.0.25
2020-12-31 23:45:29 +01:00
David Birks bd287c9d88
microplane: init at 0.0.25 2020-12-31 14:34:59 -05:00
Markus Kowalewski 6fb9dd842c
snapper: 0.8.14 -> 0.8.15 2020-12-31 12:33:30 +01:00
Daniël de Kok 67a10c88bb buildRustPackage: add cargoHash for SRI hashes of vendored deps
`buildRustPackage` currently accepts `cargoSha256` as a hash for
vendored dependencies. This change adds `cargoHash` which accepts SRI
hashes, setting `outputHashAlgo` to `null`.

The hash mismatch message still uses `cargoSha256` as an example,
which it probably should until we completely switch to SRI hashes.
2020-12-31 11:18:11 +01:00
Nima dcc390fb10 mcrypt: update license to GPL 3
This release 2.6.8 is using GNU GPL V3, not V2
2020-12-30 18:42:41 -08:00
Nima 3bf056aad3 mcrypt: patch to include stdlib.h instead of malloc.h to build on darwin
malloc.h is deprecated and the package does not compile on macOS due to this.
2020-12-30 16:20:12 -08:00
zowoq eee6f0a363 youtube-dl: 2020.12.29 -> 2020.12.31
https://github.com/ytdl-org/youtube-dl/releases/tag/2020.12.31
2020-12-31 08:43:30 +10:00
Michael Weiss bea44d5ebe
html-proofer: 3.18.2 -> 3.18.3 2020-12-30 18:23:43 +01:00
Doron Behar ab6c5e5db9
Merge pull request #93118 from symphorien/kcollectd
kcollectd: init at 0.11.99.0
2020-12-30 08:40:29 +02:00
Sandro 5dbf5f90d9
Merge pull request #107931 from marsam/update-broot
broot: 1.0.8 -> 1.1.10
2020-12-30 05:34:03 +01:00
Anderson Torres b09455cdf1
Merge pull request #107111 from matthiasbeyer/update-woof
woof: 2012-05-31 -> 2020-12-17
2020-12-30 01:10:50 -03:00
Symphorien Gibol 7e90346e16 kcollectd: init at 0.11.99.0
Co-authored-by: davidak <davidak@users.noreply.github.com>
2020-12-29 14:37:15 +01:00
freezeboy 84726119ef agedu: 20200206 -> 20200705 2020-12-29 14:01:30 +01:00
Karl Fischer f37c654c8f
vsh: init at 0.7.2 2020-12-29 09:26:12 +01:00
Mario Rodas cd702fef88 broot: 1.0.8 -> 1.1.10 2020-12-29 04:20:00 +00:00
Pavol Rusnak eb17c2fe9b
Merge pull request #107851 from rtburns-jpl/hdf4
hdf4: fix invalid rpath on darwin
2020-12-29 00:55:31 +01:00
Pavol Rusnak e9e533f03f
Merge pull request #107852 from zowoq/ytdl
youtube-dl: 2020.12.26 -> 2020.12.29
2020-12-29 00:52:53 +01:00
zowoq 3a875fa58a youtube-dl: 2020.12.26 -> 2020.12.29
https://github.com/ytdl-org/youtube-dl/releases/tag/2020.12.29
2020-12-29 08:38:44 +10:00
Ryan Burns 81f07a6162 hdf4: fix invalid rpath on darwin
CMake changes in hdf4 v4.15.2 broke the library path on macOS,
linking using an invalid rpath rather than an absolute path.

Before this commit:
```
otool -L result/lib/libhdf.dylib
result/lib/libhdf.dylib:
	@rpath/libhdf.4.dylib (compatibility version 4.0.0, current version 4.15.2)
```

After:
```
otool -L result/lib/libhdf.dylib
result/lib/libhdf.dylib:
	/nix/store/bz52b2gwci0k8rwd0llsi555s1hx166j-hdf-4.2.15/lib/libhdf.4.15.2.dylib (compatibility version 4.0.0, current version 4.15.2)
```
2020-12-28 14:16:14 -08:00
Llathasa Veleth 969356d3ae disfetch: init at 1.12 2020-12-28 22:31:16 +03:00
freezeboy 917ec074ba calamares: 3.2.17.1 -> 3.2.35.1 2020-12-28 17:07:10 +01:00
Sandro 6c1c442040
Merge pull request #101428 from djanatyn/pkg/zalgo
zalgo: init at 6aa1f66
2020-12-28 00:18:39 +01:00
Pavol Rusnak 4f716a4f3a
Merge pull request #107739 from freezeboy/update-clac
clac: 0.0.0.20170503 -> 0.3.3
2020-12-27 18:52:40 +01:00
freezeboy e33b84db0c clac: 0.0.0.20170503 -> 0.3.3 2020-12-27 18:40:08 +01:00
freezeboy 067ce14cd4 barman: 2.11 -> 2.12 2020-12-27 14:42:42 +01:00
Bernardo Meurer 80935d6fed
Merge pull request #107694 from r-ryantm/auto-update/you-get
you-get: 0.4.1488 -> 0.4.1500
2020-12-27 04:20:26 +00:00
R. RyanTM 0e0b9c7af5 you-get: 0.4.1488 -> 0.4.1500 2020-12-27 03:35:40 +00:00
zowoq 70bed1a7fd youtube-dl: 2020.12.22 -> 2020.12.26
https://github.com/ytdl-org/youtube-dl/releases/tag/2020.12.26
2020-12-27 08:27:01 +10:00
Julian Stecklina 7bd7b5bea9 kermit: fix build
... by explicitly selecting the Linux code paths in the source.
2020-12-26 20:37:04 +01:00
Mario Rodas b648b43b10 z-lua: 1.8.7 -> 1.8.10 2020-12-26 04:20:00 +00:00
Julian Stecklina a48184dccc kermit: use postPatch instead of patchPhase
This is necessary to regain the ability to add patches via overrides.
2020-12-27 01:34:35 +01:00
Sandro 28d40fe651
Merge pull request #107589 from Mic92/nix-direnv
nix-direnv: 1.1 -> 1.2
2020-12-25 21:22:04 +01:00
Jörg Thalheim 3fecd395a3
nix-direnv: 1.1 -> 1.2 2020-12-25 20:29:03 +01:00
Ben Sima 3fb1e542e7 code-minimap: init at 0.4.3
Message-Id: <20201225052234.17216-1-ben@bsima.me>
2020-12-25 16:47:26 +01:00
markuskowa e883b0cef6
Merge pull request #107172 from matthiasbeyer/init-fbcat
fbcat: init at 0.5.1
2020-12-25 12:30:37 +01:00
Ryan Burns 2cab4879c1 toybox: fix cross-compilation
Toybox expects a native `cc` for producing
build-time executables, such as kconfig/conf.
2020-12-25 12:28:55 +01:00
Matthias Beyer bdedc49ba9 fbcat: init at 0.5.1
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-12-25 11:09:26 +01:00
Peter Hoeg cb66517866
picocom: 3.1 -> 3.2a (#107379)
* picocom: 3.1 -> 3.2a

Also:
- drop wrapper and patch in location of binaries
- add bash completion support
- start using shell helpers instead of manually copying in man page

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2020-12-24 07:22:20 +08:00
Lucas Hoffmann 4d0c6c645c
nvimpager: init at 0.9 (#107057)
* nvimpager: init at 0.9

* nvimpager: fixup: doCheck can be overriden with `overrideAttrs`

* nvimpager: fixup: use patchShebangs instead of substituteInPlace

* nvimpager: fixup: move pandoc to nativeBuildInputs

* Fix typo

* nvimpager: fixup: run the tests in a pseudo tty

* nvimpager: fixup: make all dependencies overridable
2020-12-22 10:11:02 +01:00
zowoq 1ebf7ecb91 youtube-dl: 2020.12.14 -> 2020.12.22
https://github.com/ytdl-org/youtube-dl/releases/tag/2020.12.22
2020-12-22 13:22:37 +10:00
Orivej Desh da247171b1
mutagen: install agents bundle (#107297)
Fixes #81219
2020-12-22 02:46:52 +00:00
Break Yang 0446b8af52 ethminer: fix broken package by switching to clang 2020-12-20 19:56:35 -08:00
Tim Kleinschmidt b1499452b8 duf: Add darwin supoort 2020-12-20 19:34:00 +01:00
Michael Weiss b5a1da1665
lf: 17 -> 18 2020-12-19 20:59:16 +01:00
Vincent Laporte b6f7f1f673 ocamlPackages.janeStreet: 0.13 → 0.14
ocamlPackages.biocaml: 0.10.1 → 0.11.1

ocamlPackages.bistro: fix for Core 0.14

ocamlPackages.js_of_ocaml: 3.7.0 → 3.7.1

ocamlPackages.ocaml-r: 0.2.0 → 0.4.0

ocamlPackages.phylogenetics: 2020-01-25 → 2020-11-23

Co-authored-by: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>
2020-12-18 21:03:56 +01:00
Doron Behar c0ceba135f
Merge pull request #98912 from r-ryantm/auto-update/yad
yad: 6.0 -> 7.2
2020-12-18 12:01:18 +02:00
Maximilian Bosch 821ed09f38
Merge pull request #107085 from zowoq/go-mod-packagepath
buildGoModule: disallow goPackagePath
2020-12-17 22:44:00 +01:00
Michael Weiss 653a1edb42
html-proofer: 3.18.1 -> 3.18.2 2020-12-17 20:56:54 +01:00
Matthias Beyer 0a4723718c woof: 2012-05-31 -> 2020-12-17
Also, fetch from github and bring python3 into scope with it.

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-12-17 18:52:56 +01:00
Michael Weiss 0761aabdae
html-proofer: 3.18.0 -> 3.18.1 2020-12-17 11:45:31 +01:00
zowoq 9209f09129 cod: remove goPackagePath 2020-12-17 16:38:13 +10:00
Doron Behar 749c9f1f19
Merge pull request #92582 from truh/plantuml-server-squash 2020-12-16 22:02:57 +02:00
Mario Rodas edf4a05082
Merge pull request #106850 from zowoq/lsd
lsd: 0.18.0 -> 0.19.0
2020-12-14 07:47:04 -05:00
Maximilian Bosch cd8fac0c29
docker-ls: 0.3.2 -> 0.5.0
https://github.com/mayflower/docker-ls/releases/tag/v0.5.0
https://github.com/mayflower/docker-ls/releases/tag/v0.4.1
https://github.com/mayflower/docker-ls/releases/tag/v0.4.0
2020-12-14 12:06:11 +01:00
zowoq 665fa6c53a lsd: 0.18.0 -> 0.19.0
https://github.com/Peltoche/lsd/releases/tag/0.19.0
2020-12-14 06:20:13 +10:00
zowoq d444a5ff39 youtube-dl: 2020.12.12 -> 2020.12.14
https://github.com/ytdl-org/youtube-dl/releases/tag/2020.12.14
2020-12-14 06:05:51 +10:00
zowoq f37a1749c3 youtube-dl: add maintainer 2020-12-14 06:02:47 +10:00
freezeboy b25ba4a632 archi: unbreak build
Additionally make a wrapper to put the jdk in the PATH to avoid
needed a global JDK
2020-12-13 11:42:42 +01:00
zowoq 85a3c839df youtube-dl: 2020.12.09 -> 2020.12.12
https://github.com/ytdl-org/youtube-dl/releases/tag/2020.12.12
2020-12-13 07:20:03 +10:00
Michael Weiss 540ada8419
html-proofer: 3.17.4 -> 3.18.0 2020-12-12 16:54:50 +01:00
Maximilian Bosch d9d3c45064
Merge pull request #106666 from r-ryantm/auto-update/direnv
direnv: 2.25.0 -> 2.25.1
2020-12-11 23:33:11 +01:00
Maximilian Bosch 4f4b832986
diffoscope: 161 -> 163
https://diffoscope.org/news/diffoscope-162-released/
https://diffoscope.org/news/diffoscope-163-released/
2020-12-11 19:57:57 +01:00
R. RyanTM 17eeea5f0d direnv: 2.25.0 -> 2.25.1 2020-12-11 15:19:04 +00:00
Ryan Mulligan b2cc31fa2f
Merge pull request #106624 from r-ryantm/auto-update/tagref
tagref: 1.3.3 -> 1.4.1
2020-12-11 06:28:54 -08:00
Mario Rodas e019ae8cc6
Merge pull request #106629 from marsam/update-mcfly
mcfly: 0.5.1 -> 0.5.2
2020-12-11 07:36:33 -05:00
Sandro f01161226a
Merge pull request #105681 from avdv/q-text-as-data-2.0.19
q-text-as-data: 1.7.4 -> 2.0.19
2020-12-11 06:45:31 +01:00
Mario Rodas d9314167ba mcfly: 0.5.1 -> 0.5.2 2020-12-10 22:18:00 -05:00
R. RyanTM 6f4ad1cf73 tagref: 1.3.3 -> 1.4.1 2020-12-11 03:07:20 +00:00
Maximilian Bosch f23f63a7b8
Merge pull request #106488 from Luflosi/update/youtube-dl
youtube-dl: 2020.12.07 -> 2020.12.09
2020-12-10 17:57:22 +01:00
Mario Rodas 2d8916b37b
Merge pull request #106496 from r-ryantm/auto-update/plantuml
plantuml: 1.2020.21 -> 1.2020.22
2020-12-10 05:55:53 -05:00
R. RyanTM 0694bb9421 plantuml: 1.2020.21 -> 1.2020.22 2020-12-09 21:35:09 +00:00
Luflosi 91c700594b
youtube-dl: 2020.12.07 -> 2020.12.09
https://github.com/ytdl-org/youtube-dl/releases/tag/2020.12.09
2020-12-09 22:19:48 +01:00