Re: [PATCH] gnu: Add autoconf-archive.

2016-05-26 Thread Thompson, David
On Wed, May 25, 2016 at 6:04 PM, Ludovic Courtès  wrote:
> David Thompson  skribis:
>
>> From: David Thompson 
>>
>> * gnu/packages/autotools.scm (autoconf-archive): New variable.
>
> [...]
>
>> +(synopsis "Additional macros for GNU Autoconf")
>> +(description
>> + "The GNU Autoconf Archive is a collection of more than 500 macros for 
>> GNU
>> +Autoconf.")
>
> OK with the synopsis and description suggested by ‘guix lint’.  :-)

Oh yeah, forgot about that!

Fixed and pushed.  Thanks!

- Dave



Re: [PATCH] gnu: Add autoconf-archive.

2016-05-25 Thread Ludovic Courtès
David Thompson  skribis:

> From: David Thompson 
>
> * gnu/packages/autotools.scm (autoconf-archive): New variable.

[...]

> +(synopsis "Additional macros for GNU Autoconf")
> +(description
> + "The GNU Autoconf Archive is a collection of more than 500 macros for 
> GNU
> +Autoconf.")

OK with the synopsis and description suggested by ‘guix lint’.  :-)

Thanks!

Ludo’.



Re: [PATCH] gnu: Add autoconf-archive.

2016-05-25 Thread Ricardo Wurmus

David Thompson  writes:

> From: David Thompson 
>
> * gnu/packages/autotools.scm (autoconf-archive): New variable.
> ---
>  gnu/packages/autotools.scm | 20 
>  1 file changed, 20 insertions(+)
>
> diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm
> index ddc628d..1f0c2af 100644
> --- a/gnu/packages/autotools.scm
> +++ b/gnu/packages/autotools.scm
> @@ -159,6 +159,26 @@ exec ~a --no-auto-compile \"$0\" \"$@\"
>  port)))
> (chmod (string-append bin "/autoconf") #o555)))
>  
> +(define-public autoconf-archive
> +  (package
> +(name "autoconf-archive")
> +(version "2016.03.20")
> +(source
> + (origin
> +  (method url-fetch)
> +  (uri (string-append "mirror://gnu/autoconf-archive/autoconf-archive-"
> +  version ".tar.xz"))
> +  (sha256
> +   (base32
> +"0dz4fnc723jqn3by22ds5fys7g31apzm1r9allldvva0yvzjxyw8"
> +(build-system gnu-build-system)
> +(home-page "https://www.gnu.org/software/autoconf-archive";)
> +(synopsis "Additional macros for GNU Autoconf")
> +(description
> + "The GNU Autoconf Archive is a collection of more than 500 macros for 
> GNU
> +Autoconf.")
> +(license gpl3+)))
> +

Looks good to me.  (I have an unsubmitted patch for this sitting on my
disk.)

~~ Ricardo




[PATCH] gnu: Add autoconf-archive.

2016-05-25 Thread David Thompson
From: David Thompson 

* gnu/packages/autotools.scm (autoconf-archive): New variable.
---
 gnu/packages/autotools.scm | 20 
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm
index ddc628d..1f0c2af 100644
--- a/gnu/packages/autotools.scm
+++ b/gnu/packages/autotools.scm
@@ -159,6 +159,26 @@ exec ~a --no-auto-compile \"$0\" \"$@\"
 port)))
(chmod (string-append bin "/autoconf") #o555)))
 
+(define-public autoconf-archive
+  (package
+(name "autoconf-archive")
+(version "2016.03.20")
+(source
+ (origin
+  (method url-fetch)
+  (uri (string-append "mirror://gnu/autoconf-archive/autoconf-archive-"
+  version ".tar.xz"))
+  (sha256
+   (base32
+"0dz4fnc723jqn3by22ds5fys7g31apzm1r9allldvva0yvzjxyw8"
+(build-system gnu-build-system)
+(home-page "https://www.gnu.org/software/autoconf-archive";)
+(synopsis "Additional macros for GNU Autoconf")
+(description
+ "The GNU Autoconf Archive is a collection of more than 500 macros for GNU
+Autoconf.")
+(license gpl3+)))
+
 (define-public autobuild
   (package
 (name "autobuild")
-- 
2.7.3