Re: [PATCH] gnu: Add perl-mhonarc.

2016-09-14 Thread Leo Famulari
On Wed, Sep 14, 2016 at 09:29:46AM +, ng0 wrote:
> Leo Famulari  writes:
> 
> > On Sun, Sep 11, 2016 at 03:46:34PM +, ng0 wrote:
> >> Should this then be adjusted to gpl2+ ? I took the information from
> >> their website.
> >
> > Yes, I think it should be gpl2+, since the source files seem to all say
> > "or later".
> >
> 
> I have updated the license and changed the name to just mhonarc. There's
> currently only one application named mhonarc.

Sounds good to me! Pushed as 74c0282c4591720b9a81359e400bb460718b78c1


signature.asc
Description: PGP signature


Re: [PATCH] gnu: Add perl-mhonarc.

2016-09-14 Thread ng0
Leo Famulari  writes:

> On Sun, Sep 11, 2016 at 03:46:34PM +, ng0 wrote:
>> Should this then be adjusted to gpl2+ ? I took the information from
>> their website.
>
> Yes, I think it should be gpl2+, since the source files seem to all say
> "or later".
>

I have updated the license and changed the name to just mhonarc. There's
currently only one application named mhonarc.

From 8c7090c7da019b5ff2764d9fb350cf18db2507aa Mon Sep 17 00:00:00 2001
From: ng0 
Date: Wed, 14 Sep 2016 09:26:04 +
Subject: [PATCH] gnu: Add mhonarc.

* gnu/packages/mail.scm (mhonarc): New variable.
---
 gnu/packages/mail.scm | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index c2fc1a9..90c2da4 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -1388,3 +1388,25 @@ to mbox files, maildir folders or a Mail Delivery Agent (MDA),
 TLS/SSL, several authentication methods, Internationalized Domain
 Names (IDN) and SOCKS proxies.")
 (license gpl3+)))
+
+(define-public mhonarc
+  (package
+(name "mhonarc")
+(version "2.6.19")
+(source
+ (origin
+   (method url-fetch)
+   (uri (string-append "mirror://cpan/authors/id/E/EH/EHOOD/MHonArc-"
+   version ".tar.gz"))
+   (sha256
+(base32
+ "0ll3v93yji334zqp6xfzfxc0127pmjcznmai1l5q6dzawrs2igzq"
+(build-system perl-build-system)
+(home-page "https://www.mhonarc.org/";)
+(synopsis "Create HTML archives of mail/news messages")
+(description
+ "MHonArc is a Perl mail-to-HTML converter.  MHonArc
+provides HTML mail archiving with index, mail thread linking,
+etc; plus other capabilities including support for MIME and
+powerful user customization features.")
+(license gpl2+)))
-- 
2.10.0



-- 
  ng0


signature.asc
Description: PGP signature


Re: [PATCH] gnu: Add perl-mhonarc.

2016-09-12 Thread Leo Famulari
On Sun, Sep 11, 2016 at 03:46:34PM +, ng0 wrote:
> Should this then be adjusted to gpl2+ ? I took the information from
> their website.

Yes, I think it should be gpl2+, since the source files seem to all say
"or later".



Re: [PATCH] gnu: Add perl-mhonarc.

2016-09-11 Thread ng0
Leo Famulari  writes:

> [ Unknown signature status ]
> On Sun, Sep 11, 2016 at 09:21:39AM +0300, Efraim Flashner wrote:
>> On Wed, Sep 07, 2016 at 06:24:39PM +, ng0 wrote:
>> > +(license gpl2)))
>> 
>> This looks good to me. Anyone else want to take a look at it before I
>> push it?
>
> Looks good, although almost of the Perl files in 'lib/' include the "or
> later" text in the license header. Is it really GPL2+?

Should this then be adjusted to gpl2+ ? I took the information from
their website.
-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org



Re: [PATCH] gnu: Add perl-mhonarc.

2016-09-11 Thread Leo Famulari
On Sun, Sep 11, 2016 at 09:21:39AM +0300, Efraim Flashner wrote:
> On Wed, Sep 07, 2016 at 06:24:39PM +, ng0 wrote:
> > +(license gpl2)))
> 
> This looks good to me. Anyone else want to take a look at it before I
> push it?

Looks good, although almost of the Perl files in 'lib/' include the "or
later" text in the license header. Is it really GPL2+?


signature.asc
Description: PGP signature


Re: [PATCH] gnu: Add perl-mhonarc.

2016-09-10 Thread Efraim Flashner
On Wed, Sep 07, 2016 at 06:24:39PM +, ng0 wrote:
> * gnu/packages/mail.scm (perl-mhonarc): New variable.
> ---
>  gnu/packages/mail.scm | 23 +++
>  1 file changed, 23 insertions(+)
> 
> diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
> index c2fc1a9..9740339 100644
> --- a/gnu/packages/mail.scm
> +++ b/gnu/packages/mail.scm
> @@ -1388,3 +1388,26 @@ to mbox files, maildir folders or a Mail Delivery 
> Agent (MDA),
>  TLS/SSL, several authentication methods, Internationalized Domain
>  Names (IDN) and SOCKS proxies.")
>  (license gpl3+)))
> +
> +(define-public perl-mhonarc
> +  (package
> +(name "perl-mhonarc")
> +(version "2.6.19")
> +(source
> + (origin
> +   (method url-fetch)
> +   (uri (string-append
> + "mirror://cpan/authors/id/E/EH/EHOOD/MHonArc-"
> + version ".tar.gz"))
> +   (sha256
> +(base32
> + "0ll3v93yji334zqp6xfzfxc0127pmjcznmai1l5q6dzawrs2igzq"
> +(build-system perl-build-system)
> +(home-page "https://www.mhonarc.org/";)
> +(synopsis "Create HTML archives of mail/news messages")
> +(description
> + "MHonArc is a Perl mail-to-HTML converter.  MHonArc
> +provides HTML mail archiving with index, mail thread linking,
> +etc; plus other capabilities including support for MIME and
> +powerful user customization features.")
> +(license gpl2)))
> -- 
> 2.10.0
> 

This looks good to me. Anyone else want to take a look at it before I
push it?

-- 
Efraim Flashner  אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted


signature.asc
Description: PGP signature