-
-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Update deb-get to add support for Cisco Webex #8
Conversation
Add support for Cisco Webex deb
This closes issue #7 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Webex .deb is 300MB. Everytime deb-get
needs to check the published version of Webex to determine if it should offer an update, it will need to download 300MB.
I don't think that is acceptable 😞
The Webex release notes do include the version numbers. Perhaps the version number for Linux can be extracted from that page? |
This seems to work: curl -s "https://help.webex.com/en-us/article/mqkve8/Webex-App-%7C-Release-notes" | grep "<p class=\"p\">Linux—" | head -n1 | cut -d'>' -f2 | cut -d'<' -f1 | sed 's/Linux—//' |
Or do a partial download of the deb using the range parameter of curl?
|
Get Webex version number from Release Notes per suggest from Wimpy
* Update deb-get Add support for Cisco Webex deb * Change how retrieve Webex version Get Webex version number from Release Notes per suggest from Wimpy Add support for Webex (#9) * Update deb-get Add support for Cisco Webex deb * Change how retrieve Webex version Get Webex version number from Release Notes per suggest from Wimpy * Update README.md Add Webex * Update README.md Change icon for Webex to direct
* Add initial support for Glab * use urlencoded path instead of id * Add get gitlab releases (#8) * added get_gitlab_releases() * failed to filter for supported ARCHS * fix typo --------- Co-authored-by: Martin Wimpress <304639+flexiondotorg@users.noreply.github.com>
* Add initial support for Glab * use urlencoded path instead of id * Add get gitlab releases (wimpysworld#8) * added get_gitlab_releases() * failed to filter for supported ARCHS * fix typo --------- Co-authored-by: Martin Wimpress <304639+flexiondotorg@users.noreply.github.com>
Add support for Cisco Webex deb