Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: games-arcade/taisei/
Date: Mon, 03 May 2021 18:06:46
Message-Id: 1620063803.9994757b89e5e5f261dd28e28fa508a12b2137e9.andrewammerlaan@gentoo
1 commit: 9994757b89e5e5f261dd28e28fa508a12b2137e9
2 Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
3 AuthorDate: Mon May 3 17:21:21 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Mon May 3 17:43:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9994757b
7
8 games-arcade/taisei: Version clean, 1.3.1
9
10 Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
11
12 games-arcade/taisei/Manifest | 1 -
13 games-arcade/taisei/taisei-1.3.1-r1.ebuild | 56 ------------------------------
14 2 files changed, 57 deletions(-)
15
16 diff --git a/games-arcade/taisei/Manifest b/games-arcade/taisei/Manifest
17 index cec7ddb69..1824917ec 100644
18 --- a/games-arcade/taisei/Manifest
19 +++ b/games-arcade/taisei/Manifest
20 @@ -1,2 +1 @@
21 -DIST taisei-v1.3.1.tar.xz 70763196 BLAKE2B ca1901ba0205f6771c087ee70222ceaa3c406a1c632a5f46df1fe4fe493c89af8b587e397551777cd956ab73b5104450356303d0ea0cb8d5cd1b6723ceb1d648 SHA512 5e6f364e67717091041a30103bf117bb5d7a6be76d3d9499b13e36fc190be8c2a0e7ceb582e1d106aa0c1acbb6e39b99a4873a0885af1ec2117ff6ff08e14e3c
22 DIST taisei-v1.3.2.tar.xz 70481856 BLAKE2B 608b5db6f17e2693539ce0742a1812633e91e901b3935b9e54f91514827642334f6cb6f0217aff713f1ff9dd01d971ae895ac8c98b0360f254b52d3e49bfae61 SHA512 9304c082106dfa1ffcf6c8fb7333e64755b1246ef50b9f49d3e64d167eb15575ac667ca658b1d7e247582e164e703e5817384556dd633f5516670d975817717d
23
24 diff --git a/games-arcade/taisei/taisei-1.3.1-r1.ebuild b/games-arcade/taisei/taisei-1.3.1-r1.ebuild
25 deleted file mode 100644
26 index 94ff5f565..000000000
27 --- a/games-arcade/taisei/taisei-1.3.1-r1.ebuild
28 +++ /dev/null
29 @@ -1,56 +0,0 @@
30 -# Copyright 2019-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7,8,9} )
36 -
37 -inherit meson python-any-r1 xdg
38 -
39 -if [[ ${PV} == *9999* ]]; then
40 - inherit git-r3
41 - EGIT_REPO_URI="https://github.com/taisei-project/taisei.git"
42 -else
43 - SRC_URI="https://github.com/taisei-project/taisei/releases/download/v${PV}/${PN}-v${PV}.tar.xz"
44 - KEYWORDS="~amd64"
45 - S="${WORKDIR}/${PN}-v${PV}"
46 -fi
47 -
48 -DESCRIPTION="Clone of the Touhou series, written in C using SDL/OpenGL/OpenAL."
49 -HOMEPAGE="https://taisei-project.org/"
50 -LICENSE="MIT CC-BY-4.0 CC0-1.0 public-domain"
51 -SLOT="0"
52 -
53 -IUSE="doc lto zip"
54 -
55 -DEPEND="
56 - media-libs/freetype:2
57 - >=media-libs/libpng-1.5
58 - media-libs/libsdl2
59 - media-libs/sdl2-mixer[opus]
60 - media-libs/libwebp
61 - sys-libs/zlib
62 - zip? ( dev-libs/libzip )
63 -"
64 -BDEPEND="
65 - >=dev-util/meson-0.49
66 - ${PYTHON_DEPS}
67 - doc? ( dev-python/docutils )"
68 -
69 -src_prepare() {
70 - if use doc; then
71 - sed -i "s/doc_path = join.*/doc_path = join_paths(datadir, \'doc\', \'${P}\')/" \
72 - meson.build || die "Failed changing doc_path"
73 - fi
74 - default
75 -}
76 -
77 -src_configure() {
78 - local emesonargs=(
79 - $(meson_use doc docs)
80 - $(meson_use lto b_lto)
81 - $(meson_use zip enable_zip)
82 - -Dstrip=false
83 - )
84 - meson_src_configure
85 -}