Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/supertux/
Date: Sat, 07 May 2022 10:54:43
Message-Id: 1651920865.864b9d0084966c7812a9376b45bc26ff6cbbf885.soap@gentoo
1 commit: 864b9d0084966c7812a9376b45bc26ff6cbbf885
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 7 10:54:25 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat May 7 10:54:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=864b9d00
7
8 games-arcade/supertux: drop 0.6.2-r2
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 games-arcade/supertux/Manifest | 1 -
13 games-arcade/supertux/supertux-0.6.2-r2.ebuild | 70 --------------------------
14 2 files changed, 71 deletions(-)
15
16 diff --git a/games-arcade/supertux/Manifest b/games-arcade/supertux/Manifest
17 index 4fe1b6e31bdb..0af22cd61c13 100644
18 --- a/games-arcade/supertux/Manifest
19 +++ b/games-arcade/supertux/Manifest
20 @@ -1,2 +1 @@
21 -DIST SuperTux-v0.6.2-Source.tar.gz 174295862 BLAKE2B 1179a5ecf92dfb2ac56b87afe4fed21a2bdc1d7f91641fea8aafc2994ccfe49745420411f41b2145f06fa9714c73d75ecbc85160e85edcbd71c472026cefe708 SHA512 5baa783ee589b42a9bbce3740659dbb7b617ebfcc00c0a038c03d31b56700e3923c8548700ccebe42b325ca03bd85186bc5edef9f6580d93dc48d8aca88cbf74
22 DIST SuperTux-v0.6.3-Source.tar.gz 182065428 BLAKE2B c4acbe2c61306e6e462a375205b4e95af174c87dbc391f15211e1fac365ab51147d7a83d20a90e35f7d7a994c72b560631ddf1686fee2e1f937f97a711fb1003 SHA512 c6540bab1b3befbd975756031c4587e5569d9613d9539dc829c728b574d1a4da92816d6a7e68947b32963cc13d9b8b52312701c199138640e9f89e5885433798
23
24 diff --git a/games-arcade/supertux/supertux-0.6.2-r2.ebuild b/games-arcade/supertux/supertux-0.6.2-r2.ebuild
25 deleted file mode 100644
26 index 76a941ef3820..000000000000
27 --- a/games-arcade/supertux/supertux-0.6.2-r2.ebuild
28 +++ /dev/null
29 @@ -1,70 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -: ${CMAKE_MAKEFILE_GENERATOR:=emake}
36 -inherit cmake flag-o-matic
37 -
38 -MY_PV="${PV/_rc/-rc.}"
39 -MY_P="SuperTux-v${MY_PV}-Source"
40 -
41 -DESCRIPTION="A game similar to Super Mario Bros"
42 -HOMEPAGE="https://supertux.org/"
43 -SRC_URI="https://github.com/SuperTux/${PN}/releases/download/v${MY_PV}/${MY_P}.tar.gz"
44 -
45 -LICENSE="GPL-2+ GPL-3+ ZLIB MIT CC-BY-SA-2.0 CC-BY-SA-3.0"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~arm64 ~x86"
48 -IUSE="debug"
49 -
50 -# =media-libs/libsdl2-2.0.14-r0 can cause supertux binary to move entire
51 -# content of ${HOME} to ${HOME}/.local/share/supertux2/
52 -# DO NOT REMOVE THIS BLOCKER!!! See bug #764959
53 -RDEPEND="
54 - !=media-libs/libsdl2-2.0.14-r0
55 - >=dev-games/physfs-3.0
56 - dev-libs/boost:=[nls]
57 - media-libs/freetype
58 - media-libs/glew:=
59 - media-libs/libpng:0=
60 - >=media-libs/libsdl2-2.0.1[joystick,video]
61 - media-libs/libvorbis
62 - media-libs/openal
63 - >=media-libs/sdl2-image-2.0.0[png,jpeg]
64 - >=net-misc/curl-7.21.7
65 - virtual/opengl
66 -"
67 -DEPEND="${RDEPEND}"
68 -BDEPEND="
69 - virtual/pkgconfig
70 -"
71 -
72 -S="${WORKDIR}/${MY_P}"
73 -
74 -PATCHES=(
75 - "${FILESDIR}"/${PN}-0.5.0-tinygettext.patch
76 - "${FILESDIR}"/${PN}-0.6.0-{license,icon,obstack}.patch
77 -)
78 -
79 -src_prepare() {
80 - cmake_src_prepare
81 -
82 - # This is not a developer release so switch the logo to the non-dev one.
83 - sed -e 's@logo_dev@logo@' \
84 - -i data/images/objects/logo/logo.sprite || die
85 -}
86 -
87 -src_configure() {
88 - append-cxxflags -std=c++11
89 -
90 - local mycmakeargs=(
91 - -DWERROR=OFF
92 - -DINSTALL_SUBDIR_BIN=bin
93 - -DINSTALL_SUBDIR_DOC=share/doc/${PF}
94 - -DINSTALL_SUBDIR_SHARE=share/${PN}2
95 - -DENABLE_SQDBG="$(usex debug)"
96 - -DUSE_SYSTEM_PHYSFS=ON
97 - )
98 - cmake_src_configure
99 -}