From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 16 17:17:29 2023 Received: (at submit) by debbugs.gnu.org; 16 Jan 2023 22:17:29 +0000 Received: from localhost ([127.0.0.1]:35143 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHXnF-0003VL-4z for submit@debbugs.gnu.org; Mon, 16 Jan 2023 17:17:29 -0500 Received: from lists.gnu.org ([209.51.188.17]:33644) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHXnB-0003VC-Sx for submit@debbugs.gnu.org; Mon, 16 Jan 2023 17:17:27 -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 1pHXnB-0006yD-8S for guix-patches@gnu.org; Mon, 16 Jan 2023 17:17:25 -0500 Received: from devianza.investici.org ([198.167.222.108]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pHXn8-0006mL-Jz for guix-patches@gnu.org; Mon, 16 Jan 2023 17:17:24 -0500 Received: from mx2.investici.org (unknown [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 4Nwmbg0RyLz6vMC; Mon, 16 Jan 2023 22:17:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1673907439; bh=2EzxcY+wtddswb2O/bUS0Xs4E0Bjdm0XUBvQk5wQyfw=; h=From:To:Cc:Subject:Date:From; b=Op7bJYsuZxrOVdOsWCb1S6rtXoLGZMBQyC9wxG3JeFMownZYQi+A4OMpRFnDwZXEH 9+ZSLwBS8BV4LqG54dWa79DnSsqg+ZKeW05Z9eGyqqzbuuRM62exEJo3XU2FteMRVL /mvlHZ8I5UHXW1K2swr+9dhYryGPS6M3PXc0cJAo= Received: from [198.167.222.108] (mx2.investici.org [198.167.222.108]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4Nwmbf5H9xz6vM9; Mon, 16 Jan 2023 22:17:18 +0000 (UTC) From: Cayetano Santos To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-org-board. Date: Mon, 16 Jan 2023 23:16:43 +0100 Message-Id: <51e3225c3ac9ab8e9560768ccc047c73e6403a6d.1673907375.git.csantosb@inventati.org> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=198.167.222.108; envelope-from=csantosb@inventati.org; helo=devianza.investici.org 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, RCVD_IN_DNSWL_NONE=-0.0001, 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 Cc: Cayetano Santos 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/emacs-xyz.scm (emacs-org-board): New variable. --- gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index dfbd51ac0a..d202108f27 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -251,6 +251,7 @@ (define-module (gnu packages emacs-xyz) #:use-module (gnu packages erlang) #:use-module (gnu packages statistics) #:use-module (gnu packages libcanberra) + #:use-module (gnu packages wget) #:use-module (guix utils) #:use-module (srfi srfi-1) #:use-module (ice-9 match)) @@ -24937,6 +24938,29 @@ (define-public emacs-cpreproc-openvdb incompatible versions of it.") (license license:gpl3+))) +(define-public emacs-org-board + (let ((commit "1393bd46d11a81328ed4fb8471831415a3efe224") + (revision "1")) + (package + (name "emacs-org-board") + (version (git-version "20200619" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/charlesroelli/org-board") + (commit commit))) + (sha256 + (base32 + "1kryrg988c3sbxyp1sdgc6xdv2iz6kiflpzn2rw4z3l4grzab53b")))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-org emacs-ztree wget)) + (home-page "https://github.com/charlesroelli/org-board") + (synopsis "Bookmarking and web archival system for Org mode") + (description + "Org-board uses `org-attach and `wget to provide a bookmarking and web +archival system directly from an Org file..") + (license license:gpl3+)))) + (define-public emacs-org-brain (package (name "emacs-org-brain") base-commit: 0cf98fbc4e1facbdd733eecf8442788179722c6e -- 2.38.1 From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 20 18:38:40 2023 Received: (at submit) by debbugs.gnu.org; 20 Jan 2023 23:38:40 +0000 Received: from localhost ([127.0.0.1]:47501 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJ0y0-0005Mj-Bv for submit@debbugs.gnu.org; Fri, 20 Jan 2023 18:38:40 -0500 Received: from lists.gnu.org ([209.51.188.17]:48808) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJ0xy-0005Ma-GR for submit@debbugs.gnu.org; Fri, 20 Jan 2023 18:38:38 -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 1pJ0xy-0000pI-9T for guix-patches@gnu.org; Fri, 20 Jan 2023 18:38:38 -0500 Received: from relay5-d.mail.gandi.net ([217.70.183.197]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pJ0xw-0002Bn-Hu for guix-patches@gnu.org; Fri, 20 Jan 2023 18:38:38 -0500 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 000751C0003; Fri, 20 Jan 2023 23:38:32 +0000 (UTC) From: Nicolas Goaziou To: Cayetano Santos via Guix-patches via Subject: Re: [bug#60869] [PATCH] gnu: Add emacs-org-board. References: <51e3225c3ac9ab8e9560768ccc047c73e6403a6d.1673907375.git.csantosb@inventati.org> Date: Sat, 21 Jan 2023 00:38:26 +0100 In-Reply-To: <51e3225c3ac9ab8e9560768ccc047c73e6403a6d.1673907375.git.csantosb@inventati.org> (Cayetano Santos via Guix-patches via's message of "Mon, 16 Jan 2023 23:16:43 +0100") Message-ID: <87lelwpyj1.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=217.70.183.197; envelope-from=mail@nicolasgoaziou.fr; helo=relay5-d.mail.gandi.net 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_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit Cc: 60869-done@debbugs.gnu.org, Cayetano Santos 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.6 (--) Hello, Cayetano Santos via Guix-patches via writes: > * gnu/packages/emacs-xyz.scm (emacs-org-board): New variable. Applied with a few changes, noted below. Thank you. > +(define-public emacs-org-board > + (let ((commit "1393bd46d11a81328ed4fb8471831415a3efe224") > + (revision "1")) > + (package > + (name "emacs-org-board") > + (version (git-version "20200619" revision commit)) Base version is 1138, not 20200619. > + (source (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/charlesroelli/org-board") > + (commit commit))) > + (sha256 > + (base32 > + "1kryrg988c3sbxyp1sdgc6xdv2iz6kiflpzn2rw4z3l4grzab53b")))) > + (build-system emacs-build-system) > + (propagated-inputs (list emacs-org emacs-ztree wget)) I moved wget to regular inputs and added a phase so the package could find the wget executable. > + (home-page "https://github.com/charlesroelli/org-board") > + (synopsis "Bookmarking and web archival system for Org mode") > + (description > + "Org-board uses `org-attach and `wget to provide a bookmarking and web > +archival system directly from an Org file..") I reworded the description. > + (license license:gpl3+)))) License is GPL2+. Regards, -- Nicolas Goaziou From unknown Sat Aug 09 13:19:42 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 18 Feb 2023 12:24:10 +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