From debbugs-submit-bounces@debbugs.gnu.org Thu Dec 01 15:48:27 2022 Received: (at submit) by debbugs.gnu.org; 1 Dec 2022 20:48:27 +0000 Received: from localhost ([127.0.0.1]:41841 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p0qTr-0001d5-Gv for submit@debbugs.gnu.org; Thu, 01 Dec 2022 15:48:27 -0500 Received: from lists.gnu.org ([209.51.188.17]:50920) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p0qTq-0001cz-A5 for submit@debbugs.gnu.org; Thu, 01 Dec 2022 15:48:26 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p0qTo-0002Ai-W5 for guix-patches@gnu.org; Thu, 01 Dec 2022 15:48:26 -0500 Received: from planete-kraus.eu ([2a00:5881:4008:2810::309]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1p0qTm-0008Ka-OP for guix-patches@gnu.org; Thu, 01 Dec 2022 15:48:24 -0500 Received: from planete-kraus.eu (localhost.lan [127.0.0.1]) by planete-kraus.eu (OpenSMTPD) with ESMTP id 45a87b1f for ; Thu, 1 Dec 2022 20:48:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=planete-kraus.eu; h=from :date:subject:to:message-id:mime-version; s=dkim; bh=FRYOypuHKwo TAn2WKcAOWTSuA0A=; b=s21heJcjr6rOwp6MaMk+ZDyVgi2NxTPTJfJz9bELgHd W/VybrMqCP0MFJrVCinToie5SO4uNc8Pf4yvZQ2Wk3OB0CUDCnNAe0IegwiZx/3Z KqVikHkOjT5nnARBvblYqPKfGnkbpX77UdyFJ8vLHCHcKwNcxv2oAl8guxlIwSXQ = Received: by planete-kraus.eu (OpenSMTPD) with ESMTPSA id 5735b416 (TLSv1.3:AEAD-CHACHA20-POLY1305-SHA256:256:NO) for ; Thu, 1 Dec 2022 20:48:12 +0000 (UTC) From: Vivien Kraus Date: Thu, 1 Dec 2022 21:11:50 +0100 Subject: [PATCH] gnu: minetest: Add minetest-oneblock. To: guix-patches@gnu.org Message-ID: <6fbc1b962b6bd38bb09f073e9541c0ccce8a28ce.camel@planete-kraus.eu> MIME-Version: 1.0 User-Agent: Evolution 3.46.0 Received-SPF: pass client-ip=2a00:5881:4008:2810::309; envelope-from=vivien@planete-kraus.eu; helo=planete-kraus.eu X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/minetest.scm (minetest-oneblock): New variable. --- gnu/packages/minetest.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/minetest.scm b/gnu/packages/minetest.scm index f5671241a7..2c26ab08a8 100644 --- a/gnu/packages/minetest.scm +++ b/gnu/packages/minetest.scm @@ -746,3 +746,25 @@ (define-public minetest-basic-trains advtrains up to version 2.2.1.") (license (list license:cc-by-sa3.0 license:agpl3+)) (properties `((upstream-name . "orwell/basic_trains"))))) + +(define-public minetest-oneblock + (package + (name "minetest-oneblock") + (version "2022-09-01") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/NO411/oneblock") + (commit "3582c825137e61b3d2ae3d60b8b9746acd6dfe3d"))) + (sha256 + (base32 + "1pkdrj99qqwmz7c86w2mh081ynyxhiwv2rl01xjm1wfpazx5zhdg")) + (file-name (git-file-name name version)))) + (build-system minetest-mod-build-system) + (home-page "https://github.com/NO411/oneblock") + (synopsis "Build your island in the sky with random items!") + (description + "Build your island in the sky. Every 30 seconds you will receive a random +block or item from the oneblock to expand the island!") + (license license:gpl3) + (properties `((upstream-name . "NO11/oneblock"))))) base-commit: c7793b82efd3383a9f7adf0dfa82d71ee032e41b -- 2.38.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Dec 01 16:00:18 2022 Received: (at 59749) by debbugs.gnu.org; 1 Dec 2022 21:00:19 +0000 Received: from localhost ([127.0.0.1]:41897 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p0qfK-0001kV-JL for submit@debbugs.gnu.org; Thu, 01 Dec 2022 16:00:18 -0500 Received: from planete-kraus.eu ([89.234.140.182]:52354) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p0qfG-0001kN-F1 for 59749@debbugs.gnu.org; Thu, 01 Dec 2022 16:00:17 -0500 Received: from planete-kraus.eu (localhost.lan [127.0.0.1]) by planete-kraus.eu (OpenSMTPD) with ESMTP id eaa906c6 for <59749@debbugs.gnu.org>; Thu, 1 Dec 2022 21:00:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=planete-kraus.eu; h= message-id:subject:from:to:date:content-type :content-transfer-encoding:mime-version; s=dkim; bh=dE0CcV84CgV6 BKJLOCOrHYFLPvw=; b=D/K9avhHGA3eVzwlhJhRhdqAVKhFupUf7dWVcS3kNaq6 U/xvDxupx1YOEQpQXpbBGOOPouartESd/V2vsJqCehzUfh9mguSb/XZI0yu8BnCn seGgk08ypGEKTeB8eUi43AQsNwM3F2IKH41cv/8oAbvPqrc+R/kvld3iNHPZ+JY= Received: by planete-kraus.eu (OpenSMTPD) with ESMTPSA id 5bbea09c (TLSv1.3:AEAD-CHACHA20-POLY1305-SHA256:256:NO) for <59749@debbugs.gnu.org>; Thu, 1 Dec 2022 21:00:09 +0000 (UTC) Message-ID: <6911bcdeb8e1c960391cee0431351c7aa187b147.camel@planete-kraus.eu> Subject: Please add minetest-oneblock From: Vivien Kraus To: 59749@debbugs.gnu.org Date: Thu, 01 Dec 2022 22:00:06 +0100 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.0 MIME-Version: 1.0 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 59749 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Dear guix, oneblock is a Minetest mod where you sit on top of an indestructible block that generates random objects of the game every 30 seconds. It is very fun to play, especially when you have many many mods. It=E2=80=99s slo= w to start, because getting wood is rare enough that making a chest takes time. Other than that, it is pretty fun! Best regards, Vivien From debbugs-submit-bounces@debbugs.gnu.org Thu Dec 08 07:03:05 2022 Received: (at 59749-done) by debbugs.gnu.org; 8 Dec 2022 12:03:05 +0000 Received: from localhost ([127.0.0.1]:56382 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p3FcG-0008MI-Hn for submit@debbugs.gnu.org; Thu, 08 Dec 2022 07:03:04 -0500 Received: from eggs.gnu.org ([209.51.188.92]:45854) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p3FcF-0008Lo-LX for 59749-done@debbugs.gnu.org; Thu, 08 Dec 2022 07:03:03 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p3Fc9-000119-T8; Thu, 08 Dec 2022 07:02:57 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=FReogzHUQUZDo+fXUeyEG8eolrQUGQ7s2yKAriCWMhA=; b=VIxonMtDOxRfOajydaEU t6cIYyF7V/xGoVu4YC/Cc0cKPlTSbQJ1fpHxrkDy/K83B51Cb/cQ7SBp46vJDMpcdv9vNey4uA8/q aP5m64aHPYeTuh8Wry1OP9FLvJYmAZ5PdC2uM9qTddFJRnq+WonuymRzpNKBpLLjRe8Nz2c7PQiEv OQ4eOaLK17sdiAnRwzge6OosKw49rr+NmTF1SLBxTsmYLLcLSGVLkwE/sA4hNeTewih2wYw5a+EIY y224q+LIbqndFWlfjVYMgp2uO+Z26DDp9utcwG5Rxh67NBGQ6y7Lpp9RS+ufgGVgYjGy4iNlNcqB/ 4H2DLCV99OH+CA==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201] helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p3Fby-0002zO-Cm; Thu, 08 Dec 2022 07:02:57 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Vivien Kraus Subject: Re: bug#59749: [PATCH] gnu: minetest: Add minetest-oneblock. References: <6fbc1b962b6bd38bb09f073e9541c0ccce8a28ce.camel@planete-kraus.eu> Date: Thu, 08 Dec 2022 13:02:44 +0100 In-Reply-To: <6fbc1b962b6bd38bb09f073e9541c0ccce8a28ce.camel@planete-kraus.eu> (Vivien Kraus's message of "Thu, 1 Dec 2022 21:11:50 +0100") Message-ID: <87r0xadrx7.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 59749-done Cc: 59749-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, Applied with the changes below, thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/minetest.scm b/gnu/packages/minetest.scm index 2c26ab08a8..74c8475240 100644 --- a/gnu/packages/minetest.scm +++ b/gnu/packages/minetest.scm @@ -764,7 +764,8 @@ (define-public minetest-oneblock (home-page "https://github.com/NO411/oneblock") (synopsis "Build your island in the sky with random items!") (description - "Build your island in the sky. Every 30 seconds you will receive a random + "This package provides an extension of the Minetest game that lets you +build your island in the sky. Every 30 seconds you will receive a random block or item from the oneblock to expand the island!") - (license license:gpl3) + (license license:gpl3+) (properties `((upstream-name . "NO11/oneblock"))))) --=-=-=-- From unknown Fri Sep 19 09:03:57 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 05 Jan 2023 12:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator