app-misc/spicetify-cli: drop 2.20.3, 2.21.0, 2.22.0

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate 2023-08-09 13:59:54 +03:00
parent 85cfed5c1f
commit f9da70da30
No known key found for this signature in database
GPG Key ID: A12750536B5E7010
4 changed files with 0 additions and 289 deletions

View File

@ -1,9 +1,3 @@
DIST spicetify-cli-2.20.3-deps.tar.xz 4836072 BLAKE2B 19f5c340d786ad082a7fb25a53468873e96a1814245a5ab4b3ff4383cf353d0e5db95a9c3d68df4bc695373bf4ae30d312b39a24684e11f7481a6a00347da0a9 SHA512 9a66b4fd8fe4ef3889f686e8f8c9223314bd4ba79508962b8bde8739d8c1d816e429b22216b49868994bdeaa42cc559506d5d70490594ebaab3039b8c71184ab
DIST spicetify-cli-2.20.3.tar.gz 2036885 BLAKE2B 25683ef8158f9b3d91da2d9393110020fa3b6141a531c94fc206ea6b5cf98d9dc19b349663159e12aa1fa0cde34e59a5c42bb5166a6e8e020bf204f2aa23a119 SHA512 c8915d5bd005cbe7e30bb3a0f4b2cbd623a164ffed7d86acc615f18402eeb20def3821a135e8e0fcac662eb8eb5bd42fe8e4f5faa47f485c29d1c7ae82eadcaf
DIST spicetify-cli-2.21.0-deps.tar.xz 4962368 BLAKE2B cd0db15beb1cc7c6360eb2d2a52daa23e5e81573f5314e377910398cc83611ed65574ef14577482cbd9407bba14589442ac0529ff7c914843965fa46d2f30722 SHA512 0c921f34c9f6d72b84f77b0ccbd13a2924075a9e7eb0c04f78aee948f2a38f25951d3f3497be45bf50555b93729d8d64e4edf642d706fd60c2750a5d90c89022
DIST spicetify-cli-2.21.0.tar.gz 2041001 BLAKE2B 73ec38aca48da8c2585347517e45ff9db0bedeaf15a3824af80096f0c02324476249fe2334375fa745a3606709688befacf9170c1b0cf7315ae40f761df7809a SHA512 e1160f37c95f682488e3b60d09658fc11930877681d4d9e153e73bc92dd140b5608d97d86f5ac1d1146aa0dfbd5fac71794067e216b1aab52d60764d65c88242
DIST spicetify-cli-2.22.0-deps.tar.xz 4962568 BLAKE2B 36619a9c2b4d10bb2d2c8f0ed8f0a2ab0e83ce314f44f239910dbfa599c10ece4577084ea55823bac97726c135866c4f004c5bd80b155ba26cec055fe4f0f482 SHA512 ddde2a04cadf819e5e4ae3c6bb81edaef5dfd5f8e809cffd3bea18383d359331a2b65420b2675ddbb84ee3df21cba9dd86300bca4d5ba5b3c20276d80f1692e3
DIST spicetify-cli-2.22.0.tar.gz 2039562 BLAKE2B db29ce699632166a9bb0c071726690f160f0a985fa8ea8b1391824eadbcf3a0db58050a8c8c5b381685d711ea97d45befbf26f4a2e98cb40dfba670ee149c072 SHA512 1a1e659e67aadfa4044750a0968579b590428394ae8f071a71326784b91225468d1db60264021087b5868fa4f9ca07e98a1d759bfb62d62001f99a1c3124a56c
DIST spicetify-cli-2.22.1-deps.tar.xz 4961908 BLAKE2B 99aaf18a1df9e48cbe0e109d611b8fc3998cb8f818e26535373fd2fc7419320e8a1df32de78317ea3ec0ada48be1a7c1361e2fe10cf844e69f898e80258514e9 SHA512 bc807e91718aacf5f66f57a9ee3bff5bac40d553d93ddae37eaebbf9ac69265ab2c1e368d01c700bb707e53b476e4e63f88b91d46e1fc4a364adb91858271dc8
DIST spicetify-cli-2.22.1.tar.gz 2039587 BLAKE2B 484a27dad2a0922709e21085f63049fa6e46e146577d96ae3a7fb226f1ba1cabc5af37bcd319a2e42985d6083ebe991e7f5a8f10d360de11aa109f228163d417 SHA512 b26334ec1ff83d5425bcb468a91cb5e19c06601d8375d9b8557b737ef5788391922e5c7c264d4a7b7669c67bb33a47b1b1475e2cdee48347a32634595a9df7bc
DIST spicetify-cli-2.22.2-deps.tar.xz 5041544 BLAKE2B b37b4dbc9a1c627a377731223e58744734ab1181c9d4f44d2c096fcbaaea89ff43f647d5ad1566bd9e5141fcc7e8039a645e0b60d4666d396a0f71eb4a0f2480 SHA512 20375b089829aaaf38940e62ab41ad8180e6dee77008c28f1fc425ae1425d1b2c269cd1e5507ca916c18c651b0e27abcd27881e11979e8976f916397507c2bd2

View File

@ -1,97 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
#2023-06-27:
# added 1.2.13 despite it not being declared compatbile for Linux in particular.
# Works fine for me and is declared compatible for Windows and macOS.
WHITELIST_VERSIONS=(
"~ 1.2.13"
"~ 1.2.11"
"~ 1.2.9"
"~ 1.2.8"
"~ 1.1.99"
)
whitelist_versions() {
local version_spec version1 version2
local -a deps
SPOTIFY_VERSIONS=
# Iterate in reverse for elog
for ((index = $(( ${#WHITELIST_VERSIONS[@]} - 1 )); index >= 0; index--)); do
read -r version_spec version1 version2 <<< "${WHITELIST_VERSIONS[${index}]}"
case ${version_spec} in
"<>")
deps[$index]="( <=media-sound/spotify-${version2} >=media-sound/spotify-${version1} )"
SPOTIFY_VERSIONS+="${version1} -> ${version2}"
;;
"~")
deps[$index]="~media-sound/spotify-${version1}"
SPOTIFY_VERSIONS+="${version1}"
;;
*)
die "Invalid version specifier in WHITELIST_VERSIONS"
;;
esac
if [[ ${index} == 0 ]]; then
SPOTIFY_VERSIONS+=". "
elif [[ ${index} == 1 ]]; then
SPOTIFY_VERSIONS+=" and "
else
SPOTIFY_VERSIONS+=", "
fi
done
RDEPEND=" || ( ${deps[@]} )"
}
whitelist_versions
DESCRIPTION="Commandline tool to customize Spotify client."
HOMEPAGE="https://spicetify.app/"
SRC_URI="
https://github.com/spicetify/spicetify-cli/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://gitlab.com/api/v4/projects/37881342/packages/generic/${PN}/${PV}/${P}-deps.tar.xz
"
LICENSE="Apache-2.0 BSD LGPL-2.1 MIT"
SLOT="0"
KEYWORDS="~amd64"
# no tests
RESTRICT="test"
INSTALLDIR="/opt/${PN}"
src_compile() {
ego build -ldflags "-X main.version=${PV}"
}
src_install() {
insinto "${INSTALLDIR}"
doins -r {CustomApps,Extensions,Themes,jsHelper,spicetify-cli}
dobin "${FILESDIR}/spicetify"
fperms +x "${INSTALLDIR}/spicetify-cli"
}
pkg_postinst() {
elog "Spicetify requires a Spotify install that it can modify."
elog "To give read and write permissions to everyone on the system to run the following commands."
elog "# chmod a+wr /opt/spotify/spotify-client"
elog "# chmod a+wr /opt/spotify/spotify-client/Apps -R"
elog ""
elog "Spicetify compatibility is limited to the following Spotify versions:"
elog " ${SPOTIFY_VERSIONS}"
elog ""
elog "Otherwise you can install spotify to a user modifiable location like as a flatpak:"
elog " https://spicetify.app/docs/advanced-usage/installation#spotify-installed-from-flatpak"
elog ""
elog "To install themes see:"
elog " https://spicetify.app/docs/advanced-usage/themes"
}

View File

@ -1,93 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
WHITELIST_VERSIONS=(
"~ 1.2.13"
"~ 1.2.11"
"~ 1.2.9"
"~ 1.2.8"
)
whitelist_versions() {
local version_spec version1 version2
local -a deps
SPOTIFY_VERSIONS=
# Iterate in reverse for elog
for ((index = $(( ${#WHITELIST_VERSIONS[@]} - 1 )); index >= 0; index--)); do
read -r version_spec version1 version2 <<< "${WHITELIST_VERSIONS[${index}]}"
case ${version_spec} in
"<>")
deps[$index]="( <=media-sound/spotify-${version2} >=media-sound/spotify-${version1} )"
SPOTIFY_VERSIONS+="${version1} -> ${version2}"
;;
"~")
deps[$index]="~media-sound/spotify-${version1}"
SPOTIFY_VERSIONS+="${version1}"
;;
*)
die "Invalid version specifier in WHITELIST_VERSIONS"
;;
esac
if [[ ${index} == 0 ]]; then
SPOTIFY_VERSIONS+=". "
elif [[ ${index} == 1 ]]; then
SPOTIFY_VERSIONS+=" and "
else
SPOTIFY_VERSIONS+=", "
fi
done
RDEPEND=" || ( ${deps[@]} )"
}
whitelist_versions
DESCRIPTION="Commandline tool to customize Spotify client."
HOMEPAGE="https://spicetify.app/"
SRC_URI="
https://github.com/spicetify/spicetify-cli/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://gitlab.com/api/v4/projects/37881342/packages/generic/${PN}/${PV}/${P}-deps.tar.xz
"
LICENSE="Apache-2.0 BSD LGPL-2.1 MIT"
SLOT="0"
KEYWORDS="~amd64"
# no tests
RESTRICT="test"
INSTALLDIR="/opt/${PN}"
src_compile() {
ego build -ldflags "-X main.version=${PV}"
}
src_install() {
insinto "${INSTALLDIR}"
doins -r {CustomApps,Extensions,Themes,jsHelper,spicetify-cli}
dobin "${FILESDIR}/spicetify"
fperms +x "${INSTALLDIR}/spicetify-cli"
}
pkg_postinst() {
elog "Spicetify requires a Spotify install that it can modify."
elog "To give read and write permissions to everyone on the system to run the following commands."
elog "# chmod a+wr /opt/spotify/spotify-client"
elog "# chmod a+wr /opt/spotify/spotify-client/Apps -R"
elog ""
elog "Spicetify compatibility is limited to the following Spotify versions:"
elog " ${SPOTIFY_VERSIONS}"
elog ""
elog "Otherwise you can install spotify to a user modifiable location like as a flatpak:"
elog " https://spicetify.app/docs/advanced-usage/installation#spotify-installed-from-flatpak"
elog ""
elog "To install themes see:"
elog " https://spicetify.app/docs/advanced-usage/themes"
}

View File

@ -1,93 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
WHITELIST_VERSIONS=(
"~ 1.2.13"
"~ 1.2.11"
"~ 1.2.9"
"~ 1.2.8"
)
whitelist_versions() {
local version_spec version1 version2
local -a deps
SPOTIFY_VERSIONS=
# Iterate in reverse for elog
for ((index = $(( ${#WHITELIST_VERSIONS[@]} - 1 )); index >= 0; index--)); do
read -r version_spec version1 version2 <<< "${WHITELIST_VERSIONS[${index}]}"
case ${version_spec} in
"<>")
deps[$index]="( <=media-sound/spotify-${version2} >=media-sound/spotify-${version1} )"
SPOTIFY_VERSIONS+="${version1} -> ${version2}"
;;
"~")
deps[$index]="~media-sound/spotify-${version1}"
SPOTIFY_VERSIONS+="${version1}"
;;
*)
die "Invalid version specifier in WHITELIST_VERSIONS"
;;
esac
if [[ ${index} == 0 ]]; then
SPOTIFY_VERSIONS+=". "
elif [[ ${index} == 1 ]]; then
SPOTIFY_VERSIONS+=" and "
else
SPOTIFY_VERSIONS+=", "
fi
done
RDEPEND=" || ( ${deps[@]} )"
}
whitelist_versions
DESCRIPTION="Commandline tool to customize Spotify client."
HOMEPAGE="https://spicetify.app/"
SRC_URI="
https://github.com/spicetify/spicetify-cli/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://gitlab.com/api/v4/projects/37881342/packages/generic/${PN}/${PV}/${P}-deps.tar.xz
"
LICENSE="Apache-2.0 BSD LGPL-2.1 MIT"
SLOT="0"
KEYWORDS="~amd64"
# no tests
RESTRICT="test"
INSTALLDIR="/opt/${PN}"
src_compile() {
ego build -ldflags "-X main.version=${PV}"
}
src_install() {
insinto "${INSTALLDIR}"
doins -r {CustomApps,Extensions,Themes,jsHelper,spicetify-cli}
dobin "${FILESDIR}/spicetify"
fperms +x "${INSTALLDIR}/spicetify-cli"
}
pkg_postinst() {
elog "Spicetify requires a Spotify install that it can modify."
elog "To give read and write permissions to everyone on the system to run the following commands."
elog "# chmod a+wr /opt/spotify/spotify-client"
elog "# chmod a+wr /opt/spotify/spotify-client/Apps -R"
elog ""
elog "Spicetify compatibility is limited to the following Spotify versions:"
elog " ${SPOTIFY_VERSIONS}"
elog ""
elog "Otherwise you can install spotify to a user modifiable location like as a flatpak:"
elog " https://spicetify.app/docs/advanced-usage/installation#spotify-installed-from-flatpak"
elog ""
elog "To install themes see:"
elog " https://spicetify.app/docs/advanced-usage/themes"
}