Commit Graph

2324 Commits

Author SHA1 Message Date
Fabian Affolter
c4081a163c go-audit: init at 1.0.0 2021-01-24 22:07:38 +01:00
Mario Rodas
d301f4d33d
Merge pull request #110481 from r-ryantm/auto-update/jump
jump: 0.30.1 -> 0.40.0
2021-01-24 11:01:03 -05:00
Aamaruvi Yogamani
32fa8449ef
auto-cpufreq: 1.5.1 -> 1.5.3
The attribute is also changed from autocpu-freq to autocpu-freq
2021-01-24 08:58:08 -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
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
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
R. RyanTM
74aa06982e jump: 0.30.1 -> 0.40.0 2021-01-22 13:38:36 +00:00
zowoq
59b83c43e0 treewide: add final newline 2021-01-22 07:18:04 +10:00
Ryan Mulligan
215d637b86
Merge pull request #109867 from r-ryantm/auto-update/ior
ior: 3.2.1 -> 3.3.0
2021-01-21 06:55:34 -08:00
Sandro
ad7347cfd4
Merge pull request #110227 from zowoq/gdu
gdu: 3.0.0 -> 4.2.0
2021-01-21 09:23:07 +01:00
zowoq
932941b79c treewide: editorconfig fixes
- remove trailing whitespace
- use spaces for indentation
2021-01-21 13:29:54 +10:00
Sandro
eebdf2427a
Merge pull request #110089 from r-ryantm/auto-update/monit
monit: 5.27.1 -> 5.27.2
2021-01-20 23:34:11 +01:00
zowoq
620868fbdb gdu: 3.0.0 -> 4.2.0
https://github.com/dundee/gdu/releases/tag/v4.0.0
https://github.com/dundee/gdu/releases/tag/v4.1.0
https://github.com/dundee/gdu/releases/tag/v4.2.0
2021-01-21 07:59:00 +10:00
Ryan Mulligan
d55068d9e7
Merge pull request #110026 from r-ryantm/auto-update/kmon
kmon: 1.5.1 -> 1.5.3
2021-01-20 07:10:51 -08:00
R. RyanTM
e4bbdba929 monit: 5.27.1 -> 5.27.2 2021-01-20 05:52:16 +00:00
zowoq
31f5dd3f36 treewide: editorconfig fixes
- remove trailing whitespace
- use spaces for indentation
2021-01-20 09:11:11 +10:00
R. RyanTM
f1baf7323a kmon: 1.5.1 -> 1.5.3 2021-01-19 22:06:02 +00:00
Ryan Mulligan
f1d169fe60
Merge pull request #109982 from r-ryantm/auto-update/java-service-wrapper
java-service-wrapper: 3.5.43 -> 3.5.45
2021-01-19 08:46:19 -08:00
R. RyanTM
4c2363851f java-service-wrapper: 3.5.43 -> 3.5.45 2021-01-19 16:21:09 +00:00
Zak B. Elep
cbff1ad157 bpytop: 1.0.50 -> 1.0.59 2021-01-19 11:18:23 +08:00
R. RyanTM
a404cf946e ior: 3.2.1 -> 3.3.0 2021-01-19 00:57:49 +00:00
R. RyanTM
69a7b210b0 htop: 3.0.4 -> 3.0.5 2021-01-19 00:16:59 +00:00
github-actions[bot]
ef2abc20bc
Merge master into staging-next 2021-01-18 06:42:35 +00:00
zowoq
cd9256a288 gdu: 2.3.0 -> 3.0.0
https://github.com/dundee/gdu/releases/tag/v3.0.0
2021-01-18 13:44:19 +10:00
github-actions[bot]
b7f20dcd02
Merge master into staging-next 2021-01-18 01:16:03 +00:00
eropleco
822e677f0a
smartmontools: 7.1 -> 7.2 and devicedb updated to latest (#109566)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-18 00:09:10 +01:00
Jörg Thalheim
1279bf812c
Merge remote-tracking branch 'upstream/master' into HEAD 2021-01-17 18:08:59 +01:00
Ben Siraphob
d6aeae8f90 pkgs/tools: pkgconfig -> pkg-config (2) 2021-01-17 23:27:27 +07:00
github-actions[bot]
f46cb85082
Merge master into staging-next 2021-01-16 18:51:05 +00:00
Ben Siraphob
badf51221d treewide: stdenv.lib -> lib 2021-01-16 17:58:11 +07:00
Jan Tojnar
c0d2951fa6
Merge branch 'master' into staging-next 2021-01-15 17:46:46 +01:00
Ben Siraphob
8c5d37129f pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
github-actions[bot]
9f69dadafd
Merge master into staging-next 2021-01-15 01:16:33 +00:00
zowoq
2299a66b88 gdu: 2.2.0 -> 2.3.0
https://github.com/dundee/gdu/releases/tag/v2.3.0
2021-01-15 05:36:04 +10:00
Michael Weiss
7fb79605a7
inxi: 3.2.02-1 -> 3.2.02-2 2021-01-14 20:32:59 +01:00
github-actions[bot]
183b673b64
Merge master into staging-next 2021-01-14 18:54:05 +00:00
Bruno Bigras
3e367bdcba zenith: 0.11.0 -> 0.12.0 2021-01-13 15:28:38 -05:00
github-actions[bot]
bfcc20a149
Merge master into staging-next 2021-01-12 06:34:30 +00:00
zowoq
bab15d6bcd gdu: 2.1.0 -> 2.2.0
https://github.com/dundee/gdu/releases/tag/v2.2.0
2021-01-12 16:13:13 +10:00
github-actions[bot]
32a46d68f3
Merge master into staging-next 2021-01-12 01:04:47 +00:00
Michael Weiss
87d2f1d2b0
inxi: 3.2.01-1 -> 3.2.02-1 2021-01-11 22:25:22 +01:00
Frederik Rietdijk
04dcf88df6 efivar: don't use lto at all
https://github.com/NixOS/nixpkgs/pull/109007#issuecomment-758150833
2021-01-11 19:51:10 +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]
fcbe48c797
Merge master into staging-next 2021-01-09 18:41:27 +00:00
Artturin
a91459c929
inxi: add pciutils (optional dependency) 2021-01-09 14:47:17 +01:00
github-actions[bot]
e251591528
Merge master into staging-next 2021-01-09 01:00:25 +00:00
Anderson Torres
69534f39a7
Merge pull request #106985 from Technical27/master
auto-cpufreq: init at 1.5.1
2021-01-08 16:16:45 -03: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
Peter Hoeg
8436064b26 clinfo: make it build again 2021-01-06 22:53:39 +08:00
Phillip Cloud
014007ff20 consul-template: 0.19.4 -> 0.25.1 2021-01-05 14:51:10 -08:00
zowoq
517241f354 gdu: 2.0.0 -> 2.1.0
https://github.com/dundee/gdu/releases/tag/v2.1.0
2021-01-05 18:44:43 +10:00
Sandro
51e2708f58
Merge pull request #108372 from fabaff/gdu
gdu: init at 2.0.0
2021-01-05 03:12:00 +01:00
Frederik Rietdijk
b20838eb4a Merge staging-next into staging 2021-01-04 20:51:32 +01:00
Vladimír Čunát
1a57d96edd
efivar: fixup build on i686-linux
Fixes #108375.  (I built the ISO locally)
I believe the report is a false positive.
2021-01-04 18:00:34 +01:00
Fabian Affolter
d5482c2ad2 gdu: init at 2.0.0 2021-01-04 08:51:06 +01:00
github-actions[bot]
581059aed4
Merge staging-next into staging 2021-01-04 00:57:38 +00: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
Ben Siraphob
3ae5e6ce03 treewide: remove enableParallelBuilding = true if using cmake 2021-01-03 18:37:40 +07:00
Lassulus
915ad2e9d8
Merge pull request #107306 from rissson/pkgs-netdata-1.28.0
netdata: 1.26.0 -> 1.28.0
2021-01-01 01:17:05 +01:00
Aamaruvi Yogamani
8f56e4f92d
autocpu-freq: init at 1.5.1 2020-12-30 08:48:55 -05:00
Maximilian Bosch
bcf86f58ea
Merge pull request #107138 from avdv/colorls-1.4.3
colorls: 1.4.2 -> 1.4.3
2020-12-23 21:22:47 +01:00
Fabian Affolter
b36e05ef2f htop: 3.0.3 -> 3.0.4 2020-12-22 13:01:33 +01:00
Daniël de Kok
86477dafbb
Merge pull request #107136 from danieldk/rocm-4.0.0
rocm: 3.10.0 -> 4.0.0
2020-12-21 22:05:10 +01:00
Marc 'risson' Schmitt
6e9d407ba9
netdata: 1.26.0 -> 1.28.0
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
2020-12-21 04:18:36 +01:00
Marc 'risson' Schmitt
def31099fe
netdata: go.d.plugin: 0.25.0 -> 0.26.2
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
2020-12-21 04:18:19 +01:00
Sandro
0e811b6742
daemon: Fix compilation on darwin (#105640)
Co-authored-by: Matthew Bauer <mjbauer95@gmail.com>
2020-12-20 17:49:21 +01:00
Milan Pässler
37a9fb0a4a bottom: fix build on aarch64 2020-12-20 13:03:18 +01:00
Nicolas Berbiche
71ca741ab2 bottom: 0.5.4 -> 0.5.6 2020-12-20 02:53:35 +01:00
Daniël de Kok
3cdb918f62 rocm-smi: 3.10.0 -> 4.0.0
No changes compared to the previous release.
2020-12-19 07:59:29 +01:00
Michael Weiss
7ad0bc5bd6
inxi: 3.2.00-1 -> 3.2.01-1 2020-12-18 13:04:33 +01:00
Claudio Bley
c48493ffa1 colorls: 1.4.2 -> 1.4.3 2020-12-18 08:47:12 +01:00
Michael Weiss
bb78df4b27
inxi: 3.1.09-1 -> 3.2.00-1 2020-12-16 12:27:58 +01:00
R. RyanTM
04de674c5e bottom: 0.5.3 -> 0.5.4 2020-12-11 10:39:54 +00:00
Ryan Mulligan
f0c414d510
Merge pull request #106278 from r-ryantm/auto-update/htop
htop: 3.0.2 -> 3.0.3
2020-12-07 14:33:39 -08:00
R. RyanTM
2313a2908e htop: 3.0.2 -> 3.0.3 2020-12-07 20:04:18 +00:00
Bart Brouns
fa500db28e
thinkfan: 1.1 -> 1.2.1 (#104325) 2020-12-07 14:38:22 +00:00
R. RyanTM
176cfbf1d1 fio: 3.24 -> 3.25 2020-12-05 13:49:46 +00:00
R. RyanTM
e505956b94 nvtop: 1.0.0 -> 1.1.0 2020-12-04 18:19:54 +00:00
Ivan Malison
1d9e29e40d
rofi-systemd: 0.1.0 -> 0.1.1 2020-12-03 18:25:23 -08:00
Blaž Hrastnik
f0e25ca158 thermald: 2.3 -> 2.4.1 2020-12-03 12:45:58 +09:00
Daniël de Kok
ebf687af35
Merge pull request #105474 from danieldk/rocm-3.10.0
rocm: update to 3.10.0
2020-12-02 06:53:18 +01:00
Sandro Jäckel
9752b47524
daemon: switch to pname, version; cleanups 2020-12-02 02:13:21 +01:00
R. RyanTM
a992accb31 daemon: 0.6.4 -> 0.7 2020-12-01 22:49:42 +00:00
Daniël de Kok
5acfa2f9c8 rocm-smi: 3.9.0 -> 3.10.0 2020-12-01 07:43:31 +01:00
Mario Rodas
ce0567ea0f
Merge pull request #105208 from marsam/bottom-install-completions
bottom: install completions
2020-11-28 14:32:17 -05:00
Martin Weinelt
950bb14520
Merge pull request #105185 from r-ryantm/auto-update/hwinfo
hwinfo: 21.70 -> 21.71
2020-11-28 18:32:09 +01:00
Mario Rodas
ca088588a0
Merge pull request #105081 from berbiche/bottom-0.5.2
bottom: 0.5.1 -> 0.5.3
2020-11-27 23:21:10 -05:00
R. RyanTM
2597669430 hwinfo: 21.70 -> 21.71 2020-11-27 23:35:27 +00:00
Mario Rodas
b07f6b1024 bottom: install completions 2020-11-27 04:20:00 +00:00
Francois Marier
686b2a2ac8
safe-rm: Update git repository
Gitorious is long gone and the upstream repository is now on Launchpad: https://code.launchpad.net/safe-rm
2020-11-27 03:02:10 +01:00
Nicolas Berbiche
f0dfa24190
bottom: 0.5.1 -> 0.5.3 2020-11-26 20:19:12 -05:00
Sandro
cb7b8bcd84
Merge pull request #102274 from evils/tuptime 2020-11-25 23:00:44 +01:00
Raghav Sood
f9d71bfbb0
Merge pull request #104444 from magnetophon/bottom
bottom: 0.4.7 -> 0.5.1
2020-11-25 04:40:13 +00:00
Sandro
b791b1cd59
Merge pull request #102832 from herrwiese/for-master/bpytop-1.0.50
bpytop: 1.0.47 -> 1.0.50
2020-11-24 21:43:04 +01:00
Graham Christensen
bc49a0815a
utillinux: rename to util-linux 2020-11-24 12:42:06 -05:00
Raghav Sood
bc51448c00
Merge pull request #104255 from rissson/netdata-go.d.plugin-0.25.0
netdata: go.d.plugin: 0.20.0 -> 0.25.0
2020-11-24 03:12:28 +00:00
Bart Brouns
b10d7f3bb3 bottom: 0.4.7 -> 0.5.1 2020-11-23 11:36:48 +01:00
R. RyanTM
60d2f1a232 clinfo: 2.2.18.04.06 -> 3.0.20.11.20 2020-11-22 22:43:37 +00:00
Christian Kampka
561832ef7b s6-rc: 0.5.1.2 -> 0.5.2.0 2020-11-20 18:15:17 +01:00
Christian Kampka
193fccc763 s6: 2.9.1.0 -> 2.9.2.0 2020-11-20 18:15:17 +01:00
R. RyanTM
57cce36d96 fio: 3.23 -> 3.24 2020-11-19 22:10:23 -08:00
Marc 'risson' Schmitt
3e35be8e94
netdata: go.d.plugin: 0.20.0 -> 0.25.0
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
2020-11-19 09:24:14 +01:00
ajs124
3c95611c2f uefitool.new-engine: A57 -> A58 2020-11-15 02:12:26 +01:00
Mario Rodas
a7b1d6b92f
Merge pull request #103571 from r-ryantm/auto-update/throttled
throttled: 0.7 -> 0.8
2020-11-12 20:43:34 -05:00
Mario Rodas
31fd319d1a
Merge pull request #103620 from r-ryantm/auto-update/bfs
bfs: 2.0 -> 2.1
2020-11-12 20:30:19 -05:00
R. RyanTM
65977c6a82 bfs: 2.0 -> 2.1 2020-11-12 16:28:00 +00:00
Michael Weiss
8d8c115dbb
inxi: 3.1.08-1 -> 3.1.09-1 2020-11-12 12:34:27 +01:00
R. RyanTM
5c08c8eb2a throttled: 0.7 -> 0.8 2020-11-12 08:03:21 +00:00
R. RyanTM
23c932f879 ctop: 0.7.4 -> 0.7.5 2020-11-11 01:33:19 +00:00
Andreas Wiese
e0f4e7e091 bpytop: 1.0.47 -> 1.0.50 2020-11-09 23:00:42 +01:00
Daniël de Kok
341aa3d3e0
Merge pull request #102602 from danieldk/rocm-3.9.0
Update ROCm to 3.9.0
2020-11-05 06:59:28 +01:00
Bas van Dijk
a93c3763c7
Merge pull request #102670 from basvandijk/mlc-3.9
mlc: init at 3.9
2020-11-05 00:39:02 +01:00
Bas van Dijk
f8e066b5ed mlc: refactoring 2020-11-04 09:24:38 +00:00
Frederik Rietdijk
9e6d7d3c74 Merge master into staging-next 2020-11-04 09:27:42 +01:00
Maximilian Bosch
d225f494c2
Merge pull request #102597 from r-ryantm/auto-update/memtester
memtester: 4.3.0 -> 4.5.0
2020-11-04 00:17:29 +01:00
Bas van Dijk
64cbf9f0de mlc: init at 3.9
https://software.intel.com/content/www/us/en/develop/articles/intelr-memory-latency-checker.html
2020-11-03 23:02:47 +01:00
Michael Raskin
610f92f210
Merge pull request #102616 from r-ryantm/auto-update/monit
monit: 5.27.0 -> 5.27.1
2020-11-03 15:02:28 +00:00
R. RyanTM
9035d97fd1 monit: 5.27.0 -> 5.27.1 2020-11-03 11:09:23 +00:00
Frederik Rietdijk
237966224d Merge master into staging-next 2020-11-03 12:06:06 +01:00
Daniël de Kok
92719cca78 rocm-smi: 3.8.0 -> 3.9.0 2020-11-03 09:15:34 +01:00
R. RyanTM
b79bfc3b36 memtester: 4.3.0 -> 4.5.0 2020-11-03 07:46:35 +00:00
Mario Rodas
2bc8c1af8a
Merge pull request #98838 from dduan/tre-0.3.3
tre-command: 0.3.2 -> 0.3.3
2020-11-01 13:44:09 -05:00
Mario Rodas
784404d4f1
Merge pull request #102291 from r-ryantm/auto-update/facter
facter: 3.14.13 -> 3.14.14
2020-11-01 07:14:39 -05:00
Sarah Brofeldt
334f98c013
Merge pull request #102259 from r-ryantm/auto-update/fio
fio: 3.22 -> 3.23
2020-11-01 12:16:48 +01:00
R. RyanTM
db986689ca facter: 3.14.13 -> 3.14.14 2020-10-31 23:36:02 +00:00
Evils
88ba207d53 tuptime: 5.0.0 -> 5.0.1 2020-10-31 21:33:25 +01:00
Evils
dd9240e6b0 tuptime: correct to meta.license = gpl2Plus 2020-10-31 21:33:24 +01:00
R. RyanTM
a7a7641e19 fio: 3.22 -> 3.23 2020-10-31 19:16:58 +00:00
Vladimír Čunát
dfd3ede68d
Merge branch 'master' into staging-next 2020-10-31 14:30:44 +01:00
Maximilian Bosch
358b3565d8
Merge pull request #102121 from r-ryantm/auto-update/bpytop
bpytop: 1.0.44 -> 1.0.47
2020-10-30 23:42:04 +01:00
Bruno Bigras
4506d174c6 zenith: 0.10.1 -> 0.11.0 2020-10-29 22:16:15 -04:00
R. RyanTM
69f235c3aa bpytop: 1.0.44 -> 1.0.47 2020-10-30 01:22:13 +00:00
R. RyanTM
8b1d379ee3 ctop: 0.7.3 -> 0.7.4 2020-10-29 12:41:41 +00:00
Mario Rodas
144ec0c514
Merge pull request #101706 from r-ryantm/auto-update/netdata
netdata: 1.25.0 -> 1.26.0
2020-10-27 19:56:15 -05:00
David Arnold
b016ae02e6
hostctl: init at 1.0.14 2020-10-27 11:17:55 -05:00
Ben Siraphob
db74029e3e treewide: remove package names from prefix of descriptions 2020-10-27 09:15:07 -07:00
R. RyanTM
2633358ec7 netdata: 1.25.0 -> 1.26.0 2020-10-25 23:03:46 +00:00
Ben Siraphob
c98962e1a3 treewide: remove periods from end of package descriptions 2020-10-25 20:13:18 +07:00
R. RyanTM
4f6bc704a6 bpytop: 1.0.42 -> 1.0.44 2020-10-22 12:41:54 +00:00
Ryan Mulligan
76f5ffdb70
Merge pull request #100855 from r-ryantm/auto-update/bfs
bfs: 1.7 -> 2.0
2020-10-19 15:50:00 -07:00
R. RyanTM
bedb1b1787 bfs: 1.7 -> 2.0 2020-10-17 18:04:19 +00:00
Michael Weiss
69bf6db33e
inxi: 3.1.07-1 -> 3.1.08-1 2020-10-17 19:08:36 +02:00
Ben Siraphob
683a87dbeb treewide: remove periods from end of package descriptions 2020-10-17 08:22:31 -07:00
Ryan Mulligan
c4679aac6f
Merge pull request #96698 from KAction/snooze
snooze: init at 0.4
2020-10-15 16:29:34 -07:00
Dmitry Bogatov
35943384ea snooze: init at 0.4 2020-10-15 00:00:00 -04:00
Mario Rodas
d497f8b360
Merge pull request #100453 from berbiche/deprecate-ytop-gotop
ytop: remove
2020-10-14 21:14:14 -05:00
Nicolas Berbiche
258ebb540e
ytop: remove
Upstream has archived the repository and recommends bottom
2020-10-14 12:10:30 -04:00
Andreas Wiese
861d9d7341 bpytop: 1.0.25 -> 1.0.42 2020-10-13 11:24:14 +02:00
Sandro Jäckel
24123898d2
kmon: 1.4.0 -> 1.5.1
Closes #99482
2020-10-11 01:46:21 +02:00
Daniel Duan
dc070dd78a tre-command: 0.3.2 -> 0.3.3 2020-09-26 02:20:14 -07:00
Ryan Burns
00bf15f23c pciutils: fix build on darwin
Add IOKit to macOS prereqs, and patch Makefile to use $CC
2020-09-24 02:09:20 -07:00
R. RyanTM
f5c2f51dae freeipmi: 1.6.5 -> 1.6.6 2020-09-23 21:00:43 -07:00
Daniël de Kok
66d0662548
Merge pull request #98230 from danieldk/rocm-3.8.0
Update to ROCm 3.8.0
2020-09-23 19:25:38 +02:00
R. RyanTM
d59e3bd554 facter: 3.14.12 -> 3.14.13 2020-09-23 03:17:14 +00:00
Josef Kemetmüller
0996ac6b0e nvtop: Make independent of Nvidia driver version
For packages relying on Nvidia drivers we don't want to hard-code the
location of a particular driver version in the RPATH. Otherwise the
software might fail with errors such as:

> Impossible to initialize nvidia nvml : Driver/library version mismatch

To fix this the usual pattern in nixpkgs is to add `/run/opengl-driver/lib`
to the RPATH of these binaries.
This is the global location where Nvidia libraries are available on
NixOS and so this makes sure that the nvtop binary can be run with all
versions of the driver.

At build time however these libraries are not available at that
particular location. For precisely this use case, Nvidia ships stub
versions of the driver libraries with the cudatoolkit. So we just need
to point CMake to that directory.

Fixes: #98328
2020-09-21 08:43:43 +02:00
Gabriel Ebner
0c550170d1
Merge pull request #97469 from Emantor/bump/thermald 2020-09-20 16:55:30 +02:00
Daniël de Kok
57bf6699c1 rocm-smi: 3.7.0 -> 3.8.0
The tag refers to the same commit as 3.7.0, so the hash did not
change.
2020-09-19 08:13:40 +02:00
Rouven Czerwinski
5cae66cb84 thermald: 2.2 -> 2.3
Also cleanup the derivation:
- remove unnecessary PKG_CONFIG_PATH export
- change gpl2 to gpl2Only
- add meta.changelog
- reformat inputs and sort alphabetically
last three suggested by @drewrisinger.
2020-09-16 18:27:16 +02:00
K900
a839779e0a netdata: 1.24.0 -> 1.25.0
Also update homepage URL to point to the new domain
2020-09-15 12:08:37 +03:00
Bruno Bigras
9b55d123bc zenith: 0.10.0 -> 0.10.1 2020-09-12 23:15:06 -04:00
Mario Rodas
f066de7e7e
Merge pull request #97342 from herrwiese/for-master/bpytop-update-v1.0.25
bpytop: 1.0.21 -> 1.0.25
2020-09-08 18:48:50 -05:00
R. RyanTM
85255c33f5 collectd: 5.11.0 -> 5.12.0 2020-09-07 16:12:19 +00:00
Andreas Wiese
5200ee8cc0 bpytop: 1.0.21 -> 1.0.25 2020-09-07 11:09:32 +02:00
Jörg Thalheim
3a6cea9ea6
Merge pull request #96523 from Izorkin/netdata 2020-09-03 20:55:49 +01:00
Izorkin
d1ffe81e13
htop: 3.0.0 -> 3.0.1 2020-09-03 19:59:38 +03:00
Timo Kaufmann
31772af506 ddrescueview: 0.4alpha3 -> 0.4alpha4
Update required for compatibility with fpc 3.2.0.
2020-09-03 14:39:11 +02:00
Vladimír Čunát
82aeab778f
pciutils: support static compilation
Close PR #96012 (thanks).  This "static style" was discussed on:
https://github.com/NixOS/nixpkgs/pull/96223#issuecomment-681204478
2020-09-01 08:49:22 +02:00
Mario Rodas
283df1442f
Merge pull request #96724 from r-ryantm/auto-update/stress-ng
stress-ng: 0.11.14 -> 0.11.19
2020-08-31 12:36:21 -05:00
R. RyanTM
b1df606428 stress-ng: 0.11.14 -> 0.11.19 2020-08-31 03:39:12 +00:00
Izorkin
fed86ab2a1
htop: disable use glyphs for checkmarks 2020-08-30 12:09:13 +03:00
Konrad Borowski
19023de862 htop: 2.2.0 -> 3.0.0 2020-08-29 14:49:37 +02:00
Jörg Thalheim
67d6ea03c9
netdata: reference nixos tests 2020-08-28 09:50:16 +01:00
Izorkin
af8e526347
netdata: 1.23.2 -> 1.24.0 2020-08-28 09:11:28 +03:00
Mario Rodas
0a4b693f99
Merge pull request #96302 from r-ryantm/auto-update/fio
fio: 3.21 -> 3.22
2020-08-25 20:45:00 -05:00
R. RyanTM
35d908a875 fio: 3.21 -> 3.22 2020-08-25 18:44:01 +00:00
R. RyanTM
9464310d3f bpytop: 1.0.13 -> 1.0.21 2020-08-25 06:25:10 +00:00
Silvan Mosberger
f8e6745ad3
Merge pull request #82817 from pacien/smartd-fix-hostname-notifications
smartmontools: fix missing hostname in notifications
2020-08-22 16:09:14 +02:00
Daniël de Kok
280147c510
Merge pull request #95489 from danieldk/rocm-3.7.0
Update ROCm to 3.7.0
2020-08-22 13:30:01 +02:00
Daniël de Kok
d75d3ebf5e rocm-smi: 3.5.0 -> 3.7.0 2020-08-22 07:43:00 +02:00
Jörg Thalheim
78cde427e8
storebrowse: remove (#95919)
I don't even bother to add it as deprecated to aliases.nix.
It was marked as broken in 2016.
2020-08-21 12:58:34 -07:00
Michael Weiss
47437afc00
inxi: 3.1.05-4 -> 3.1.06-1 2020-08-17 18:00:57 +02:00
pacien
f1922cdbdc smartmontools: fix missing hostname in notifications
This properly registers some missing dependencies of smartd_warning.sh.
2020-08-16 20:48:03 +02:00
zowoq
473536e3b5 buildRustPackage: remove platform.all from packages 2020-08-16 12:48:18 +10:00
zowoq
42313b92bc buildGoModule: remove platform.all from packages 2020-08-15 19:34:47 -07:00
zowoq
d5ebc45ba0 gotop: fix darwin build, enable checks 2020-08-15 10:57:56 +10:00
Ryan Mulligan
8956a18df3
Merge pull request #95314 from r-ryantm/auto-update/bpytop
bpytop: 1.0.0 -> 1.0.13
2020-08-13 06:27:48 -07:00
Michael Weiss
4c6743c79c
inxi: 3.1.05-2 -> 3.1.05-4 2020-08-13 14:39:05 +02:00
R. RyanTM
b08cf3cd45 bpytop: 1.0.0 -> 1.0.13 2020-08-13 06:54:09 +00:00
Ryan Mulligan
2f67375576
Merge pull request #95139 from r-ryantm/auto-update/kmon
kmon: 1.3.5 -> 1.4.0
2020-08-11 06:08:40 -07:00
R. RyanTM
20d4fd08b9 kmon: 1.3.5 -> 1.4.0 2020-08-11 04:42:03 +00:00
zowoq
cea7cd902e buildGoModule packages: set doCheck = false 2020-08-10 16:02:30 +10:00
Daniel Duan
236aa441a8 tre-command: 0.3.1 -> 0.3.2
release notes: https://github.com/dduan/tre/releases/tag/v0.3.2

relavent: this release introduces a Unix manual.
2020-08-08 16:35:10 -07:00
Raghav Sood
2ec6f070aa
netdata: 1.23.0 -> 1.23.2 2020-07-16 14:39:08 +00:00
Andreas Wiese
616962ffd9 bpytop: init at 1.0.0 2020-08-04 20:50:45 +02:00
R. RyanTM
05aa251ace kmon: 1.3.0 -> 1.3.5 2020-08-02 04:19:00 +00:00
zowoq
3c5750d1cd buildGoModule packages: editorconfig fixes 2020-07-31 13:58:04 +10:00
Michael Weiss
b739e02e12
inxi: 3.1.05-1 -> 3.1.05-2 2020-07-29 17:22:58 +02:00
Daniël de Kok
11771fc2e9
Merge pull request #93941 from leenaars/datefudge
datefudge: 1.23 -> 1.24
2020-07-28 18:00:34 +02:00
Emery Hemingway
6148e0ca85 acme: build for aarch64 2020-07-28 16:05:10 +02:00
Ryan Mulligan
33f6fc5e0e
Merge pull request #94063 from r-ryantm/auto-update/disk-filltest
disk-filltest: 0.8.1 -> 0.8.2
2020-07-28 06:57:26 -07:00
R. RyanTM
e8a58f8a2a disk-filltest: 0.8.1 -> 0.8.2 2020-07-28 08:29:54 +00:00
Michael Weiss
2c7646b1f3
inxi: 3.1.04-1 -> 3.1.05-1 2020-07-27 22:52:44 +02:00
Michiel Leenaars
aedccac4e8 datefudge: use tag instead of manual rev 2020-07-27 00:31:07 +02:00
Michiel Leenaars
785b541ed6 datefudge: 1.23 -> 1.24 2020-07-27 00:15:38 +02:00
Daniël de Kok
fbd4164784
Merge pull request #92832 from danieldk/cm-rgb
cm-rgb: init at 0.3.4
2020-07-26 20:37:54 +02:00
Vladyslav M
7adb91df59
Merge pull request #93786 from r-ryantm/auto-update/fio
fio: 3.20 -> 3.21
2020-07-24 23:56:37 +03:00
R. RyanTM
563d5fa7cc fio: 3.20 -> 3.21 2020-07-24 20:27:33 +00:00
R. RyanTM
71db15ef9f kmon: 1.2.0 -> 1.3.0 2020-07-24 03:26:45 +00:00
Daniël de Kok
031cc88afc cm-rgb: init at 0.3.4
This is a set of utilities to control AMD Wraith Prism RGB LEDs.
2020-07-21 11:43:34 +02:00
Maximilian Bosch
8eb5f22ad4
Merge pull request #93309 from r-ryantm/auto-update/facter
facter: 3.14.11 -> 3.14.12
2020-07-18 18:07:06 +02:00
Daniël de Kok
a6d8e68610 rocm-smi: init at 3.5.0
This utility reports information about AMD GPUs that are supported by
the ROCm stack. It also exposes functionality for clock and
temperature management.
2020-07-17 08:07:09 +02:00
R. RyanTM
a8387a9963 facter: 3.14.11 -> 3.14.12 2020-07-16 22:23:20 +00:00
Vladimír Čunát
377324ca6d
Merge branch 'staging-next' (PR #91090) 2020-07-13 07:13:56 +02:00
R. RyanTM
e1867b4e5c logrotate: 3.16.0 -> 3.17.0 2020-07-12 08:36:33 +00:00
Frederik Rietdijk
ae8eee9c3f Merge master into staging-next 2020-07-11 08:59:54 +02:00
Luke Bentley-Fox
874a47f852
colorls: 1.3.3 -> 1.4.2 2020-07-09 13:23:15 +01:00
Mario Rodas
ce8fffaed3
Merge pull request #92741 from r-ryantm/auto-update/zenith
zenith: 0.9.0 -> 0.10.0
2020-07-08 19:10:22 -05:00
R. RyanTM
7831c0c322 zenith: 0.9.0 -> 0.10.0 2020-07-08 18:55:29 +00:00
Maximilian Bosch
e3d95b9ccf
Merge pull request #92595 from r-ryantm/auto-update/thermald
thermald: 2.1 -> 2.2
2020-07-08 11:18:48 +02:00
Mario Rodas
29cf4de205
Merge pull request #92596 from r-ryantm/auto-update/stress-ng
stress-ng: 0.11.10 -> 0.11.14
2020-07-07 20:47:47 -05:00
Mario Rodas
57b1e884a2
Merge pull request #92577 from r-ryantm/auto-update/syslog-ng
syslogng: 3.27.1 -> 3.28.1
2020-07-07 20:44:31 -05:00
Mario Rodas
90e4427414
Merge pull request #92562 from r-ryantm/auto-update/rsyslog
rsyslog: 8.2004.0 -> 8.2006.0
2020-07-07 20:43:44 -05:00
R. RyanTM
976856c30c
monit: 5.26.0 -> 5.27.0 (#92361) 2020-07-07 21:43:26 +02:00
R. RyanTM
a157b7e8e6 psensor: 1.2.0 -> 1.2.1 2020-07-07 09:53:40 -07:00
R. RyanTM
c722886ee1 stress-ng: 0.11.10 -> 0.11.14 2020-07-07 15:50:23 +00:00
R. RyanTM
ea8b1bb00d thermald: 2.1 -> 2.2 2020-07-07 15:37:47 +00:00
R. RyanTM
82612f4429 syslogng: 3.27.1 -> 3.28.1 2020-07-07 13:53:00 +00:00
R. RyanTM
228389e331 rsyslog: 8.2004.0 -> 8.2006.0 2020-07-07 10:11:36 +00:00
Will Dietz
f32641c7ba
Merge pull request #92524 from r-ryantm/auto-update/python3.8-s-tui
s-tui: 1.0.0 -> 1.0.1
2020-07-06 18:34:30 -05:00
R. RyanTM
6788f32141 s-tui: 1.0.0 -> 1.0.1 2020-07-06 22:53:13 +00:00
Mario Rodas
951a5bcc7a
facter: enable on darwin 2020-07-04 04:23:00 -05:00
Frederik Rietdijk
c33ca7c5ce Merge staging-next into staging 2020-07-02 17:14:53 +02:00
Michael Weiss
55668eb671
inxi: 3.1.03-1 -> 3.1.04-1 2020-07-01 20:07:51 +02:00
Maximilian Bosch
7193603c5f
datefudge: fix build w/glibc-2.31
https://hydra.nixos.org/build/122874972
2020-06-29 14:41:42 +02:00
Raghav Sood
9a5e9d475f
netdata: 1.22.1 -> 1.23.0 2020-06-26 15:49:45 +00:00
Michael Weiss
5afd967d70
efibootmgr: Fix the cross compilation 2020-06-20 13:00:49 +02:00
Evils
1dca47c19a tuptime: 4.1.0 -> 5.0.0
uptimed import script removed from source ("unreliable")
new database format, including migration script instead
2020-06-20 05:34:37 +02:00
Frederik Rietdijk
301847a7e5 Merge master into staging-next 2020-06-19 09:01:43 +02:00
Mario Rodas
d27c8ab337
Merge pull request #96391 from r-ryantm/auto-update/minijail
minijail: 14 -> 16
2020-10-04 08:58:49 -05:00
Maximilian Bosch
ebb5b9ab2e
Merge pull request #99282 from fadenb/systemdjournal2gelf_20200813
systemd-journal2gelf: 20190702 -> 20200813
2020-10-01 19:35:34 +02:00
Michael Weiss
85537bce39
inxi: 3.1.06-1 -> 3.1.07-1 2020-10-01 17:29:51 +02:00
Tristan Helmich (omniIT)
05d0f38c18 systemd-journal2gelf: 20190702 -> 20200813 2020-10-01 14:22:25 +00:00
Konrad Borowski
4efe18bdee htop: 3.0.1 -> 3.0.2 2020-10-01 12:27:12 +02:00
Stig P
302ef60620
Merge pull request #99126 from berbiche/bottom
bottom: init at 0.4.7
2020-10-01 08:06:37 +00:00
Daniël de Kok
7a0672de18
Merge pull request #98054 from demyanrogozhin/opencl-info-cl2-patch
opencl-info: fix build
2020-09-30 19:19:57 +02:00
Demyan Rogozhin
26d930cb76 opencl-info: fix build 2020-09-30 19:16:24 +02:00
Nicolas Berbiche
f4ede1e1ba
bottom: init at 0.4.7
Co-authored-by: r-burns <52847440+r-burns@users.noreply.github.com>
2020-09-30 12:44:06 -04:00
R. RyanTM
16723e4815 minijail: 14 -> 16 2020-08-26 18:08:08 +00:00
Frederik Rietdijk
4af4a49251 Merge master into staging-next 2020-06-16 18:05:38 +02:00