-
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34ff96f
commit 0117368
Showing
11 changed files
with
24 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
DEFVER=1 | ||
CODENAMES_SUPPORTED="sid bullseye jammy focal" | ||
WEBSITE="https://www.rastersoft.com/programas/cronopete.html" | ||
get_website "https://www.rastersoft.com/programas/cronopete.html" | ||
if [ "${ACTION}" != "prettylist" ]; then | ||
VERSION_PUBLISHED="$(curl -s $WEBSITE | grep "Current version" | head -n1 | cut -d ' ' -f3)" | ||
VERSION_PUBLISHED="$(grep "Current version" "${CACHE_FILE}" | head -n1 | cut -d ' ' -f3)" | ||
fi | ||
URL="https://www.rastersoft.com/descargas/cronopete/cronopete-${UPSTREAM_CODENAME}_${VERSION_PUBLISHED}-${UPSTREAM_ID}1_amd64.deb" | ||
PRETTY_NAME="Cronopete" | ||
WEBSITE="https://www.rastersoft.com/programas/cronopete.html" | ||
SUMMARY="A backup utility for Linux, modeled after Apple's Time Machine." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
DEFVER=1 | ||
get_github_releases "https://api.github.com/repos/home-assistant/supervised-installer/releases/latest" | ||
get_github_releases "home-assistant/supervised-installer" "latest" | ||
if [ "${ACTION}" != "prettylist" ]; then | ||
URL=$(grep "browser_download_url.*\.deb\"" "${CACHE_DIR}/${APP}.json" | cut -d'"' -f4) | ||
URL=$(grep "browser_download_url.*\.deb\"" "${CACHE_FILE}" | cut -d'"' -f4) | ||
VERSION_PUBLISHED="$(echo "${URL}" | cut -d'/' -f8 | tr -d v)" | ||
fi | ||
PRETTY_NAME="Home Assistant Supervised" | ||
WEBSITE="https://github.com/home-assistant/supervised-installer" | ||
SUMMARY="This is Home Assistant supervised installer, that provides the full Home Assistant experience on a regular operating system." | ||
SUMMARY="This is Home Assistant supervised installer, that provides the full Home Assistant experience on a regular operating system." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
DEFVER=1 | ||
get_github_releases "https://api.github.com/repos/home-assistant/os-agent/releases/latest" | ||
get_github_releases "home-assistant/os-agent" "latest" | ||
if [ "${ACTION}" != "prettylist" ]; then | ||
URL="$(grep "browser_download_url.*x86_64\.deb\"" "${CACHE_DIR}/${APP}.json" | head -n1 | cut -d'"' -f4)" | ||
URL="$(grep "browser_download_url.*x86_64\.deb\"" "${CACHE_FILE}" | head -n1 | cut -d'"' -f4)" | ||
VERSION_PUBLISHED="$(echo ${URL} | cut -d'_' -f2)" | ||
fi | ||
PRETTY_NAME="Agent for Home Assistant OS" | ||
WEBSITE="https://github.com/home-assistant/os-agent" | ||
SUMMARY="This is the OS Agent for Home Assistant. It is used for Home Assistant OS and Home Assistant Supervised installation types and it allows the Home Assistant Supervisor to communicate with the host operating system." | ||
SUMMARY="This is the OS Agent for Home Assistant. It is used for Home Assistant OS and Home Assistant Supervised installation types and it allows the Home Assistant Supervisor to communicate with the host operating system." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters