diff options
author | turret <turret@duck.com> | 2023-09-05 19:30:18 -0500 |
---|---|---|
committer | turret <turret@duck.com> | 2023-09-05 19:30:18 -0500 |
commit | 7efbb2b8ea9b9942e16dbaa8ea9eca60fd938a67 (patch) | |
tree | 76ac2383585dff9f0cff0fe52722a0f19156844e /games-util/grapejuice/grapejuice-7.19.8.ebuild | |
parent | 89fb24b9f329b7c96359413c78d603cedb081cc6 (diff) | |
download | portage-overlay-7efbb2b8ea9b9942e16dbaa8ea9eca60fd938a67.tar.gz portage-overlay-7efbb2b8ea9b9942e16dbaa8ea9eca60fd938a67.tar.bz2 portage-overlay-7efbb2b8ea9b9942e16dbaa8ea9eca60fd938a67.zip |
games-util/grapejuice: version bump 7.20.11
Signed-off-by: turret <turret@duck.com>
Diffstat (limited to 'games-util/grapejuice/grapejuice-7.19.8.ebuild')
-rw-r--r-- | games-util/grapejuice/grapejuice-7.19.8.ebuild | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/games-util/grapejuice/grapejuice-7.19.8.ebuild b/games-util/grapejuice/grapejuice-7.19.8.ebuild deleted file mode 100644 index d0253bb..0000000 --- a/games-util/grapejuice/grapejuice-7.19.8.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit xdg optfeature - -DESCRIPTION="A Wine+Roblox management application" -HOMEPAGE="https://gitlab.com/brinkervii/grapejuice.git" - -if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://gitlab.com/brinkervii/grapejuice.git" - EGIT_BRANCH="staging" -else - SRC_URI="https://gitlab.com/brinkervii/grapejuice/-/archive/v${PV}/grapejuice-v${PV}.tar.bz2" - KEYWORDS="-* ~amd64" -fi - -LICENSE="GPL-3" -SLOT="0" -RESTRICT="mirror" - -DEPEND="dev-libs/gobject-introspection - dev-python/pip - dev-util/desktop-file-utils - dev-util/gtk-update-icon-cache - dev-vcs/git - sys-devel/gettext - x11-apps/mesa-progs - x11-libs/cairo - x11-libs/gtk+ - x11-misc/shared-mime-info - x11-misc/xdg-user-dirs - x11-misc/xdg-utils - - dev-python/click - dev-python/packaging - dev-python/psutil - dev-python/pydantic - dev-python/pygobject - dev-python/requests - dev-python/setuptools - dev-python/unidecode - dev-python/wheel" - -RDEPEND=" - ${DEPEND} - virtual/wine" - -src_unpack() { - default - if [[ ${PV} == *9999* ]]; then - git-r3_src_unpack - else - mv "${WORKDIR}/grapejuice-v${PV}" "${S}" || die - fi -} - -src_prepare() { - default - sed -i \ - -e 's/"--target"/"--no-build-isolation",\n\t\t"--target"/' \ - src/grapejuice_packaging/builders/linux_package_builder.py || die -} - -src_compile() { - cd "${S}" - export PYTHONPATH="${S}/src" - python3 -m grapejuice_packaging linux_package || die -} - -src_install() { - export PYTHON_VERSION=$(python3 -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")') - tar -xf "${S}/dist/linux_package"/*.tar.gz -C "${D}" || die - mv "${D}/usr/lib/python3/dist-packages" "${D}/usr/lib/python${PYTHON_VERSION}" || die - rm -r "${D}/usr/lib/python3" || die - default -} - -pkg_postinst() { - optfeature "Required for PRIME systems running XOrg, where XRandR based profiling is desired" x11-apps/xrandr -} |