"Updated packages and fixed dependencies"

This commit is contained in:
Mcklaren 2023-03-05 02:05:36 +01:00
parent eb8adbc21b
commit a2902a7820
30 changed files with 23 additions and 5 deletions

Binary file not shown.

Binary file not shown.

BIN
packages/6.11/gpgme-1.18.0-x86_64-1.txz vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
packages/6.11/irssi-1.4.3-x86_64-1.txz vendored Normal file

Binary file not shown.

BIN
packages/6.11/libffi-3.4.4-x86_64-1.txz vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
packages/6.11/powertop-2.15-x86_64-1.txz vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packages/6.11/sshfs-3.7.3-x86_64-1.txz vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
packages/6.11/tcl-8.6.13-x86_64-1.txz vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
packages/6.11/tmux-3.3a-x86_64-1.txz vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packages/6.11/wget2-2.0.1-x86_64-1.txz vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
packages/6.11/zsh-5.9-x86_64-1.txz vendored Normal file

Binary file not shown.

View File

@ -59,6 +59,7 @@
"lbzip2":"pthreads-based parallel bzip2\/bunzip2", "lbzip2":"pthreads-based parallel bzip2\/bunzip2",
"lftp":"A program that allows sophisticated ftp and http connections to other hosts. lftp can handle many file access methods including ftp, ftps, http, https, hftp, fish and file. Every operation in lftp is reliable, that is any non-fatal error is ignored and the operation is retried. lftp has shell-like command syntax. Has a built in mirror feature which can download or upload a whole directory tree. To learn about many more features of lftp, see man lftp.", "lftp":"A program that allows sophisticated ftp and http connections to other hosts. lftp can handle many file access methods including ftp, ftps, http, https, hftp, fish and file. Every operation in lftp is reliable, that is any non-fatal error is ignored and the operation is retried. lftp has shell-like command syntax. Has a built in mirror feature which can download or upload a whole directory tree. To learn about many more features of lftp, see man lftp.",
"libassuan":"This is the IPC library used by GnuPG 2.x, GPGME and a few other packages.", "libassuan":"This is the IPC library used by GnuPG 2.x, GPGME and a few other packages.",
"libffi": "(A Portable Foreign Function Interface Library) FFI stands for Foreign Function Interface. A foreign function interface is the popular name for the interface that allows code written in one language to call code written in another language. The libffi library really only provides the lowest, machine dependent layer of a fully featured foreign function interface.",
"libmediainfo":"A library for mediainfo.", "libmediainfo":"A library for mediainfo.",
"libzen":"A mandatory library for libmediainfo.", "libzen":"A mandatory library for libmediainfo.",
"llfuse":"A set of Python bindings for the low level FUSE API.", "llfuse":"A set of Python bindings for the low level FUSE API.",

View File

@ -3,8 +3,8 @@
<!DOCTYPE PLUGIN [ <!DOCTYPE PLUGIN [
<!ENTITY name "NerdTools"> <!ENTITY name "NerdTools">
<!ENTITY author "UnRAIDES"> <!ENTITY author "UnRAIDES">
<!ENTITY version "2023.02.28"> <!ENTITY version "2023.03.05">
<!ENTITY md5 "b37be4e724919156f11f354205882fd0"> <!ENTITY md5 "9358b28c7ed7e3bbd8f14fafb2745d51">
<!ENTITY launch "Settings/&name;"> <!ENTITY launch "Settings/&name;">
<!ENTITY github "UnRAIDES/unRAID-&name;"> <!ENTITY github "UnRAIDES/unRAID-&name;">
<!ENTITY pluginURL "https://raw.githubusercontent.com/&github;/main/plugin/&name;.plg"> <!ENTITY pluginURL "https://raw.githubusercontent.com/&github;/main/plugin/&name;.plg">
@ -17,8 +17,23 @@
<CHANGES> <CHANGES>
##&name; ##&name;
###2023.02.28 ###2023.03.05
- Updated: ddrescue-1.27 - Updated: ddrescue-1.27
- Updated: gpgme-1.18.0
- Updated: irssi-1.4.3
- Updated: powertop-2.15
- Updated: python-pip-22.2.2
- Updated: python-setuptools-65.1.1
- Updated: python2-2.7.18-5
- Updated: python3-3.9.16
- Updated: sshfs-3.7.3
- Updated: tcl-8.6.13
- Updated: tmux-3.3a
- Updated: utf8proc-2.8.0
- Updated: vim-9.0.1362
- Updated: wget2-2.0.1
- Updated: zsh-5.9
- Added: libffi-3.4.4 as dependency of iotop #37
###2022.11.01 ###2022.11.01
- Fixed: Removepkg Fixed packages - Fixed: Removepkg Fixed packages
###2022.10.24 ###2022.10.24
@ -120,7 +135,7 @@ echo ""
echo "-----------------------------------------------------------" echo "-----------------------------------------------------------"
echo " &name; has been installed." echo " &name; has been installed."
echo "" echo ""
echo " Copyright 2022, &author;" echo " Copyright 2023, &author;"
echo " Credits, based on NerdPack plugin of dmacias72, eschultz" echo " Credits, based on NerdPack plugin of dmacias72, eschultz"
echo " Version: &version;" echo " Version: &version;"
echo "-----------------------------------------------------------" echo "-----------------------------------------------------------"
@ -151,7 +166,7 @@ rm -f /boot/config/plugins/NerdTools 1>/dev/null
echo "" echo ""
echo "-----------------------------------------------------------" echo "-----------------------------------------------------------"
echo " &name; has been removed." echo " &name; has been removed."
echo " Copyright 2022, &author;" echo " Copyright 2023, &author;"
echo " Credits, based on NerdPack plugin of dmacias72, eschultz" echo " Credits, based on NerdPack plugin of dmacias72, eschultz"
echo " Version: &version;" echo " Version: &version;"
echo "-----------------------------------------------------------" echo "-----------------------------------------------------------"

View File

@ -156,6 +156,8 @@ function checkDepends() {
if ($('#iotop')[0].checked) { if ($('#iotop')[0].checked) {
$('#python2').switchButton({ checked: true }); $('#python2').switchButton({ checked: true });
$('#python2', '.pkgvalue').val('yes'); $('#python2', '.pkgvalue').val('yes');
$('#libffi').switchButton({ checked: true });
$('#libffi', '.pkgvalue').val('yes');
} }
} catch (error) { } catch (error) {
console.error('Error checkDepends' + error); console.error('Error checkDepends' + error);