GNU bug report logs - #39300
[PATCH] gnu: Add mscgen.

Previous Next

Package: guix-patches;

Reported by: Alexander Krotov <krotov <at> iitp.ru>

Date: Sun, 26 Jan 2020 21:44:01 UTC

Severity: normal

Tags: patch

Done: Leo Famulari <leo <at> famulari.name>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 39300 in the body.
You can then email your comments to 39300 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#39300; Package guix-patches. (Sun, 26 Jan 2020 21:44:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Alexander Krotov <krotov <at> iitp.ru>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 26 Jan 2020 21:44:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Alexander Krotov <krotov <at> iitp.ru>
To: guix-patches <at> gnu.org
Cc: Alexander Krotov <krotov <at> iitp.ru>
Subject: [PATCH] gnu: Add mscgen.
Date: Mon, 27 Jan 2020 00:33:24 +0300
* gnu/packages/mscgen.scm: New file.
* gnu/packages/mscgen.scm (mscgen): New variable.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add mscgen.
---
 gnu/local.mk            |  1 +
 gnu/packages/mscgen.scm | 52 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)
 create mode 100644 gnu/packages/mscgen.scm

diff --git a/gnu/local.mk b/gnu/local.mk
index bc011c09fb..9c0b626fca 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -352,6 +352,7 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/mpd.scm				\
   %D%/packages/mp3.scm				\
   %D%/packages/mpi.scm				\
+  %D%/packages/mscgen.scm			\
   %D%/packages/multiprecision.scm		\
   %D%/packages/music.scm			\
   %D%/packages/musl.scm				\
diff --git a/gnu/packages/mscgen.scm b/gnu/packages/mscgen.scm
new file mode 100644
index 0000000000..787d186e50
--- /dev/null
+++ b/gnu/packages/mscgen.scm
@@ -0,0 +1,52 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2020 Alexander Krotov <krotov <at> iitp.ru>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages mscgen)
+  #:use-module (guix licenses)
+  #:use-module (guix packages)
+  #:use-module (guix download)
+  #:use-module (guix build-system gnu)
+  #:use-module (gnu packages gd))
+
+(define-public mscgen
+  (package
+    (name "mscgen")
+    (version "0.20")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://www.mcternan.me.uk/mscgen/software/mscgen-src-"
+                           version
+                           ".tar.gz"))
+       (sha256
+        (base32
+         "08yw3maxhn5fl1lff81gmcrpa4j9aas4mmby1g9w5qcr0np82d1w"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("gd" ,gd)))
+    (home-page "http://www.mcternan.me.uk/mscgen/")
+    (synopsis "Message Sequence Chart Generator")
+    (description "Mscgen is a small program that parses Message Sequence Chart
+descriptions and produces PNG, SVG, EPS or server side image maps (ismaps) as
+the output. Message Sequence Charts (MSCs) are a way of representing entities
+and interactions over some time period and are often used in combination with
+SDL. MSCs are popular in Telecoms to specify how protocols operate although
+MSCs need not be complicated to create or use. Mscgen aims to provide a simple
+text language that is clear to create, edit and understand, which can also be
+transformed into common image formats for display or printing.")
+    (license gpl2+)))
-- 
2.25.0





Information forwarded to guix-patches <at> gnu.org:
bug#39300; Package guix-patches. (Fri, 07 Feb 2020 23:45:01 GMT) Full text and rfc822 format available.

Message #8 received at 39300 <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: Alexander Krotov <krotov <at> iitp.ru>
Cc: 39300 <at> debbugs.gnu.org
Subject: Re: [bug#39300] [PATCH] gnu: Add mscgen.
Date: Fri, 7 Feb 2020 18:43:59 -0500
On Mon, Jan 27, 2020 at 12:33:24AM +0300, Alexander Krotov wrote:
> * gnu/packages/mscgen.scm: New file.
> * gnu/packages/mscgen.scm (mscgen): New variable.
> * gnu/local.mk (GNU_SYSTEM_MODULES): Add mscgen.

Thanks! In general it LGTM...

> +(define-module (gnu packages mscgen)

Do you think that it would fit in (gnu packages graph)?




Information forwarded to guix-patches <at> gnu.org:
bug#39300; Package guix-patches. (Sat, 08 Feb 2020 19:17:01 GMT) Full text and rfc822 format available.

Message #11 received at 39300 <at> debbugs.gnu.org (full text, mbox):

From: Alexander Krotov <krotov <at> iitp.ru>
To: Leo Famulari <leo <at> famulari.name>
Cc: 39300 <at> debbugs.gnu.org
Subject: Re: [bug#39300] [PATCH] gnu: Add mscgen.
Date: Sat, 8 Feb 2020 22:09:07 +0300
>> +(define-module (gnu packages mscgen)
> 
> Do you think that it would fit in (gnu packages graph)?

Yes, feel free to place it there.




Reply sent to Leo Famulari <leo <at> famulari.name>:
You have taken responsibility. (Tue, 11 Feb 2020 17:21:01 GMT) Full text and rfc822 format available.

Notification sent to Alexander Krotov <krotov <at> iitp.ru>:
bug acknowledged by developer. (Tue, 11 Feb 2020 17:21:02 GMT) Full text and rfc822 format available.

Message #16 received at 39300-done <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: Alexander Krotov <krotov <at> iitp.ru>
Cc: 39300-done <at> debbugs.gnu.org
Subject: Re: [bug#39300] [PATCH] gnu: Add mscgen.
Date: Tue, 11 Feb 2020 12:20:22 -0500
On Sat, Feb 08, 2020 at 10:09:07PM +0300, Alexander Krotov wrote:
> >> +(define-module (gnu packages mscgen)
> > 
> > Do you think that it would fit in (gnu packages graph)?
> 
> Yes, feel free to place it there.

Okay, pushed as 56973172c9a8744637d6506bdff485cd27ff9791 after fixing
some cosmetic issues highlighted by `guix lint`. Thanks!




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 11 Mar 2020 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 45 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.