From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Joseph Turner Newsgroups: gmane.emacs.devel Subject: [NonGNU ELPA] New package: hyperdrive Date: Sat, 12 Aug 2023 11:51:42 -0700 Message-ID: <87fs4okrkg.fsf@ushin.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="33275"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Adam Porter , Paula Maas , Protesilaos Stavrou To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Aug 13 07:11:01 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qV3NU-0008Tb-Nr for ged-emacs-devel@m.gmane-mx.org; Sun, 13 Aug 2023 07:11:01 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qV3N5-0007Xo-TN; Sun, 13 Aug 2023 01:10:37 -0400 Original-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 1qUtxf-0001wx-E7 for emacs-devel@gnu.org; Sat, 12 Aug 2023 15:07:44 -0400 Original-Received: from out-82.mta1.migadu.com ([2001:41d0:203:375::52]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qUtxc-0001oB-Ad for emacs-devel@gnu.org; Sat, 12 Aug 2023 15:07:42 -0400 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=ushin.org; s=key1; t=1691867251; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type; bh=cBRp6p1XEOG/qdAMONH9Bsm0s9moKGyyEWewKMu0Y7c=; b=TuCUeKz0C5EP7JVwuastKUXSonSZnajIJBwJEg+3paaN8WxcJm1Gl/cCxgAdMaPymCbOvq L7rMImbeLVM1lV97qgaoQlZJwaOcprCM3URpJ7s6/XwZcxjWJq7Oe7pYAW1Jbsrtb9jdqf lkGkeYSj8kBikTn/umXSjAmjO7IX4BxQg9YkuO8lagUdf1RVGruXRpgv//xy0u82mi7R4T 1MIUFpT6+yfF6pkbY3ruB2MrgJ2N4sNvYqRFAhUuRygn/N3EDjOKO94cUb/Dbfwb1cCJUa gtWosXftsO99zf2kc+jAIZi/iMdI8kRB7Dqidj6FHCtOAqQ2gL9cHJBTTgw8aQ== X-Migadu-Flow: FLOW_OUT Received-SPF: pass client-ip=2001:41d0:203:375::52; envelope-from=joseph@ushin.org; helo=out-82.mta1.migadu.com 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_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Mailman-Approved-At: Sun, 13 Aug 2023 01:10:27 -0400 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:308645 Archived-At: --=-=-= Content-Type: text/plain Hello all, Adam Porter and I have been working on an Emacs interface () for managing hyperdrives, which are real-time, versioned, p2p filesystems. (). Some features have already been implemented and described in the manual (). We plan to work on a peer discovery mechanism so you can announce interest in a topic, e.g. "Emacs", and discover other online peers who share that topic interest. I look forward to hearing feedback! Best, Joseph --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-elpa-packages-hyperdrive.patch diff --git a/elpa-packages b/elpa-packages index 77d7a5409e..41a060bff0 100644 --- a/elpa-packages +++ b/elpa-packages @@ -340,6 +340,10 @@ :ignored-files ("htmlize.el.html") :release-branch "stable") + (hyperdrive :url "https://git.sr.ht/~ushin/hyperdrive.el" + :readme "README.md" + :doc "doc/hyperdrive-manual.org") + (idle-highlight-mode :url "https://codeberg.org/ideasman42/emacs-idle-highlight-mode" :ignored-files (".elisp-autofmt")) --=-=-=--