From unknown Sat Jun 14 03:49:01 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41873] [PATCH] gnu: Add ebusd. Resent-From: Danny Milosavljevic Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 15 Jun 2020 15:43:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 41873 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 41873@debbugs.gnu.org Cc: Danny Milosavljevic X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.159223577531467 (code B ref -1); Mon, 15 Jun 2020 15:43:01 +0000 Received: (at submit) by debbugs.gnu.org; 15 Jun 2020 15:42:55 +0000 Received: from localhost ([127.0.0.1]:47253 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkrGA-0008BT-Ub for submit@debbugs.gnu.org; Mon, 15 Jun 2020 11:42:55 -0400 Received: from lists.gnu.org ([209.51.188.17]:53878) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkrG7-0008BJ-SY for submit@debbugs.gnu.org; Mon, 15 Jun 2020 11:42:53 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45918) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jkrG6-0007Zb-Nv for guix-patches@gnu.org; Mon, 15 Jun 2020 11:42:51 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:53004) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jkrG4-0005XE-B4 for guix-patches@gnu.org; Mon, 15 Jun 2020 11:42:50 -0400 Received: from localhost.localdomain (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id CAE323367FF1; Mon, 15 Jun 2020 17:42:45 +0200 (CEST) From: Danny Milosavljevic Date: Mon, 15 Jun 2020 17:42:43 +0200 Message-Id: <20200615154243.22617-1-dannym@scratchpost.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Tags: patch Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.145.193; envelope-from=dannym@scratchpost.org; helo=dd26836.kasserver.com X-detected-operating-system: by eggs.gnu.org: First seen = 2020/06/15 11:42:46 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -2.3 (--) 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 (---) * gnu/packages/embedded.scm (ebusd): New variable. --- gnu/packages/embedded.scm | 47 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm index 9be1065de2..2c5a8991fc 100644 --- a/gnu/packages/embedded.scm +++ b/gnu/packages/embedded.scm @@ -1352,3 +1352,50 @@ simplifies configuration and is also pluggable: you can write your own west this feature to provide conveniences for building applications, flashing and debugging them, and more.") (license license:expat))) + +;; TODO: Support MQTT. +(define-public ebusd + (package + (name "ebusd") + (version "3.4") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/john30/ebusd.git") + (commit (string-append "v" version)))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0iva70bam7wdx60bpd3an9kxr28zxlvp3vprivgqshwwdhqa0hzp")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'install 'install-config + (lambda* (#:key inputs outputs #:allow-other-keys) + (let ((config-destination + (string-append (assoc-ref outputs "out") + "/share/ebusd"))) + (copy-recursively (string-append (assoc-ref inputs "config") + "/ebusd-2.1.x") + config-destination) + #t)))))) + (native-inputs + `(("automake" ,automake) + ("autoconf" ,autoconf) + ("config" + ,(origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/john30/ebusd-configuration.git") + (commit "666c0f6b9c4d7545eff7f43ab28a1c7baeab7913"))) + (file-name "config-checkout") + (sha256 + (base32 + "0yxnx8p4lbk614l16854r9s9d8s9c7ixgczfs8mph94xz0wkda7x")))))) + (synopsis "Daemon for communicating with eBUS devices") + (description "This package provides @command{ebusd}, a daemon for +handling communication with eBUS devices connected to a 2-wire bus system +(\"energy bus\" used by numerous heating systems).") + (home-page "https://ebusd.eu/") + (license license:gpl3+))) From unknown Sat Jun 14 03:49:01 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41873] [PATCH] gnu: Add ebusd. Resent-From: Mathieu Othacehe Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 21 Jun 2020 09:58:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 41873 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Danny Milosavljevic Cc: 41873@debbugs.gnu.org Received: via spool by 41873-submit@debbugs.gnu.org id=B41873.15927334439710 (code B ref 41873); Sun, 21 Jun 2020 09:58:01 +0000 Received: (at 41873) by debbugs.gnu.org; 21 Jun 2020 09:57:23 +0000 Received: from localhost ([127.0.0.1]:59259 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jmwj4-0002WY-RJ for submit@debbugs.gnu.org; Sun, 21 Jun 2020 05:57:23 -0400 Received: from eggs.gnu.org ([209.51.188.92]:37884) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jmwj2-0002WK-TW for 41873@debbugs.gnu.org; Sun, 21 Jun 2020 05:57:21 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:51609) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jmwix-0004xA-JW; Sun, 21 Jun 2020 05:57:15 -0400 Received: from [2a01:e0a:fa:a50:34a1:eac3:9800:4a6e] (port=53336 helo=meru) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jmwiv-0002mI-Fa; Sun, 21 Jun 2020 05:57:13 -0400 From: Mathieu Othacehe References: <20200615154243.22617-1-dannym@scratchpost.org> Date: Sun, 21 Jun 2020 11:57:11 +0200 In-Reply-To: <20200615154243.22617-1-dannym@scratchpost.org> (Danny Milosavljevic's message of "Mon, 15 Jun 2020 17:42:43 +0200") Message-ID: <87k1004u88.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) 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 (---) Hey Danny, > + (uri (git-reference > + (url "https://github.com/john30/ebusd.git") > + (commit (string-append "v" version)))) Indentation is off here and a bit below. > + (copy-recursively (string-append (assoc-ref inputs "config") > + "/ebusd-2.1.x") Maybe you could use the "latest" file here? > + (synopsis "Daemon for communicating with eBUS devices") > + (description "This package provides @command{ebusd}, a daemon for > +handling communication with eBUS devices connected to a 2-wire bus system > +(\"energy bus\" used by numerous heating systems).") I think you can turn this into a full sentence. Otherwise, it look fine. Thanks, Mathieu From unknown Sat Jun 14 03:49:01 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Danny Milosavljevic Subject: bug#41873: closed (Re: [PATCH] gnu: Add ebusd.) Message-ID: References: <20200907002053.54beaae7@scratchpost.org> <20200615154243.22617-1-dannym@scratchpost.org> X-Gnu-PR-Message: they-closed 41873 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 41873@debbugs.gnu.org Date: Sun, 06 Sep 2020 22:21:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1599430862-17183-1" This is a multi-part message in MIME format... ------------=_1599430862-17183-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #41873: [PATCH] gnu: Add ebusd. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 41873@debbugs.gnu.org. --=20 41873: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D41873 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1599430862-17183-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 41873-done) by debbugs.gnu.org; 6 Sep 2020 22:20:59 +0000 Received: from localhost ([127.0.0.1]:47348 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kF31v-0004Sm-2J for submit@debbugs.gnu.org; Sun, 06 Sep 2020 18:20:59 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:42104) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kF31s-0004Sd-IH for 41873-done@debbugs.gnu.org; Sun, 06 Sep 2020 18:20:56 -0400 Received: from localhost (80-110-126-103.cgn.dynamic.surfer.at [80.110.126.103]) by dd26836.kasserver.com (Postfix) with ESMTPSA id D8DD233683FD for <41873-done@debbugs.gnu.org>; Mon, 7 Sep 2020 00:20:54 +0200 (CEST) Date: Mon, 7 Sep 2020 00:20:53 +0200 From: Danny Milosavljevic To: 41873-done@debbugs.gnu.org Subject: Re: [PATCH] gnu: Add ebusd. Message-ID: <20200907002053.54beaae7@scratchpost.org> In-Reply-To: <20200615154243.22617-1-dannym@scratchpost.org> References: <20200615154243.22617-1-dannym@scratchpost.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/9mLSmC=xIoNrhKq+3IiHOEr"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41873-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.7 (-) --Sig_/9mLSmC=xIoNrhKq+3IiHOEr Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Pushed to guix master as commit bbf8a309662c8378b817cfb760447cd6f8ce59e8. --Sig_/9mLSmC=xIoNrhKq+3IiHOEr Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl9VYMUACgkQ5xo1VCww uqVacAf+I9yN+ztumV0rxlg7JegAAlkKMqZhsZr8ZQdndghj8RGIlYw9RtRDBhua mWn/ExxcpcI9vRYQLZ0ynwSXVaTxtvVfPvWkHJrcIuDjHDH1Ah2+6uC5UKRIqPGD s3DR53He0dGF8gZ7vyResdQ8mXcR+jU8ck8bzJpcVHB25Bj4kOq6ts2HF0Aq+hpS 1GDUltWQqbWehK0KtZnzDl+r+ITMUtfu9SJVLCtKHTDoEZb601IL7FcShng8Gx2F SekVgrkBQhXuK/h3SQuY0tctuVxA6KEmQa3p5XUa70gu3m9L3IoEQF0THfL+Acc9 dyFBplUPxa+0uu7kNzc3X9xviHjylg== =3t0Y -----END PGP SIGNATURE----- --Sig_/9mLSmC=xIoNrhKq+3IiHOEr-- ------------=_1599430862-17183-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 15 Jun 2020 15:42:55 +0000 Received: from localhost ([127.0.0.1]:47253 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkrGA-0008BT-Ub for submit@debbugs.gnu.org; Mon, 15 Jun 2020 11:42:55 -0400 Received: from lists.gnu.org ([209.51.188.17]:53878) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkrG7-0008BJ-SY for submit@debbugs.gnu.org; Mon, 15 Jun 2020 11:42:53 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45918) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jkrG6-0007Zb-Nv for guix-patches@gnu.org; Mon, 15 Jun 2020 11:42:51 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:53004) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jkrG4-0005XE-B4 for guix-patches@gnu.org; Mon, 15 Jun 2020 11:42:50 -0400 Received: from localhost.localdomain (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id CAE323367FF1; Mon, 15 Jun 2020 17:42:45 +0200 (CEST) From: Danny Milosavljevic To: guix-patches@gnu.org Subject: [PATCH] gnu: Add ebusd. Date: Mon, 15 Jun 2020 17:42:43 +0200 Message-Id: <20200615154243.22617-1-dannym@scratchpost.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Tags: patch Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.145.193; envelope-from=dannym@scratchpost.org; helo=dd26836.kasserver.com X-detected-operating-system: by eggs.gnu.org: First seen = 2020/06/15 11:42:46 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Danny Milosavljevic 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 (---) * gnu/packages/embedded.scm (ebusd): New variable. --- gnu/packages/embedded.scm | 47 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm index 9be1065de2..2c5a8991fc 100644 --- a/gnu/packages/embedded.scm +++ b/gnu/packages/embedded.scm @@ -1352,3 +1352,50 @@ simplifies configuration and is also pluggable: you can write your own west this feature to provide conveniences for building applications, flashing and debugging them, and more.") (license license:expat))) + +;; TODO: Support MQTT. +(define-public ebusd + (package + (name "ebusd") + (version "3.4") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/john30/ebusd.git") + (commit (string-append "v" version)))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0iva70bam7wdx60bpd3an9kxr28zxlvp3vprivgqshwwdhqa0hzp")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'install 'install-config + (lambda* (#:key inputs outputs #:allow-other-keys) + (let ((config-destination + (string-append (assoc-ref outputs "out") + "/share/ebusd"))) + (copy-recursively (string-append (assoc-ref inputs "config") + "/ebusd-2.1.x") + config-destination) + #t)))))) + (native-inputs + `(("automake" ,automake) + ("autoconf" ,autoconf) + ("config" + ,(origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/john30/ebusd-configuration.git") + (commit "666c0f6b9c4d7545eff7f43ab28a1c7baeab7913"))) + (file-name "config-checkout") + (sha256 + (base32 + "0yxnx8p4lbk614l16854r9s9d8s9c7ixgczfs8mph94xz0wkda7x")))))) + (synopsis "Daemon for communicating with eBUS devices") + (description "This package provides @command{ebusd}, a daemon for +handling communication with eBUS devices connected to a 2-wire bus system +(\"energy bus\" used by numerous heating systems).") + (home-page "https://ebusd.eu/") + (license license:gpl3+))) ------------=_1599430862-17183-1--