|
1 | 1 | # |
2 | | -# Copyright (c) 2002-2005 David Rudie |
3 | | -# All rights reserved. |
| 2 | +# SPDX-FileCopyrightText: 2011-2019 Nils Görs <[email protected]> |
| 3 | +# SPDX-FileCopyrightText: 2002-2005 David Rudie <[email protected]> |
| 4 | +# SPDX-FileCopyrightText: 2003-2006 Travis Morgan <[email protected]> |
| 5 | +# |
| 6 | +# SPDX-License-Identifier: BSD-2-Clause |
4 | 7 | # |
5 | 8 | # Redistribution and use in source and binary forms, with or without |
6 | 9 | # modification, are permitted provided that the following conditions |
|
23 | 26 | # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
24 | 27 | # SUCH DAMAGE. |
25 | 28 | # |
26 | | -# Several additions and fixes to this script were contributed by Travis |
27 | | -# Morgan and therefore are Copyright (c) 2003-2006 Travis Morgan |
28 | | -# |
29 | 29 | # If you notice any bugs including spacing issues, wrong detection of hardware, |
30 | 30 | # obvious features missing, etc, we both want to hear about them. If you make |
31 | 31 | # this script work on other operating systems and/or architectures please send |
|
37 | 37 | # |
38 | 38 | # You can also reach Travis in #crd on efnet. |
39 | 39 | # |
40 | | -# ported to WeeChat (http://www.weechat.org/) by Nils Görs. Copyright |
41 | | -# (c) 2011-2019 Nils Görs |
| 40 | +# ported to WeeChat (http://www.weechat.org/) by Nils Görs. |
42 | 41 | # |
| 42 | +# 2025-04-22: 1.2.1 Sébastien Helleu <[email protected]> |
| 43 | +# : fix script license |
43 | 44 | # 2019-05-13: 1.2 nils_2 (freenode@nils_2) |
44 | | -# : make script compatible with kernel 5.x |
| 45 | +# : make script compatible with kernel 5.x |
45 | 46 | # 2019-03-17: 1.1 nils_2 (freenode@nils_2) |
46 | | -# : fix: warning isn't numeric in subtraction |
| 47 | +# : fix: warning isn't numeric in subtraction |
47 | 48 | # 2016-03-23: 1.0 nils_2 (freenode@nils_2) |
48 | | -# : fix: problem with armv7l Processor (eg cubietruck) |
| 49 | +# : fix: problem with armv7l Processor (eg cubietruck) |
49 | 50 | # 2015-05-16: 0.9 Keridos <[email protected]> |
50 | 51 | # add compatibility with linux kernel 4.x |
51 | 52 | # 2015-02-15: 0.8 nils_2 (freenode@nils_2) |
|
58 | 59 | # : based on sysinfo 2.81.21 |
59 | 60 | # : bug with "armv5tel" in sysinfo 2.81.21 fixed (Version bumped to 2.81.22 and sent to maintainer) |
60 | 61 | # 2012-01-07: 0.4 welwood08 |
61 | | -# : Fix distro+version for Ubuntu LTS |
62 | | -# : version bumped to 0.4 and copyright status changed |
| 62 | +# : Fix distro+version for Ubuntu LTS |
| 63 | +# : version bumped to 0.4 and copyright status changed |
63 | 64 | # 2011-10-01: 0.3 nils_2 <[email protected]> |
64 | 65 | # : bar_item added (idea by Banton) |
65 | 66 | # 2011-09-27: 0.2 nils_2 <[email protected]> |
|
76 | 77 | use strict; |
77 | 78 |
|
78 | 79 | my $SCRIPT_NAME = "sysinfo"; |
79 | | -my $SCRIPT_VERSION = "1.2"; |
| 80 | +my $SCRIPT_VERSION = "1.2.1"; |
80 | 81 | my $SCRIPT_DESCR = "provides a system info command"; |
81 | | -my $SCRIPT_LICENSE = "GPL3"; |
| 82 | +my $SCRIPT_LICENSE = "BSD-2-Clause"; |
82 | 83 | my $SCRIPT_AUTHOR = "Nils Görs <weechatter\@arcor.de>"; |
83 | 84 |
|
84 | 85 | # Set up the arrays and variables first. |
|
0 commit comments