From e2d723ac54e1c7df506a776098aa8f150d227c54 Mon Sep 17 00:00:00 2001 From: Alfred Wingate Date: Sun, 10 Dec 2023 04:16:09 +0200 Subject: [PATCH] app-misc/spicetify-cli: add 2.28.1 Signed-off-by: Alfred Wingate --- app-misc/spicetify-cli/Manifest | 2 + .../spicetify-cli/spicetify-cli-2.28.1.ebuild | 97 +++++++++++++++++++ 2 files changed, 99 insertions(+) create mode 100644 app-misc/spicetify-cli/spicetify-cli-2.28.1.ebuild diff --git a/app-misc/spicetify-cli/Manifest b/app-misc/spicetify-cli/Manifest index df9094e..a2fb7e7 100644 --- a/app-misc/spicetify-cli/Manifest +++ b/app-misc/spicetify-cli/Manifest @@ -6,3 +6,5 @@ DIST spicetify-cli-2.27.2-deps.tar.xz 5132028 BLAKE2B 760f47a6369d90bd54e01fa84d DIST spicetify-cli-2.27.2.tar.gz 2041673 BLAKE2B 4dafa1f31fb3575d083d21bbe2e0a70f14810e464223cb878178a164a127514fccea1c8ec169e42d79f58265ad46ec4340c3a0d957c4301f61351f07fbf1643d SHA512 e71b045c564a4887d040229ae9d1d651f769f6b6b8c905f9680e768e7c5b7ea4c441b8f32d1599e178e0cfd5d004af029eafa75fa6ba73a15d91e2ab89514702 DIST spicetify-cli-2.28.0-deps.tar.xz 5167840 BLAKE2B 7dfc76e9e2156a6b6e8525902bd793fe312e3067e6b7cf5bb12ca7dff5050869ae0a09c5953f4ae7d48ab8fc63e0c32c9de37feec02d361200bf70cd52db5f10 SHA512 ef0e7ab215fed48060cbd72f80ab0e4e8801261c3cc4fde019b469656ffdc36badd7ded7b844cd855467b4d2f5af725ba2a626d042813ae43bc32afbeb39fb4b DIST spicetify-cli-2.28.0.tar.gz 2041974 BLAKE2B b2dc56e11e2056f64f0316d338dcaeb0a896b1c28c33810ebe6f6c594c543cab83a61968dcd1231ff9f819cc86cf04ea6212df07045e3a1f1d32bc2f4ca80606 SHA512 23dbac16bdb26dcacd987b120eb82b746ba9dafad7eb425e60a9cea3abb2c4cdc4b87376dedcdbf28c0268d3d55a39c15cebad6411f9f7ba4810644feb90abb7 +DIST spicetify-cli-2.28.1-deps.tar.xz 5168592 BLAKE2B b32e9905f338f82fc46ce41af56b5195ea034f31b2a2a8da9ac98367ccfd03f4d12f430a251664354507955d08296ad001bb025019dc754c4d09d291a06ad002 SHA512 4d276c2ca678622700939a80daa80c334c7818c0ad3290eb10f5bc1eca32e62d276fbff282307d0a8a6267dbe67446e58b1d6730681749d73b92326f01ddb869 +DIST spicetify-cli-2.28.1.tar.gz 2042062 BLAKE2B 82b55d0c2ebe1669a8ebf14874c8eb934e08a48e61b6eea88ac683c16a09e20cedd324e92b71fdea0683c78597513789ca8f7b043bb985be0c87add79ffe57da SHA512 aa22bb51826d0ff2ebbd47029bc65eb9f3b6431851f70853977c54e4aad0317f831ca74e48dd4e1733f65e40a728fc11e356d7163b00f48b52df8cb6a2a96296 diff --git a/app-misc/spicetify-cli/spicetify-cli-2.28.1.ebuild b/app-misc/spicetify-cli/spicetify-cli-2.28.1.ebuild new file mode 100644 index 0000000..a1a4ca4 --- /dev/null +++ b/app-misc/spicetify-cli/spicetify-cli-2.28.1.ebuild @@ -0,0 +1,97 @@ +# 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.8 1.2.26" +) + +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" + + if $(has_version -r ">=media-sound/spotify-1.2.25"); then + elog "" + elog "The New Releases custom app no longer works with Spotify 1.2.25 and higher. As an alternative," + elog "please use What's New which was created by Spotify and can be enabled via Experimental Features" + elog "if it isn't already enabled." + fi +}