diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-11-13 07:10:54 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-11-13 07:10:54 +0000 |
| commit | 0a3f5bd985c689ffb11ac15fe58ae187e717fc98 (patch) | |
| tree | c8d0aff623b7d5b4f151e006d6c104a7a9319375 /games-strategy | |
| parent | ac942086f3636e423a33fc17436d1ae2e2764ec1 (diff) | |
| download | baldeagleos-repo-0a3f5bd985c689ffb11ac15fe58ae187e717fc98.tar.gz baldeagleos-repo-0a3f5bd985c689ffb11ac15fe58ae187e717fc98.tar.xz baldeagleos-repo-0a3f5bd985c689ffb11ac15fe58ae187e717fc98.zip | |
Adding metadata
Diffstat (limited to 'games-strategy')
| -rw-r--r-- | games-strategy/freeorion/Manifest | 1 | ||||
| -rw-r--r-- | games-strategy/freeorion/freeorion-0.5.1.ebuild | 126 | ||||
| -rw-r--r-- | games-strategy/naev/Manifest | 1 | ||||
| -rw-r--r-- | games-strategy/naev/naev-0.12.5.ebuild | 102 |
4 files changed, 0 insertions, 230 deletions
diff --git a/games-strategy/freeorion/Manifest b/games-strategy/freeorion/Manifest index 267bab50d168..f1f56d2cd4c2 100644 --- a/games-strategy/freeorion/Manifest +++ b/games-strategy/freeorion/Manifest @@ -1,2 +1 @@ DIST FreeOrion-v0.5.1.1_Source.tar.gz 156827341 BLAKE2B 5baf826cb68eb6f500c083bf0716e48639a21d129532be549441c713e3dff2eaaf7669e0a3a8655e76aeab8ce79fecc41f271fe73f951d4a02b8e7233462ce60 SHA512 1876eacc5c5dd3e2e3d830088cce2fbe2db40d317eaefeedaba5567dfd218f296a15305e5ec5bd9a91d7ef53a7699fe672972784a1cbd0f7003bb32cdb34b52c -DIST FreeOrion_v0.5.1_Source.tar.gz 154915100 BLAKE2B 5097fed26443cd076d03af05816148bf2923b86d4719b86e4593b1bca383af222db6f105e3b4a4b531188558305140e9999a80c7550959adaa65cf08f5bb6b5e SHA512 253deba1a90bd4fa7e33423e0148b22ee5234e47007fef9cee66d617caaa5794e2a600e057574c79caa7058557d51d290c5161e9dfa3d8dabe4ebc5da85b8233 diff --git a/games-strategy/freeorion/freeorion-0.5.1.ebuild b/games-strategy/freeorion/freeorion-0.5.1.ebuild deleted file mode 100644 index 970caad119bb..000000000000 --- a/games-strategy/freeorion/freeorion-0.5.1.ebuild +++ /dev/null @@ -1,126 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) -inherit check-reqs cmake flag-o-matic multiprocessing python-single-r1 xdg - -DESCRIPTION="Free turn-based space empire and galactic conquest game" -HOMEPAGE="https://www.freeorion.org/" -SRC_URI="https://github.com/freeorion/freeorion/releases/download/v${PV}/FreeOrion_v${PV}_Source.tar.gz" -S=${WORKDIR}/src-tarball - -LICENSE="GPL-2+ CC-BY-SA-3.0 LGPL-2.1+" -SLOT="0" -KEYWORDS="~amd64" -IUSE="+client doc test" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RESTRICT="!test? ( test )" - -DEPEND=" - ${PYTHON_DEPS} - $(python_gen_cond_dep 'dev-libs/boost:=[${PYTHON_USEDEP},nls,python,zlib]') - client? ( - media-libs/freetype - media-libs/glew:0= - media-libs/libglvnd - media-libs/libpng:= - media-libs/libsdl2[opengl,video] - media-libs/libvorbis - media-libs/openal - ) -" -RDEPEND=" - ${DEPEND} - client? ( - media-fonts/dejavu - media-fonts/roboto - ) -" -BDEPEND=" - ${PYTHON_DEPS} - doc? ( - app-text/doxygen - media-gfx/graphviz - ) - test? ( $(python_gen_cond_dep 'dev-python/pytest[${PYTHON_USEDEP}]') ) -" - -freeorion_check-reqs() { - # cc1plus processes may suddenly use ~1.5GB all at once early on (2+GB - # if debug symbols) then far less for the rest, check minimal jobs*1.5 - local CHECKREQS_MEMORY=$(($(makeopts_jobs)*1500))M - check-reqs_${EBUILD_PHASE_FUNC} -} - -pkg_pretend() { - freeorion_check-reqs -} - -pkg_setup() { - freeorion_check-reqs - python-single-r1_pkg_setup -} - -src_prepare() { - cmake_src_prepare - - sed -i 's/-O3//' CMakeLists.txt || die - - cmake_comment_add_subdirectory check #904124 -} - -src_configure() { - filter-lto # -Werror=odr issues - - local mycmakeargs=( - -DCCACHE_PROGRAM=no - -DBUILD_CLIENT_GG=$(usex client) - -DBUILD_CLIENT_GODOT=no # TODO? - -DBUILD_TESTING=$(usex test) - - # temporary for doc/CMakeLists.txt which is using the old variable - -DPYTHON_EXECUTABLE="${PYTHON}" - ) - - cmake_src_configure -} - -src_compile() { - cmake_src_compile all $(usev doc) -} - -src_test() { - local CMAKE_SKIP_TESTS=( - # needs looking into but failure does not seem(?) to affect runtime, - # try to remove on bump - TestChecksum - ) - - cmake_src_test -j1 # avoid running 2 conflicting servers - - local EPYTEST_DESELECT=( - # broken with >=3.11 but is not known to cause issues, skip for now - tests/AI/save_game_codec/test_savegame_manager.py::test_setstate_call - ) - - epytest -o cache_dir="${T}"/pytest_cache default/python/tests -} - -src_install() { - local DOCS=( ChangeLog.md README.md ) - cmake_src_install - - use doc && dodoc -r "${BUILD_DIR}"/doc/cpp-apidoc/html - - if use client; then - local font - for font in roboto/Roboto-{Bold,Regular}.ttf dejavu/DejaVuSans{-Bold,}.ttf; do - dosym -r /usr/share/{fonts/${font%/*},${PN}/default/data/fonts}/${font##*/} - done - rm -- "${ED}"/usr/share/${PN}/default/data/fonts/LICENSE.{Roboto,DejaVu} || die - else - rm -r -- "${ED}"/usr/share/freeorion/default/data/fonts || die - fi -} diff --git a/games-strategy/naev/Manifest b/games-strategy/naev/Manifest index c0766c4174a3..04e391fe118c 100644 --- a/games-strategy/naev/Manifest +++ b/games-strategy/naev/Manifest @@ -1,2 +1 @@ -DIST naev-0.12.5-source.tar.xz 466103348 BLAKE2B 0e327be29ed4059d21afc2c4aaf80b345a23c1e23068bbc22a66d49794fe2341890d19d4b87a159cb5d3191ee679b753cf3bf79ba61a6835e577541965eca304 SHA512 1f30a674c8fd32a1d52b62b60ac032865993a513284b76417f00f00c30747475af914fb721410c8e378b154e6e4475414d5db3ea8f543a2eea2b3d37d83fecf0 DIST naev-0.12.6-source.tar.xz 466148336 BLAKE2B 3f5e7e9613a711537171ca7b0cf8f190681a2febb94ef1ff9edcc5e4e9f701e9744c4ffbcf958ce8f3bc862214b35bcf2b690f7e3bd15ef7fa3b62dcfe22b21a SHA512 4d28e9caa26e4c6328b33f17e7c101bc80c6f30540f8d148e7441a9193a3a1a7ee647d501acde7b72b60a9e60ef66774363fdeacefa7c2b7522e278ed44017d2 diff --git a/games-strategy/naev/naev-0.12.5.ebuild b/games-strategy/naev/naev-0.12.5.ebuild deleted file mode 100644 index d7a40bf5a8ad..000000000000 --- a/games-strategy/naev/naev-0.12.5.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LUA_COMPAT=( lua5-{1,3,4} luajit ) -PYTHON_COMPAT=( python3_{10..14} ) -inherit lua-single meson python-any-r1 xdg - -DESCRIPTION="2D space trading and combat game, in a similar vein to Escape Velocity" -HOMEPAGE="https://naev.org/" -SRC_URI="https://github.com/naev/naev/releases/download/v${PV}/${P}-source.tar.xz" - -LICENSE=" - GPL-3+ - Apache-2.0 BSD BSD-2 CC-BY-2.0 CC-BY-3.0 CC-BY-4.0 CC-BY-SA-3.0 - CC-BY-SA-4.0 CC0-1.0 GPL-2+ MIT OFL-1.1 public-domain -" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc" -REQUIRED_USE="${LUA_REQUIRED_USE}" - -# tests are very basic, equivalent to just starting the game and checking if -# can see the main menu -- but this breaks easily with software rendering and -# some Xorg/mesa versions, simpler to do manually than try to keep this working -RESTRICT="test" - -# dlopen: libglvnd -RDEPEND=" - ${LUA_DEPS} - app-text/cmark:= - dev-games/physfs - dev-libs/libpcre2:= - dev-libs/libunibreak:= - dev-libs/libxml2:= - dev-libs/libyaml - dev-libs/nativefiledialog-extended - media-libs/freetype:2 - media-libs/libglvnd - media-libs/libsdl2[joystick,opengl,video] - media-libs/libvorbis - media-libs/openal - media-libs/sdl2-image[png,webp] - net-libs/enet:1.3= - sci-libs/cholmod - sci-libs/cxsparse - sci-libs/openblas - sci-libs/suitesparse - sci-mathematics/glpk:= - virtual/libintl -" -DEPEND="${RDEPEND}" -BDEPEND=" - $(python_gen_any_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]') - sys-devel/gettext - doc? ( - app-text/doxygen - dev-lua/ldoc - media-gfx/graphviz - ) -" - -python_check_deps() { - python_has_version "dev-python/pyyaml[${PYTHON_USEDEP}]" -} - -pkg_setup() { - lua-single_pkg_setup - python-any-r1_pkg_setup -} - -src_prepare() { - default - - # don't probe OpenGL for tests (avoids sandbox violations, bug #829369) - sed -i "/subdir('glcheck')/d" test/meson.build || die -} - -src_configure() { - local emesonargs=( - # *can* do lua5-1 but upstream uses+test luajit most (bug #946881) - -Dluajit=enabled - $(meson_feature doc docs_c) - $(meson_feature doc docs_lua) - ) - - meson_src_configure -} - -src_install() { - local DOCS=( CHANGELOG Readme.md ) - meson_src_install - - if use doc; then - dodir /usr/share/doc/${PF}/html - mv -- "${ED}"/usr/{doc/naev/{c,lua},share/doc/${PF}/html} || die - rm -r -- "${ED}"/usr/doc || die - fi - - rm -r -- "${ED}"/usr/share/doc/naev || die -} |
