public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-aio/
@ 2022-10-14  0:26 Maciej Barć
  0 siblings, 0 replies; 2+ messages in thread
From: Maciej Barć @ 2022-10-14  0:26 UTC (permalink / raw
  To: gentoo-commits

commit:     e970b4d41822b023a7bb13ee12f130166d0e3e2e
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 00:18:48 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 00:26:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e970b4d4

app-emacs/emacs-aio: new package; add version 1.0_p20200610

2020.06.10 snapshot

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-emacs/emacs-aio/Manifest                       |  1 +
 app-emacs/emacs-aio/emacs-aio-1.0_p20200610.ebuild | 28 ++++++++++++++++++++++
 app-emacs/emacs-aio/metadata.xml                   | 26 ++++++++++++++++++++
 3 files changed, 55 insertions(+)

diff --git a/app-emacs/emacs-aio/Manifest b/app-emacs/emacs-aio/Manifest
new file mode 100644
index 000000000000..d14fde226f94
--- /dev/null
+++ b/app-emacs/emacs-aio/Manifest
@@ -0,0 +1 @@
+DIST emacs-aio-1.0_p20200610.tar.gz 9825 BLAKE2B f7d536b5ab603ec0506cf437e9819c00a84678dd1176ea83ac537c112767768a49bf6c95cc135255b252f83b1ecd47b6f195d5c812535f6c3c9843269e2c8750 SHA512 ac4b956a067d52130e57adb8c92bcd733b9566a1f8bfd03f721d7cb1479236346d8c65cf3c6d8475f9f5bb234f0fc766e2954d24af9feff891e1ece6a833c5d9

diff --git a/app-emacs/emacs-aio/emacs-aio-1.0_p20200610.ebuild b/app-emacs/emacs-aio/emacs-aio-1.0_p20200610.ebuild
new file mode 100644
index 000000000000..50a5d7e23baf
--- /dev/null
+++ b/app-emacs/emacs-aio/emacs-aio-1.0_p20200610.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+H=da93523e235529fa97d6f251319d9e1d6fc24a41
+NEED_EMACS=26.1
+
+inherit elisp
+
+DESCRIPTION="Async and await functions for Emacs Lisp"
+HOMEPAGE="https://github.com/skeeto/emacs-aio/"
+SRC_URI="https://github.com/skeeto/${PN}/archive/${H}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}"/${PN}-${H}
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DOCS=( README.md )
+
+src_compile() {
+	emake EMACS=${EMACS} compile
+}
+
+src_test() {
+	emake EMACS=${EMACS} check
+}

diff --git a/app-emacs/emacs-aio/metadata.xml b/app-emacs/emacs-aio/metadata.xml
new file mode 100644
index 000000000000..07a12f84c7c6
--- /dev/null
+++ b/app-emacs/emacs-aio/metadata.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+  <maintainer type="project">
+    <email>gnu-emacs@gentoo.org</email>
+    <name>Gentoo GNU Emacs project</name>
+  </maintainer>
+  <longdescription>
+    aio is to Emacs Lisp as asyncio is to Python. This package builds upon
+    Emacs 25 generators to provide functions that pause while they wait on
+    asynchronous events. They do not block any thread while paused. The main
+    components of this package are aio-defun/aio-lambda to define async
+    function, and aio-await to pause these functions while they wait on
+    asynchronous events. When an asynchronous function is paused, the main
+    thread is not blocked. It is no more or less powerful than callbacks, but
+    is nicer to use. This is implementation is based on Emacs 25 generators,
+    and asynchronous functions are actually iterators in disguise, operated as
+    stackless, asymmetric coroutines.
+  </longdescription>
+  <stabilize-allarches />
+  <upstream>
+    <bugs-to>https://github.com/skeeto/emacs-aio/issues/</bugs-to>
+    <remote-id type="github">skeeto/emacs-aio</remote-id>
+  </upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-aio/
@ 2023-04-02  1:45 Sam James
  0 siblings, 0 replies; 2+ messages in thread
From: Sam James @ 2023-04-02  1:45 UTC (permalink / raw
  To: gentoo-commits

commit:     1486ae949ffb5d073e3b1883c77c4d7e1624c2d6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr  2 01:43:55 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr  2 01:43:55 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1486ae94

app-emacs/emacs-aio: Stabilize 1.0_p20200610 amd64, #903680

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-emacs/emacs-aio/emacs-aio-1.0_p20200610.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/emacs-aio/emacs-aio-1.0_p20200610.ebuild b/app-emacs/emacs-aio/emacs-aio-1.0_p20200610.ebuild
index 83e785be886c..85cd61292789 100644
--- a/app-emacs/emacs-aio/emacs-aio-1.0_p20200610.ebuild
+++ b/app-emacs/emacs-aio/emacs-aio-1.0_p20200610.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/${PN}-${COMMIT}
 
 LICENSE="Unlicense"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 DOCS=( README.md )
 


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-04-02  1:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-02  1:45 [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-aio/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2022-10-14  0:26 Maciej Barć

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox