From mboxrd@z Thu Jan 1 00:00:00 1970 From: Theodoros Foradis Subject: [PATCH] gnu: Add plantuml. Date: Mon, 24 Oct 2016 16:12:25 +0300 Message-ID: <20161024131225.24436-1-theodoros.for@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38777) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1byf6b-0000DE-7Y for guix-devel@gnu.org; Mon, 24 Oct 2016 09:16:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1byf6W-0004uj-3Q for guix-devel@gnu.org; Mon, 24 Oct 2016 09:15:57 -0400 Received: from smtp5.openmailbox.org ([62.4.1.39]:59384) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1byf6V-0004ud-R1 for guix-devel@gnu.org; Mon, 24 Oct 2016 09:15:52 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/plantuml.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. --- gnu/local.mk | 1 + gnu/packages/plantuml.scm | 87 +++++++++++++++++++++++++++++++++++++++++= ++++++ 2 files changed, 88 insertions(+) create mode 100644 gnu/packages/plantuml.scm diff --git a/gnu/local.mk b/gnu/local.mk index 0d400e9..678acfd 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -292,6 +292,7 @@ GNU_SYSTEM_MODULES =3D \ %D%/packages/perl.scm \ %D%/packages/photo.scm \ %D%/packages/pkg-config.scm \ + %D%/packages/plantuml.scm \ %D%/packages/plotutils.scm \ %D%/packages/polkit.scm \ %D%/packages/popt.scm \ diff --git a/gnu/packages/plantuml.scm b/gnu/packages/plantuml.scm new file mode 100644 index 0000000..11c5f72 --- /dev/null +++ b/gnu/packages/plantuml.scm @@ -0,0 +1,87 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright =C2=A9 2016 Theodoros Foradis +;;; +;;; 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 (a= t +;;; 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 . + +(define-module (gnu packages plantuml) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix utils) + #:use-module (guix build-system ant) + #:use-module (gnu packages bash) + #:use-module (gnu packages graphviz) + #:use-module (gnu packages java)) + +(define-public plantuml + (package + (name "plantuml") + (version "8048") + (source (origin + (method url-fetch) + (uri (string-append + "https://downloads.sourceforge.net/project/plantuml/= plantuml-" + version ".tar.gz")) + (sha256 + (base32 + "1vipxd6p7isb1k1qqh4hrpfcj27hx1nll2yp0rfwpvps1w2d936i"))= )) + (build-system ant-build-system) + (arguments + `(#:tests? #f ; no tests + #:build-target "dist" + #:phases + (modify-phases %standard-phases + (add-before 'build 'delete-extra-from-cp + (lambda _ + (substitute* "build.xml" + (("1.6") "1.7")) + (substitute* "build.xml" + (("") "-->")))= ) + (add-before 'install 'gen-install + (lambda* (#:key outputs #:allow-other-keys) + (mkdir-p "build/jar") + (system* "mv" "plantuml.jar" "build/jar") + ((@@ (guix build ant-build-system) default-build.xml= ) + "plantuml.jar" + (string-append (assoc-ref outputs "out") + "/share/java")))) + (add-after 'install 'make-wrapper + (lambda* (#:key inputs outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (wrapper (string-append out "/bin/plantuml"= ))) + (mkdir-p (string-append out "/bin")) + (with-output-to-file wrapper + (lambda _ + (display + (string-append + "#!" (assoc-ref inputs "bash") "/bin/sh\n\= n" + (assoc-ref inputs "jre") "/bin/java -jar " + out "/share/java/plantuml.jar \"$@\"\n")))= ) + (chmod wrapper #o555))))))) + (inputs + `(("graphviz" ,graphviz) + ("bash" ,bash) + ("jre" ,icedtea "out"))) + (home-page "http://plantuml.com/") + (synopsis "Draw UML diagrams from simple textual description") + (description + "Plantuml is a tool to generate sequence, usecase, class, activity, +component, state, deployment and object UML diagrams, using a simple and +human readable text description. Contains salt, a tool that can design = simple +graphical interfaces.") + (license license:gpl3+))) --=20 2.10.1