Skip to content

Commit f3bdff4

Browse files
flashcoderyoskzypu
authored andcommitted
sysinfo.pl 1.2.1: fix script license
1 parent b777eb8 commit f3bdff4

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

perl/sysinfo.pl

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#
2-
# Copyright (c) 2002-2005 David Rudie
3-
# All rights reserved.
2+
# SPDX-FileCopyrightText: 2011-2019 Nils Görs <weechatter@arcor.de>
3+
# SPDX-FileCopyrightText: 2002-2005 David Rudie <d.rudie@gmail.com>
4+
# SPDX-FileCopyrightText: 2003-2006 Travis Morgan <imbezol@criticaldamage.com>
5+
#
6+
# SPDX-License-Identifier: BSD-2-Clause
47
#
58
# Redistribution and use in source and binary forms, with or without
69
# modification, are permitted provided that the following conditions
@@ -23,9 +26,6 @@
2326
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2427
# SUCH DAMAGE.
2528
#
26-
# Several additions and fixes to this script were contributed by Travis
27-
# Morgan and therefore are Copyright (c) 2003-2006 Travis Morgan
28-
#
2929
# If you notice any bugs including spacing issues, wrong detection of hardware,
3030
# obvious features missing, etc, we both want to hear about them. If you make
3131
# this script work on other operating systems and/or architectures please send
@@ -37,15 +37,16 @@
3737
#
3838
# You can also reach Travis in #crd on efnet.
3939
#
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.
4241
#
42+
# 2025-04-22: 1.2.1 Sébastien Helleu <flashcode@flashtux.org>
43+
# : fix script license
4344
# 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
4546
# 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
4748
# 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)
4950
# 2015-05-16: 0.9 Keridos <fuffzehn@gmail.com>
5051
# add compatibility with linux kernel 4.x
5152
# 2015-02-15: 0.8 nils_2 (freenode@nils_2)
@@ -58,8 +59,8 @@
5859
# : based on sysinfo 2.81.21
5960
# : bug with "armv5tel" in sysinfo 2.81.21 fixed (Version bumped to 2.81.22 and sent to maintainer)
6061
# 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
6364
# 2011-10-01: 0.3 nils_2 <weechatter@arcor.de>
6465
# : bar_item added (idea by Banton)
6566
# 2011-09-27: 0.2 nils_2 <weechatter@arcor.de>
@@ -76,9 +77,9 @@
7677
use strict;
7778

7879
my $SCRIPT_NAME = "sysinfo";
79-
my $SCRIPT_VERSION = "1.2";
80+
my $SCRIPT_VERSION = "1.2.1";
8081
my $SCRIPT_DESCR = "provides a system info command";
81-
my $SCRIPT_LICENSE = "GPL3";
82+
my $SCRIPT_LICENSE = "BSD-2-Clause";
8283
my $SCRIPT_AUTHOR = "Nils Görs <weechatter\@arcor.de>";
8384

8485
# Set up the arrays and variables first.

0 commit comments

Comments
 (0)