guix-mirrors/gnu/packages/minetest.scm
Liliana Marie Prikler abbdfbb775
gnu: Rename minetest to luanti.
* gnu/packages/luanti.scm: New file.
(luanti, luanti-server, luanti-topic, luanti-moreores, luanti-sound-api-core)
(luanti-basic-materials, luanti-coloredwood, luanti-ethereal)
(luanti-homedecor-modpack, luanti-mesecons, luanti-mineclone, luanti-mobs)
(luanti-mobs-animal, luanti-mobs-monster, luanti-pipeworks, luanti-technic)
(luanti-throwing, luanti-throwing-arrows, luanti-worldedit)
(luanti-unifieddyes, luanti-unified-inventory, luanti-advtrains)
(luanti-basic-trains, luanti-oneblock, luanti-wielded-light): New variables.
* gnu/packages/minetest.scm:
(minetest, minetest-server, minetest-topic, minetest-moreores)
(minetest-sound-api-core, minetest-basic-materials, minetest-coloredwood)
(minetest-ethereal, minetest-homedecor-modpack, minetest-mesecons)
(minetest-mineclone, minetest-mobs, minetest-mobs-animal)
(minetest-mobs-monster, minetest-pipeworks, minetest-technic)
(minetest-throwing, minetest-throwing-arrows, minetest-worldedit)
(minetest-unifieddyes, minetest-unified-inventory, minetest-advtrains)
(minetest-basic-trains, minetest-oneblock, minetest-wielded-light): Deprecate
in favor of the above.
(minetest-game): Move to…
* gnu/packages/luanti.scm (minetest-game): … here.
* gnu/local.mk (GNU_SYSTEM_MODULES): Register luanti.scm.
* guix/build-system/luanti.scm: New file.
(luanti-mod-build-system): New public variable.
* guix/build-system/minetest.scm (minetest-mod-build-system): Deprecate in
favor of luanti-mod-build-system.
* guix/build/luanti-build-system.scm: New file, renamed from…
* guix/build/minetest-build-system.scm: … this. Deprecate in favor of
luanti-build-system.
* guix/import/luanti.scm: New file, renamed from guix/import/minetest.scm.
(%contentdb-api): Switch to “https://content.luanti.org/api/”.
(luanti-package?, latest-luanti-release, luanti->guix-package)
(luanti-recursive-import, %luanti-updater): New public variables.
* guix/import/minetest.scm (minetest-package?, latest-minetest-release)
(minetest->guix-package, minetest-recursive-import, %minetest-updater):
Deprecate in favor of the luanti variants above.
* guix/scripts/import/luanti.scm: New file, renamed from
guix/scripts/import/minetest.scm.
(guix-import-luanti): New public variable.
* guix/scripts/import/minetest.scm (guix-import-minetest): Deprecate in favor
of guix-import-luanti.
* tests/minetest.scm: Rename to…
* tests/luanti.scm: … this.
* Makefile.am (MODULES, SCM_TESTS): Adjust accordingly.
* etc/teams.scm (games): Adjust accordingly.
* CODEOWNERS: Adjust accordingly.
2025-07-13 13:54:01 +02:00

102 lines
3.9 KiB
Scheme
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2015, 2016 David Thompson <dthompson2@worcester.edu>
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2015, 2019 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2016, 2017, 2018, 2019 Kei Kebreau <kkebreau@posteo.net>
;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 20192021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2021 Trevor Hass <thass@okstate.edu>
;;; Copyright © 2020, 2021, 2022 Liliana Marie Prikler <liliana.prikler@gmail.com>
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
;;; Copyright © 2024 Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages minetest)
#:use-module (guix packages)
#:use-module (gnu packages luanti))
(define-public minetest
(deprecated-package "minetest" luanti))
(define-public minetest-server
(deprecated-package "minetest-server" luanti-server))
(define-public minetest-moreores
(deprecated-package "minetest-moreores" luanti-moreores))
(define-public minetest-sound-api-core
(deprecated-package "minetest-sound-api-core" luanti-sound-api-core))
(define-public minetest-basic-materials
(deprecated-package "minetest-basic-materials" luanti-basic-materials))
(define-public minetest-coloredwood
(deprecated-package "minetest-coloredwood" luanti-coloredwood))
(define-public minetest-ethereal
(deprecated-package "minetest-ethereal" luanti-ethereal))
(define-public minetest-homedecor-modpack
(deprecated-package "minetest-homedecor-modpack" luanti-homedecor-modpack))
(define-public minetest-mesecons
(deprecated-package "minetest-mesecons" luanti-mesecons))
(define-public minetest-mineclone
(deprecated-package "minetest-mineclone" luanti-mineclone))
(define-public minetest-mobs
(deprecated-package "minetest-mobs" luanti-mobs))
(define-public minetest-mobs-animal
(deprecated-package "minetest-mobs-animal" luanti-mobs-animal))
(define-public minetest-mobs-monster
(deprecated-package "minetest-mobs-monster" luanti-mobs-monster))
(define-public minetest-pipeworks
(deprecated-package "minetest-pipeworks" luanti-pipeworks))
(define-public minetest-technic
(deprecated-package "minetest-technic" luanti-technic))
(define-public minetest-throwing
(deprecated-package "minetest-throwing" luanti-throwing))
(define-public minetest-throwing-arrows
(deprecated-package "minetest-throwing-arrows" luanti-throwing-arrows))
(define-public minetest-worldedit
(deprecated-package "minetest-worldedit" luanti-worldedit))
(define-public minetest-unifieddyes
(deprecated-package "minetest-unifieddyes" luanti-unifieddyes))
(define-public minetest-unified-inventory
(deprecated-package "minetest-unified-inventory" luanti-unified-inventory))
(define-public minetest-advtrains
(deprecated-package "minetest-advtrains" luanti-advtrains))
(define-public minetest-basic-trains
(deprecated-package "minetest-basic-trains" luanti-basic-trains))
(define-public minetest-oneblock
(deprecated-package "minetest-oneblock" luanti-oneblock))
(define-public minetest-wielded-light
(deprecated-package "minetest-wielded-light" luanti-wielded-light))