[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#53144] [PATCH 03/13] gnu: minetest-mesecons: Follow new versioning
From: |
Maxime Devos |
Subject: |
[bug#53144] [PATCH 03/13] gnu: minetest-mesecons: Follow new versioning conventions. |
Date: |
Sun, 9 Jan 2022 19:10:05 +0000 |
* gnu/packages/minetest.scm (minetest-mesecons): Use version from ContentDB.
---
gnu/packages/minetest.scm | 53 ++++++++++++++++++---------------------
1 file changed, 25 insertions(+), 28 deletions(-)
diff --git a/gnu/packages/minetest.scm b/gnu/packages/minetest.scm
index 56892a5aff..fd68877330 100644
--- a/gnu/packages/minetest.scm
+++ b/gnu/packages/minetest.scm
@@ -320,40 +320,37 @@ (define-public minetest-homedecor-modpack
(properties `((upstream-name . "VanessaE/homedecor_modpack")))))
(define-public minetest-mesecons
- ;; The release on ContentDB does not have its own version number.
- (let ((commit "db5879706d04d3480bc4863ce0c03fa73e5f10c7")
- (revision "0"))
- (package
- (name "minetest-mesecons")
- (version (git-version "1.2.1" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/minetest-mods/mesecons")
- (commit commit)))
- (sha256
- (base32 "04m9s9l3frw1lgki41hgvjsw2zkrvfv0sy750b6j12arzb3lv645"))
- (file-name (git-file-name name version))))
- (build-system minetest-mod-build-system)
- (home-page "https://mesecons.net")
- (synopsis
- "Digital circuitry for Minetest, including wires, buttons and lights")
- (description
- "Mesecons is a mod for Minetest implementing various items related
+ (package
+ (name "minetest-mesecons")
+ (version "2021-07-25")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/minetest-mods/mesecons")
+ (commit "db5879706d04d3480bc4863ce0c03fa73e5f10c7")))
+ (sha256
+ (base32 "04m9s9l3frw1lgki41hgvjsw2zkrvfv0sy750b6j12arzb3lv645"))
+ (file-name (git-file-name name version))))
+ (build-system minetest-mod-build-system)
+ (home-page "https://mesecons.net")
+ (synopsis
+ "Digital circuitry for Minetest, including wires, buttons and lights")
+ (description
+ "Mesecons is a mod for Minetest implementing various items related
to digital circuitry, such as wires, buttons, lights and programmable
controllers. Among other things, there are also pistons, solar panels,
pressure plates and note blocks.
Mesecons has a similar goal to Redstone in Minecraft, but works in its own way,
with different rules and mechanics.")
- ;; LGPL for code, CC-BY-SA for textures.
- ;; The README.md and COPYING.txt disagree about the "+" in
license:lgpl3+.
- ;; For now, assume README.md is correct. Upstream has been asked to
- ;; correct the inconsistency:
- ;; <https://github.com/minetest-mods/mesecons/issues/575>.
- (license (list license:lgpl3+ license:cc-by-sa3.0))
- (properties `((upstream-name . "Jeija/mesecons"))))))
+ ;; LGPL for code, CC-BY-SA for textures.
+ ;; The README.md and COPYING.txt disagree about the "+" in license:lgpl3+.
+ ;; For now, assume README.md is correct. Upstream has been asked to
+ ;; correct the inconsistency:
+ ;; <https://github.com/minetest-mods/mesecons/issues/575>.
+ (license (list license:lgpl3+ license:cc-by-sa3.0))
+ (properties `((upstream-name . "Jeija/mesecons")))))
(define-public minetest-mineclone
(package
--
2.34.0
- [bug#53144] [PATCH 0/13] Make more git-using packages auto-updatable, Maxime Devos, 2022/01/09
- [bug#53144] [PATCH 01/13] doc: Give some tips on Minetest packaging., Maxime Devos, 2022/01/09
- [bug#53144] [PATCH 02/13] gnu: minetest-ethereal: Follow new versioning conventions., Maxime Devos, 2022/01/09
- [bug#53144] [PATCH 06/13] gnu: minetest-ethereal: Update to 2022-01-05., Maxime Devos, 2022/01/09
- [bug#53144] [PATCH 03/13] gnu: minetest-mesecons: Follow new versioning conventions.,
Maxime Devos <=
- [bug#53144] [PATCH 05/13] gnu: minetest: Remove obsolete comments about version numbers., Maxime Devos, 2022/01/09
- [bug#53144] [PATCH 11/13] git: Support resolving references without cloning., Maxime Devos, 2022/01/09
- [bug#53144] [PATCH 13/13] gnu: minetest-throwing-arrows: Use 'latest-git' updater., Maxime Devos, 2022/01/09
- [bug#53144] [PATCH 07/13] gnu: minetest-mesecons: Update to 2021-11-28., Maxime Devos, 2022/01/09
- [bug#53144] [PATCH 04/13] gnu: minetest-throwing: Follow new versioning conventions., Maxime Devos, 2022/01/09
- [bug#53144] [PATCH 08/13] gnu: minetest-mobs: Update to 2022-01-03., Maxime Devos, 2022/01/09
- [bug#53144] [PATCH 09/13] doc: Document the Minetest importer., Maxime Devos, 2022/01/09
- [bug#53144] [PATCH 10/13] upstream: Support incrementing the revision of 'git-version'., Maxime Devos, 2022/01/09