all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add perl-mhonarc.
@ 2016-09-07 18:24 ng0
  2016-09-11  6:21 ` Efraim Flashner
  0 siblings, 1 reply; 7+ messages in thread
From: ng0 @ 2016-09-07 18:24 UTC (permalink / raw)
  To: guix-devel; +Cc: ng0

* 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

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

* Re: [PATCH] gnu: Add perl-mhonarc.
  2016-09-07 18:24 [PATCH] gnu: Add perl-mhonarc ng0
@ 2016-09-11  6:21 ` Efraim Flashner
  2016-09-11 15:23   ` Leo Famulari
  0 siblings, 1 reply; 7+ messages in thread
From: Efraim Flashner @ 2016-09-11  6:21 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1758 bytes --]

On Wed, Sep 07, 2016 at 06:24:39PM +0000, 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   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH] gnu: Add perl-mhonarc.
  2016-09-11  6:21 ` Efraim Flashner
@ 2016-09-11 15:23   ` Leo Famulari
  2016-09-11 15:46     ` ng0
  0 siblings, 1 reply; 7+ messages in thread
From: Leo Famulari @ 2016-09-11 15:23 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 369 bytes --]

On Sun, Sep 11, 2016 at 09:21:39AM +0300, Efraim Flashner wrote:
> On Wed, Sep 07, 2016 at 06:24:39PM +0000, 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+?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH] gnu: Add perl-mhonarc.
  2016-09-11 15:23   ` Leo Famulari
@ 2016-09-11 15:46     ` ng0
  2016-09-13  5:35       ` Leo Famulari
  0 siblings, 1 reply; 7+ messages in thread
From: ng0 @ 2016-09-11 15:46 UTC (permalink / raw)
  To: Leo Famulari, Efraim Flashner; +Cc: guix-devel

Leo Famulari <leo@famulari.name> 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 +0000, 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

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

* Re: [PATCH] gnu: Add perl-mhonarc.
  2016-09-11 15:46     ` ng0
@ 2016-09-13  5:35       ` Leo Famulari
  2016-09-14  9:29         ` ng0
  0 siblings, 1 reply; 7+ messages in thread
From: Leo Famulari @ 2016-09-13  5:35 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

On Sun, Sep 11, 2016 at 03:46:34PM +0000, 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".

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

* Re: [PATCH] gnu: Add perl-mhonarc.
  2016-09-13  5:35       ` Leo Famulari
@ 2016-09-14  9:29         ` ng0
  2016-09-14 21:32           ` Leo Famulari
  0 siblings, 1 reply; 7+ messages in thread
From: ng0 @ 2016-09-14  9:29 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 399 bytes --]

Leo Famulari <leo@famulari.name> writes:

> On Sun, Sep 11, 2016 at 03:46:34PM +0000, 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.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-Add-mhonarc.patch --]
[-- Type: text/x-patch, Size: 1501 bytes --]

From 8c7090c7da019b5ff2764d9fb350cf18db2507aa Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Wed, 14 Sep 2016 09:26:04 +0000
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


[-- Attachment #1.3: Type: text/plain, Size: 28 bytes --]



-- 
              ng0

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 800 bytes --]

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

* Re: [PATCH] gnu: Add perl-mhonarc.
  2016-09-14  9:29         ` ng0
@ 2016-09-14 21:32           ` Leo Famulari
  0 siblings, 0 replies; 7+ messages in thread
From: Leo Famulari @ 2016-09-14 21:32 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 561 bytes --]

On Wed, Sep 14, 2016 at 09:29:46AM +0000, ng0 wrote:
> Leo Famulari <leo@famulari.name> writes:
> 
> > On Sun, Sep 11, 2016 at 03:46:34PM +0000, 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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

end of thread, other threads:[~2016-09-14 21:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-07 18:24 [PATCH] gnu: Add perl-mhonarc ng0
2016-09-11  6:21 ` Efraim Flashner
2016-09-11 15:23   ` Leo Famulari
2016-09-11 15:46     ` ng0
2016-09-13  5:35       ` Leo Famulari
2016-09-14  9:29         ` ng0
2016-09-14 21:32           ` Leo Famulari

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.