From unknown Tue Aug 19 10:00:02 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#51046 <51046@debbugs.gnu.org> To: bug#51046 <51046@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add rdate. Reply-To: bug#51046 <51046@debbugs.gnu.org> Date: Tue, 19 Aug 2025 17:00:02 +0000 retitle 51046 [PATCH] gnu: Add rdate. reassign 51046 guix-patches submitter 51046 phodina severity 51046 normal tag 51046 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 05 18:45:49 2021 Received: (at submit) by debbugs.gnu.org; 5 Oct 2021 22:45:49 +0000 Received: from localhost ([127.0.0.1]:42060 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mXtC1-0000sU-AL for submit@debbugs.gnu.org; Tue, 05 Oct 2021 18:45:49 -0400 Received: from lists.gnu.org ([209.51.188.17]:46894) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mXtBw-0000sI-0G for submit@debbugs.gnu.org; Tue, 05 Oct 2021 18:45:47 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:56000) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mXtBv-0001u2-Fq for guix-patches@gnu.org; Tue, 05 Oct 2021 18:45:43 -0400 Received: from mail-40134.protonmail.ch ([185.70.40.134]:24921) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mXtBs-00076Z-J9 for guix-patches@gnu.org; Tue, 05 Oct 2021 18:45:42 -0400 Date: Tue, 05 Oct 2021 22:45:29 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1633473930; bh=DMGff/c3PEc58z9ySnEBucy5igQ29fYWjXJehWEEGG0=; h=Date:To:From:Reply-To:Subject:From; b=rvZyxlu6G8UxbAIWbr17P7P8NSDW4oSFyBI081MdMxLwPMMYmRbHHVzZGQRZw89h1 X9WCoVnnx7BGJ/VBE5ebIfq2VU4jWKSbZRz/4hY5UbMkDw3P1ecWs4ahrv6KVW2cCB ZN22Ufb/M3DRjVf770Gq0Avvs1ldgm3B49lDQE9I= To: phodina via Guix-patches via From: phodina Subject: [PATCH] gnu: Add rdate. Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=185.70.40.134; envelope-from=phodina@protonmail.com; helo=mail-40134.protonmail.ch 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, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.0 (/) 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: , Reply-To: phodina Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/time.scm (rdate): New variable. diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm index df4b8ac6f5..351c990ce1 100644 --- a/gnu/packages/time.scm +++ b/gnu/packages/time.scm @@ -470,6 +470,30 @@ datetime type.") (define-public python2-aniso8601 (package-with-python2 python-aniso8601)) +(define-public rdate + (let ((commit "91d84610e3695e90a884e2953908e95a856a9b74") + (revision "1")) + (package + (name "rdate") + (version (git-version "1.4" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/njh/rdate") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "002ryjq8gj1ml5la4v6dr3bh1zw5kxwy65rpziq8d2ccccarhv59"))= )) + (build-system gnu-build-system) + (native-inputs `(("autoconf" ,autoconf) + ("automake" ,automake))) + (synopsis "Get date and time based on RFC 868") + (description "@code{rdate} connects to an RFC 868 time server over a= TCP/IP +network, printing the returned time and/or setting the system clock.") + (home-page "https://www.aelius.com/njh/rdate/") + (license license:gpl2)))) + (define-public datefudge (package (name "datefudge") -- 2.32.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 07 14:47:17 2024 Received: (at 51046) by debbugs.gnu.org; 7 Mar 2024 19:47:17 +0000 Received: from localhost ([127.0.0.1]:55007 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riJi0-0003qa-LN for submit@debbugs.gnu.org; Thu, 07 Mar 2024 14:47:17 -0500 Received: from out-182.mta0.migadu.com ([91.218.175.182]:60082) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riJhw-0003qG-JT for 51046@debbugs.gnu.org; Thu, 07 Mar 2024 14:47:15 -0500 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=incana.org; s=key1; t=1709840764; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=13GwvJdefOI5kC3iarMuydgeMHntlDHJFrfYtFhB4bQ=; b=WGe+BJSz+HK05LCsZsDDny33fCpf96BNEaXWxqq16HeJaxjB5dkhR0U+cunxTQ3IgGewKN /BX4RiIcKFyR9KtRS8FO8goGRhjboCIJ52OvuoIajR4ZxttpR19Fsaf2V1FfotMvaPwtko ANCC9FamwiywWxU7/aGRPZgor0AFQXHo6zoRRdrU1jXL1K6jjOy19JxkMo2aE67qCG5iVi QYoTXQNOwHjPYH4RVpDcRYTawT4rL8fdMwST7tuyOVC7BkYbeVnrtlZoVdb4YcdQuWU+B8 1lYKltJ+LUCpx0WRuwJUMafmrwVOplV4pS+5QNqwPeUnRNgDHU3BGzH4WSSZOQ== From: Juliana Sims To: 51046@debbugs.gnu.org Subject: [PATCH v2] gnu: Add rdate. Date: Thu, 7 Mar 2024 14:43:06 -0500 Message-ID: <268a9188fbcd506422f8d606045d133d89e27db6.1709840586.git.juli@incana.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 51046 Cc: phodina@protonmail.com, Juliana Sims 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 (-) Hello! It's been quite some time since this patch was submitted, and it still works! It needed two small changes -- adding the autotools module and using a different license symbol format -- so I've gone ahead and made those changes. I also took the liberty of updating the inputs to the new format. There are no semantic changes to the patch itself. Thanks again for submitting this! Juli * gnu/packages/time.scm (rdate): New variable. Change-Id: I12217c62fe17a93bdb5364f807804eea7fc57a23 --- gnu/packages/time.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm index b0d800da949..14b02352d6f 100644 --- a/gnu/packages/time.scm +++ b/gnu/packages/time.scm @@ -40,6 +40,7 @@ ;;; along with GNU Guix. If not, see . (define-module (gnu packages time) + #:use-module (gnu packages autotools) #:use-module (gnu packages base) #:use-module (gnu packages check) #:use-module (gnu packages compression) @@ -549,6 +550,30 @@ (define-public python-aniso8601 "This package contains a library for parsing ISO 8601 datetime strings.") (license bsd-3))) +(define-public rdate + (let ((commit "91d84610e3695e90a884e2953908e95a856a9b74") + (revision "1")) + (package + (name "rdate") + (version (git-version "1.4" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/njh/rdate") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "002ryjq8gj1ml5la4v6dr3bh1zw5kxwy65rpziq8d2ccccarhv59")))) + (build-system gnu-build-system) + (native-inputs (list autoconf automake)) + (synopsis "Get date and time based on RFC 868") + (description + "@code{rdate} connects to an RFC 868 time server over a TCP/IP network, +printing the returned time and/or setting the system clock.") + (home-page "https://www.aelius.com/njh/rdate/") + (license gpl2)))) + (define-public datefudge (package (name "datefudge") base-commit: 7f2f1bcddae64c48f793cde15c21617fa706c157 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 08 04:44:29 2024 Received: (at 51046-done) by debbugs.gnu.org; 8 Mar 2024 09:44:29 +0000 Received: from localhost ([127.0.0.1]:56680 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riWmC-0008Ht-Uz for submit@debbugs.gnu.org; Fri, 08 Mar 2024 04:44:29 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:37406) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riWmB-0008Hf-0f for 51046-done@debbugs.gnu.org; Fri, 08 Mar 2024 04:44:27 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id C5DC82E7; Fri, 8 Mar 2024 10:43:48 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5iYD6LJlReEM; Fri, 8 Mar 2024 10:43:48 +0100 (CET) Received: from jurong (unknown [IPv6:2001:861:c4:f2f0::c64]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 8F55F20D; Fri, 8 Mar 2024 10:43:47 +0100 (CET) Date: Fri, 8 Mar 2024 10:43:44 +0100 From: Andreas Enge To: 51046-done@debbugs.gnu.org Subject: Close Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 51046-done 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 (-) Thanks, phodina, for the patch, and Juliana, for undigging and reviewing it! Given that the package looks unmaintained, I was a bit hesitant, but since it still builds, why not add it; I took the liberty to not wait for QA to build it out. Before pushing, I changed the licence to gpl2+. Indeed, if later versions are not explicitly excluded ("v2 only"), the GPL itself contains a clause that implies "or later": 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. Here it is also explicitly given in the source, for instance there: https://github.com/njh/rdate/blob/main/src/rdate.c Andreas From unknown Tue Aug 19 10:00:02 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 05 Apr 2024 11:24:25 +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