* [PATCH 2/4] emacs-pkg-info
@ 2016-05-29 15:53 Catonano
2016-05-30 10:13 ` Alex Kost
0 siblings, 1 reply; 2+ messages in thread
From: Catonano @ 2016-05-29 15:53 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1.1: Type: text/plain, Size: 1 bytes --]
[-- Attachment #1.2: Type: text/html, Size: 26 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] 2+ messages in thread
* Re: [PATCH 2/4] emacs-pkg-info
2016-05-29 15:53 [PATCH 2/4] emacs-pkg-info Catonano
@ 2016-05-30 10:13 ` Alex Kost
0 siblings, 0 replies; 2+ messages in thread
From: Alex Kost @ 2016-05-30 10:13 UTC (permalink / raw)
To: Catonano; +Cc: guix-devel
Catonano (2016-05-29 18:53 +0300) wrote:
> 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).
Almost, but not quite ;-) should be:
* gnu/packages/emacs.scm (emacs-pkg-info): New variable.
> ---
> 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")
I wrote: "Information about Emacs packages".
> + (description
> + "This library extracts information from installed packages.")
and: "This library extracts information from installed Emacs packages."
I made similar modifications (to mention "Emacs") in
synopses/descriptions for other packages, and committed all your
patches, thanks!
--
Alex
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-05-30 10:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-29 15:53 [PATCH 2/4] emacs-pkg-info Catonano
2016-05-30 10:13 ` Alex Kost
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).