update package naming

This commit is contained in:
Derek Macias 2015-12-11 10:07:55 -07:00
parent 5cec280636
commit 1b2eb67c0d

View File

@ -4,12 +4,12 @@
<!ENTITY name "speedtest"> <!ENTITY name "speedtest">
<!ENTITY repo "unRAID"> <!ENTITY repo "unRAID">
<!ENTITY author "dmacias72"> <!ENTITY author "dmacias72">
<!ENTITY version "2015.12.10"> <!ENTITY version "2015.12.11">
<!ENTITY launch "Settings/&name;"> <!ENTITY launch "Settings/&name;">
<!ENTITY gitURL "https://raw.githubusercontent.com/&author;/&repo;/master"> <!ENTITY gitURL "https://raw.githubusercontent.com/&author;/&repo;/master">
<!ENTITY pluginURL "&gitURL;/plugins/&name;.plg"> <!ENTITY pluginURL "&gitURL;/plugins/&name;.plg">
<!ENTITY pkgURL "&gitURL;/source/packages"> <!ENTITY pkgURL "&gitURL;/source/packages">
<!ENTITY pkgs "/boot/packages"> <!ENTITY pkgs "/boot/packages/">
<!ENTITY plugin "/boot/config/plugins/&name;"> <!ENTITY plugin "/boot/config/plugins/&name;">
<!ENTITY emhttp "/usr/local/emhttp/plugins/&name;"> <!ENTITY emhttp "/usr/local/emhttp/plugins/&name;">
]> ]>
@ -21,9 +21,10 @@ This Plugin installs speedtest-cli for unRaid 6.1 All dependencies are installe
--> -->
<CHANGES> <CHANGES>
###2015.12.10 ###2015.12.11
- update package name
- update install and remove scripts - update install and remove scripts
- changed plugin repo ###2015.12.10
- add date and time to table - add date and time to table
- add switchbuttons - add switchbuttons
- update packages - update packages
@ -43,30 +44,30 @@ This Plugin installs speedtest-cli for unRaid 6.1 All dependencies are installe
<MD5>7d5f6d12757c59e5f08ca25bd63aab78</MD5> <MD5>7d5f6d12757c59e5f08ca25bd63aab78</MD5>
</FILE> </FILE>
<FILE Name="&pkgs;/pyOpenSSL-0.15.1-x86_64-1_slack.txz" Run="/sbin/upgradepkg --install-new"> <FILE Name="&pkgs;/pyOpenSSL-0.15.1-x86_64-1_slack.txz" Run="/sbin/upgradepkg --install-new">
<URL>&pkgURL;/pyOpenSSL-0.15.1-x86_64-1_slack.txz</URL> <URL>&pkgURL;pyOpenSSL-0.15.1-x86_64-1_slack.txz</URL>
<MD5>b422874df919df6baa10774bd2ddc2cc</MD5> <MD5>b422874df919df6baa10774bd2ddc2cc</MD5>
</FILE> </FILE>
<FILE Name="&pkgs;/pysetuptools-18.2-x86_64-2_slack.txz" Run="/sbin/upgradepkg --install-new"> <FILE Name="&pkgs;/pysetuptools-18.2-x86_64-2_slack.txz" Run="/sbin/upgradepkg --install-new">
<URL>&pkgURL;/pysetuptools-18.2-x86_64-2_slack.txz</URL> <URL>&pkgURL;pysetuptools-18.2-x86_64-2_slack.txz</URL>
<MD5>8cb67f040f55b152042752c85b8c68d6</MD5> <MD5>8cb67f040f55b152042752c85b8c68d6</MD5>
</FILE> </FILE>
<FILE Name="&pkgs;/pip-7.1.2-x86_64-1_slack.txz" Run="/sbin/upgradepkg --install-new"> <FILE Name="&pkgs;/pip-7.1.2-x86_64-1_slack.txz" Run="/sbin/upgradepkg --install-new">
<URL>&pkgURL;/pip-7.1.2-x86_64-1_slack.txz</URL> <URL>&pkgURL;pip-7.1.2-x86_64-1_slack.txz</URL>
<MD5>1e0a8d9e281cd075c175eca86aea2130</MD5> <MD5>1e0a8d9e281cd075c175eca86aea2130</MD5>
</FILE> </FILE>
<!-- <!--
The 'plugin' package file. The 'plugin' package file.
--> -->
<FILE Name="&plugin;/&name;-&version;.txz"> <FILE Name="&plugin;/&name;-&version;-x86_64-1.txz">
<URL>&gitURL;/archive/&name;-&version;.txz</URL> <URL>&repo;/archive/&name;-&version;-x86_64-1.txz</URL>
</FILE> </FILE>
<!-- <!--
The 'plugin' package MD5 hash. The 'plugin' package MD5 hash.
--> -->
<FILE Name="&plugin;/&name;-&version;.md5"> <FILE Name="&plugin;/&name;-&version;-x86_64-1.md5">
<URL>&gitURL;/archive/&name;-&version;.md5</URL> <URL>&repo;/archive/&name;-&version;-x86_64-1.md5</URL>
</FILE> </FILE>
<!-- <!--
@ -75,14 +76,15 @@ The 'install' script.
<FILE Run="/bin/bash"> <FILE Run="/bin/bash">
<INLINE> <INLINE>
# Verify and install plugin package # Verify and install plugin package
sum1=$(/usr/bin/md5sum &plugin;/&name;-&version;.txz) sum1=$(/usr/bin/md5sum &plugin;/&name;-&version;-x86_64-1.txz)
sum2=$(/usr/bin/cat &plugin;/&name;-&version;.md5) sum2=$(/usr/bin/cat &plugin;/&name;-&version;-x86_64-1.md5)
if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then
echo "Wrong 'plugin' package md5 hash." echo "Wrong 'plugin' package md5 hash."
rm -f &plugin;/&name;-&version;.* rm &plugin;/&name;-&version;-x86_64-1.txz
rm &plugin;/&name;-&version;-x86_64-1.md5
exit 1 exit 1
else else
upgradepkg --install-new &plugin;/&name;-&version;.txz upgradepkg --install-new &plugin;/&name;-&version;-x86_64-1.txz
fi fi
# Create symlink to xml on flash drive # Create symlink to xml on flash drive
@ -113,9 +115,9 @@ The 'remove' script.
--> -->
<FILE Run="/bin/bash" Method="remove"> <FILE Run="/bin/bash" Method="remove">
<INLINE> <INLINE>
removepkg &plugin;/&name;-&version;.txz
rm -rf &emhttp; rm -rf &emhttp;
rm -f &plugin;/&name;-&version;.* removepkg &plugin;/&name;-&version;-x86_64-1.txz
rm -f &plugin;/&name;-&version;-x86_64-1.txz
echo "" echo ""
echo "-----------------------------------------------------------" echo "-----------------------------------------------------------"