guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

17/22: gnu: Add java-osgi-service-log.


From: julien lepiller
Subject: 17/22: gnu: Add java-osgi-service-log.
Date: Tue, 3 Oct 2017 15:41:16 -0400 (EDT)

roptat pushed a commit to branch master
in repository guix.

commit 98c9f16c17f9283c584a5d99713aa18ce7310c69
Author: Julien Lepiller <address@hidden>
Date:   Sun Oct 1 19:05:28 2017 +0200

    gnu: Add java-osgi-service-log.
    
    * gnu/packages/java.scm (java-osgi-service-log): New variable.
---
 gnu/packages/java.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 9237cca..0b5591b 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -5109,3 +5109,30 @@ a repository service that contains resources.")
       "OSGi, for Open Services Gateway initiative framework, is a module system
 and service platform for the Java programming language.")
     (license license:asl2.0)))
+
+(define-public java-osgi-service-log
+  (package
+    (name "java-osgi-service-log")
+    (version "1.3.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://central.maven.org/maven2/org/osgi/";
+                                  "org.osgi.service.log/"
+                                  version "/org.osgi.service.log-"
+                                  version "-sources.jar"))
+              (sha256
+               (base32
+                "1029j30dzcwializzca0j3fkhwwz08kmmsha5agw1iccscimj6r0"))))
+    (build-system ant-build-system)
+    (arguments
+     `(#:jar-name "osgi-service-log.jar"
+       #:tests? #f)); no tests
+    (inputs
+     `(("java-osgi-framework" ,java-osgi-framework)))
+    (home-page "http://www.osgi.org";)
+    (synopsis "Provides methods for bundles to write messages to the log")
+    (description
+      "OSGi, for Open Services Gateway initiative framework, is a module system
+and service platform for the Java programming language.  This package contains
+the log service.")
+    (license license:asl2.0)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]