logo

overlay

My own overlay for experimentations, use with caution, no support is provided
commit: 286a956fccd22a46236bdceea337043d1be6911c
parent 69f32115ad7c0c4e52c2ffd1d389d597130958ee
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue, 27 Oct 2020 08:21:42 +0100

games-arcade/oshu: Remove, use ::gentoo one

Diffstat:

Dgames-arcade/oshu/Manifest3---
Dgames-arcade/oshu/metadata.xml11-----------
Dgames-arcade/oshu/oshu-1.6.0.ebuild26--------------------------
Dgames-arcade/oshu/oshu-2.0.0.ebuild66------------------------------------------------------------------
Dgames-arcade/oshu/oshu-9999.ebuild66------------------------------------------------------------------
5 files changed, 0 insertions(+), 172 deletions(-)

diff --git a/games-arcade/oshu/Manifest b/games-arcade/oshu/Manifest @@ -1,3 +0,0 @@ -DIST oshu-1.6.0.tar.gz 2459889 BLAKE2B 568b5bf00da50ce215b6156b36d0d1d894259abebeeba725103601f7f5d3a82705d308a7986f5e705b0d24469e6866207836eec9e1b9bdd89df291a4e9c372cd SHA512 e1f76a05d7ba40265dd58f6fe8106ed6293385870c7e77ff6bbd3dd0e9b5f7bc45f8f0b9c3729a6781c04289d54c76f9698bb659ba50fd35e609de23ecb02aa8 -DIST oshu-2.0.0.tar.gz 144088 BLAKE2B c4383746624f4de62e158a2f94d4e5c1a3e2f037fd05d80607932414f20a031103bd73f108644a93faadf61c21f3d2505da3afd2ea7ea43bd59e32966724928b SHA512 ed2b8294b06d239948c563135d997b422191be681ff86714a244ca64079251508a5a62e23cf3ae1e0ac2b3128b6401901233714eab7787989296ca1700192643 -DIST oshu-skin-v1.tar.gz 2224947 BLAKE2B 0b463133dd7ab54421551627d12932f5257848b1130d57af8c2ff6b6836a49c9322b8f2f7e95de540909390d0139e547650a6bb321614cf92fac464b09075674 SHA512 d562294ac5e122a9d9971e3ab92f6168d848177cc5e22a94bbc450fde2b3b14007796a24d33722da9b6675467b109ce128ba94dca5dcc7c61c91c1e373032618 diff --git a/games-arcade/oshu/metadata.xml b/games-arcade/oshu/metadata.xml @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>contact@hacktivis.me</email> - <name>Haelwenn (lanodan) Monnier</name> - </maintainer> - <use> - <flag name="osu-skin">Include more complete osu-skin (other is minimal)</flag> - </use> -</pkgmetadata> diff --git a/games-arcade/oshu/oshu-1.6.0.ebuild b/games-arcade/oshu/oshu-1.6.0.ebuild @@ -1,26 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Lightweight osu! port" -HOMEPAGE="https://github.com/fmang/oshu" -SRC_URI="https://www.mg0.fr/oshu/releases/${P}.tar.gz" -KEYWORDS="~amd64 ~x86" -LICENSE="GPL-3 CC-BY-NC-4.0" -SLOT="0" -IUSE="libav" - -RDEPEND=" - >=media-libs/libsdl2-2.0.5:= - media-libs/sdl2-image:=[jpeg,png] - x11-libs/cairo:= - x11-libs/pango:= - !libav? ( media-video/ffmpeg:= ) - libav? ( media-video/libav:= ) -" - -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" diff --git a/games-arcade/oshu/oshu-2.0.0.ebuild b/games-arcade/oshu/oshu-2.0.0.ebuild @@ -1,66 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="Lightweight osu! port" -HOMEPAGE="https://github.com/fmang/oshu" -SRC_URI="https://www.mg0.fr/oshu/releases/${P}.tar.gz - osu-skin? ( https://www.mg0.fr/oshu/skins/osu-v1.tar.gz -> ${PN}-skin-v1.tar.gz )" -KEYWORDS="~amd64 ~x86" -LICENSE="GPL-3 CC-BY-NC-4.0" -SLOT="0" -IUSE="libav osu-skin" - -CMAKE_MIN_VERSION="3.9.0" -RDEPEND=" - >=media-libs/libsdl2-2.0.5:= - media-libs/sdl2-image:=[jpeg,png] - x11-libs/cairo:= - x11-libs/pango:= - !libav? ( media-video/ffmpeg:= ) - libav? ( media-video/libav:= ) -" - -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" - -src_configure() { - if use osu-skin; then - local mycmakeargs=( - "-DOSHU_DEFAULT_SKIN=osu" - "-DOSHU_SKINS=osu;minimal" - ) - else - # default values; I prefer to be sure - local mycmakeargs=( - "-DOSHU_DEFAULT_SKIN=minimal" - "-DOSHU_SKINS=minimal" - ) - fi - - cmake-utils_src_configure -} - -src_compile() { - if use osu-skin; then - mkdir -p "${BUILD_DIR}/share/skins" || die - cp "${DISTDIR}/${PN}-skin-v1.tar.gz" "${BUILD_DIR}/share/skins/osu.tar.gz" || die - fi - - default -} - -pkg_postinst() { - xdg_desktop_database_update - xdg_mimeinfo_database_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_mimeinfo_database_update -} diff --git a/games-arcade/oshu/oshu-9999.ebuild b/games-arcade/oshu/oshu-9999.ebuild @@ -1,66 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils git-r3 - -DESCRIPTION="Lightweight osu! port" -HOMEPAGE="https://github.com/fmang/oshu" -SRC_URI="osu-skin? ( https://www.mg0.fr/oshu/skins/osu-v1.tar.gz -> ${PN}-skin-v1.tar.gz )" -KEYWORDS="" -LICENSE="GPL-3 CC-BY-NC-4.0" -SLOT="0" -IUSE="libav osu-skin" - -EGIT_REPO_URI="https://github.com/fmang/oshu.git" -CMAKE_MIN_VERSION="3.9.0" - -RDEPEND=" - >=media-libs/libsdl2-2.0.5:= - media-libs/sdl2-image:=[jpeg,png] - x11-libs/cairo:= - x11-libs/pango:= - !libav? ( media-video/ffmpeg:= ) - libav? ( media-video/libav:= ) -" - -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" - -src_configure() { - if use osu-skin; then - local mycmakeargs=( - "-DOSHU_DEFAULT_SKIN=osu" - "-DOSHU_SKINS=osu;minimal" - ) - else - # default values; I prefer to be sure - local mycmakeargs=( - "-DOSHU_DEFAULT_SKIN=minimal" - "-DOSHU_SKINS=minimal" - ) - fi - - cmake-utils_src_configure -} - -src_compile() { - if use osu-skin; then - mkdir -p "${BUILD_DIR}/share/skins" || die - cp "${DISTDIR}/${PN}-skin-v1.tar.gz" "${BUILD_DIR}/share/skins/osu.tar.gz" || die - fi - - default -} -pkg_postinst() { - xdg_desktop_database_update - xdg_mimeinfo_database_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_mimeinfo_database_update -}