[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: Use ‘license:’ prefix in (gnu packages protobuf).
From: |
Tobias Geerinckx-Rice |
Subject: |
07/09: gnu: Use ‘license:’ prefix in (gnu packages protobuf). |
Date: |
Mon, 20 Nov 2017 20:50:58 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 7e685deeb72cb2ec4bbb647799d57b4e4d91dbd7
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Thu Nov 16 03:52:07 2017 +0100
gnu: Use ‘license:’ prefix in (gnu packages protobuf).
* gnu/packages/protobuf.scm (fstrm, protobuf, protobuf-2, protobuf-c)
(python-protobuf, python2-protobuf): Use ‘license:’ prefix.
---
gnu/packages/protobuf.scm | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm
index 98f9fc9..1ed813b 100644
--- a/gnu/packages/protobuf.scm
+++ b/gnu/packages/protobuf.scm
@@ -25,8 +25,7 @@
#:use-module (guix download)
#:use-module (guix build-system gnu)
#:use-module (guix build-system python)
- #:use-module ((guix licenses)
- #:select (asl2.0 bsd-2 bsd-3 non-copyleft))
+ #:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages compression)
#:use-module (gnu packages gcc)
#:use-module (gnu packages libevent)
@@ -66,8 +65,8 @@ XML, JSON, MessagePack, YAML, etc.
Frame Streams can be used either as a streaming transport over a reliable byte
stream socket (TCP sockets, TLS connections, @code{AF_UNIX} sockets, etc.) for
data in motion, or as a file format for data at rest.")
- (license (list asl2.0
- (non-copyleft #f "See libmy/argv.c"))))) ; libmy/argv*
+ (license (list license:asl2.0
+ (license:non-copyleft #f "See libmy/argv*")))))
(define-public protobuf
(package
@@ -107,7 +106,7 @@ data in motion, or as a file format for data at rest.")
"Protocol Buffers are a way of encoding structured data in an efficient
yet extensible format. Google uses Protocol Buffers for almost all of its
internal RPC protocols and file formats.")
- (license bsd-3)))
+ (license license:bsd-3)))
;; XXX Remove this old version when no other packages depend on it.
(define-public protobuf-2
@@ -145,7 +144,7 @@ data serialization format. It includes
@code{libprotobuf-c}, a pure C library
that implements protobuf encoding and decoding, and @code{protoc-c}, a code
generator that converts Protocol Buffer @code{.proto} files to C descriptor
code.")
- (license bsd-2)))
+ (license license:bsd-2)))
(define-public python-protobuf
(package
@@ -166,7 +165,7 @@ code.")
(description
"Protocol buffers are a language-neutral, platform-neutral extensible
mechanism for serializing structured data.")
- (license bsd-3)))
+ (license license:bsd-3)))
(define-public python2-protobuf
(package-with-python2 python-protobuf))
- branch master updated (ebde40a -> 0056f4c), Tobias Geerinckx-Rice, 2017/11/20
- 01/09: gnu: eid-mw: Update to 4.3.4., Tobias Geerinckx-Rice, 2017/11/20
- 09/09: gnu: knot: Update licence information., Tobias Geerinckx-Rice, 2017/11/20
- 04/09: gnu: perl-devel-stacktrace: Update to 2.03., Tobias Geerinckx-Rice, 2017/11/20
- 02/09: gnu: nss: Mark up description., Tobias Geerinckx-Rice, 2017/11/20
- 05/09: gnu: protobuf: Add ‘static’ output., Tobias Geerinckx-Rice, 2017/11/20
- 08/09: gnu: knot: Support dnstap query logging., Tobias Geerinckx-Rice, 2017/11/20
- 06/09: gnu: Add fstrm., Tobias Geerinckx-Rice, 2017/11/20
- 03/09: gnu: btrfs-progs: Update to 4.14., Tobias Geerinckx-Rice, 2017/11/20
- 07/09: gnu: Use ‘license:’ prefix in (gnu packages protobuf).,
Tobias Geerinckx-Rice <=