* Re: [PATCH 0/4]
2016-05-29 11:59 [PATCH 0/4] Catonano
@ 2016-05-29 12:00 ` Catonano
2016-05-29 12:01 ` Catonano
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Catonano @ 2016-05-29 12:00 UTC (permalink / raw)
To: guile-devel
[-- Attachment #1.1: Type: text/plain, Size: 92 bytes --]
so, emacs-queue (the google mail client doesn't allow me to edit the
subject to [PATCH 1/4]
[-- Attachment #1.2: Type: text/html, Size: 160 bytes --]
[-- Attachment #2: 0001-emacs-queue.patch --]
[-- Type: text/x-patch, Size: 1456 bytes --]
From 89849ff33cd67243d691748f77f13474676d5361 Mon Sep 17 00:00:00 2001
From: humanitiesNerd <catonano@gmail.com>
Date: Fri, 27 May 2016 10:01:59 +0200
Subject: gnu: Add emacs-queue.
* gnu/packages/emacs.scm (emacs-queue): New variable.
---
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 5d6db5a..90f55ea 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1706,3 +1706,24 @@ It is recommended to use @code{clojure-mode} with paredit or smartparens.")
The purpose of this library is to wrap all the quirks and hassle of
@code{package.el} into a sane API.")
(license license:gpl3+)))
+
+(define-public emacs-queue
+ (package
+ (name "emacs-queue")
+ (version "0.1.1")
+ (source
+ (origin
+ (method uncompressed-file-fetch)
+ (uri (string-append "http://elpa.gnu.org/packages/queue-" version ".el"))
+ (sha256
+ (base32
+ "0jw24fxqnf9qcaf2nh09cnds1kqfk7hal35dw83x1ari95say391"))))
+ (build-system emacs-build-system)
+ (home-page "http://www.dr-qubit.org/emacs.php")
+ (synopsis "Queue data structure")
+ (description
+ "These queues can be used both as a first-in last-out (FILO) and as a
+first-in first-out (FIFO) stack, i.e. elements can be added to the front or
+back of the queue, and can be removed from the front. (This type of data
+structure is sometimes called an \"output-restricted deque\")")
+ (license license:gpl3+)))
--
2.5.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 0/4]
2016-05-29 11:59 [PATCH 0/4] Catonano
2016-05-29 12:00 ` Catonano
@ 2016-05-29 12:01 ` Catonano
2016-05-29 12:01 ` Catonano
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Catonano @ 2016-05-29 12:01 UTC (permalink / raw)
To: guile-devel
[-- Attachment #1.1: Type: text/plain, Size: 15 bytes --]
emacs-pkg-info
[-- Attachment #1.2: Type: text/html, Size: 79 bytes --]
[-- Attachment #2: 0002-gnu-Add-emacs-pkg-info.patch --]
[-- Type: text/x-patch, Size: 1419 bytes --]
From 6b4542d9f52b8f91375d07bd41bcc196a1c0515a Mon Sep 17 00:00:00 2001
From: humanitiesNerd <catonano@gmail.com>
Date: Sun, 29 May 2016 10:23:00 +0200
Subject: gnu: Add emacs-pkg-info.
* gnu/packages/emacs.scm (emacs-pkg-info).
---
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 90f55ea..92ad434 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1727,3 +1727,25 @@ first-in first-out (FIFO) stack, i.e. elements can be added to the front or
back of the queue, and can be removed from the front. (This type of data
structure is sometimes called an \"output-restricted deque\")")
(license license:gpl3+)))
+
+(define-public emacs-pkg-info
+ (package
+ (name "emacs-pkg-info")
+ (version "0.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/lunaryorn/pkg-info.el/archive/"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5"))))
+ (build-system emacs-build-system)
+ (propagated-inputs `(("emacs-epl" ,emacs-epl)))
+ (home-page "https://github.com/lunaryorn/pkg-info.el")
+ (synopsis "Information about packages")
+ (description
+ "This library extracts information from installed packages.")
+ (license license:gpl3+)))
--
2.5.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 0/4]
2016-05-29 11:59 [PATCH 0/4] Catonano
2016-05-29 12:00 ` Catonano
2016-05-29 12:01 ` Catonano
@ 2016-05-29 12:01 ` Catonano
2016-05-29 12:02 ` Catonano
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Catonano @ 2016-05-29 12:01 UTC (permalink / raw)
To: guile-devel
[-- Attachment #1.1: Type: text/plain, Size: 14 bytes --]
emacs-spinner
[-- Attachment #1.2: Type: text/html, Size: 78 bytes --]
[-- Attachment #2: 0003-gnu-Add-emacs-spinner.patch --]
[-- Type: text/x-patch, Size: 1291 bytes --]
From ac23b10894d3332484128c4ed3c6f6bdf81b9c2e Mon Sep 17 00:00:00 2001
From: humanitiesNerd <catonano@gmail.com>
Date: Sun, 29 May 2016 10:25:21 +0200
Subject: gnu: Add emacs-spinner.
* gnu/packages/emacs.scm (emacs-spinner).
---
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 92ad434..014a58c 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1749,3 +1749,24 @@ structure is sometimes called an \"output-restricted deque\")")
(description
"This library extracts information from installed packages.")
(license license:gpl3+)))
+
+(define-public emacs-spinner
+ (package
+ (name "emacs-spinner")
+ (version "1.7.1")
+ (source
+ (origin
+ (method uncompressed-file-fetch)
+ (uri (string-append
+ "http://elpa.gnu.org/packages/spinner-"
+ version ".el"))
+ (sha256
+ (base32
+ "1fmwzdih0kbyvs8bn38mpm4sbs2mikqy2vdykfy9g20wpa8vb681"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/Malabarba/spinner.el")
+ (synopsis
+ "Add spinners and progress-bars to the mode-line for ongoing operations")
+ (description "Add spinners and progress-bars
+to the mode-line for ongoing operations.")
+ (license license:gpl3+)))
--
2.5.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 0/4]
2016-05-29 11:59 [PATCH 0/4] Catonano
` (2 preceding siblings ...)
2016-05-29 12:01 ` Catonano
@ 2016-05-29 12:02 ` Catonano
2016-05-29 12:20 ` Mathieu Lirzin
2016-05-29 13:12 ` Catonano
5 siblings, 0 replies; 7+ messages in thread
From: Catonano @ 2016-05-29 12:02 UTC (permalink / raw)
To: guile-devel
[-- Attachment #1.1: Type: text/plain, Size: 10 bytes --]
emacs-seq
[-- Attachment #1.2: Type: text/html, Size: 70 bytes --]
[-- Attachment #2: 0004-gnu-Add-emacs-seq.patch --]
[-- Type: text/x-patch, Size: 1592 bytes --]
From d8c560cd5b2335b01b19edec67cbd8a69e5ee3a4 Mon Sep 17 00:00:00 2001
From: humanitiesNerd <catonano@gmail.com>
Date: Sun, 29 May 2016 13:44:00 +0200
Subject: gnu: Add emacs-seq.
* gnu/packages/emacs.scm (emacs-seq).
---
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 014a58c..c71a603 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1770,3 +1770,33 @@ structure is sometimes called an \"output-restricted deque\")")
(description "Add spinners and progress-bars
to the mode-line for ongoing operations.")
(license license:gpl3+)))
+
+(define-public emacs-seq
+ (package
+ (name "emacs-seq")
+ (version "2.15")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://elpa.gnu.org/packages/seq-"
+ version ".tar"))
+ (sha256
+ (base32
+ "09wi1765bmn7i8fg6ajjfaxgs4ipc42d58zx2fdqpidrdg9c7q73"))))
+ (build-system emacs-build-system)
+ (home-page "http://elpa.gnu.org/packages/seq.html")
+ (synopsis "Sequence manipulation functions")
+ (description
+ "Sequence-manipulation functions that complement basic functions
+provided by @code{subr.el}
+
+All functions are prefixed with \"seq-\".
+
+All provided functions work on lists, strings and vectors.
+
+Functions taking a predicate or iterating over a sequence using a
+function as argument take the function as their first argument and
+the sequence as their second argument. All other functions take
+the sequence as their first argument.")
+ (license license:gpl3+)))
--
2.5.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 0/4]
2016-05-29 11:59 [PATCH 0/4] Catonano
` (3 preceding siblings ...)
2016-05-29 12:02 ` Catonano
@ 2016-05-29 12:20 ` Mathieu Lirzin
2016-05-29 13:12 ` Catonano
5 siblings, 0 replies; 7+ messages in thread
From: Mathieu Lirzin @ 2016-05-29 12:20 UTC (permalink / raw)
To: Catonano; +Cc: guile-devel
Catonano <catonano@gmail.com> writes:
> This is a bunch of emacs packages I made on the same branch, so git
> shouldn't claim any inconsistency with these.
>
> I hope this attempt is gonna be successful
>
> they are
>
> 1) emacs.queue
> 2) emacs-pkg-info
> 3) emacs-spinner
> 4) emacs-seq
Please make an effort to send these patches to the appropriate mailing
list.
Thanks.
--
Mathieu Lirzin
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 0/4]
2016-05-29 11:59 [PATCH 0/4] Catonano
` (4 preceding siblings ...)
2016-05-29 12:20 ` Mathieu Lirzin
@ 2016-05-29 13:12 ` Catonano
5 siblings, 0 replies; 7+ messages in thread
From: Catonano @ 2016-05-29 13:12 UTC (permalink / raw)
To: guile-devel
[-- Attachment #1: Type: text/plain, Size: 358 bytes --]
oh gosh
I don't know what to say. I'm sorry
2016-05-29 13:59 GMT+02:00 Catonano <catonano@gmail.com>:
> This is a bunch of emacs packages I made on the same branch, so git
> shouldn't claim any inconsistency with these.
>
> I hope this attempt is gonna be successful
>
> they are
>
> 1) emacs.queue
> 2) emacs-pkg-info
> 3) emacs-spinner
> 4) emacs-seq
>
[-- Attachment #2: Type: text/html, Size: 782 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread