unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Bruno Victal <mirai@makinata.eu>
To: 64486@debbugs.gnu.org
Cc: Bruno Victal <mirai@makinata.eu>
Subject: [bug#64486] [PATCH 09/22] gnu: Add perl-string-license.
Date: Thu,  6 Jul 2023 07:42:40 +0100	[thread overview]
Message-ID: <11a0386c60dea9ffb3b081d16fb17e941dca76fd.1688625768.git.mirai@makinata.eu> (raw)
In-Reply-To: <cover.1688625218.git.mirai@makinata.eu>

* gnu/packages/license.scm (perl-string-license): New variable.
---
 gnu/packages/license.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/license.scm b/gnu/packages/license.scm
index ca8375d19d..b619c80d1d 100644
--- a/gnu/packages/license.scm
+++ b/gnu/packages/license.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
 ;;; Copyright © 2021 Tanguy Le Carrour <tanguy@bioneland.org>
 ;;; Copyright © 2022 Felix Gruber <felgru@posteo.net>
+;;; Copyright © 2023 Bruno Victal <mirai@makinata.eu>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -23,6 +24,7 @@
 (define-module (gnu packages license)
   #:use-module (gnu packages)
   #:use-module (gnu packages check)
+  #:use-module (gnu packages freedesktop)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages perl-check)
   #:use-module (gnu packages python-build)
@@ -89,6 +91,38 @@ (define-public perl-string-copyright
 statements and serializes in normalized format.")
     (license gpl3+)))
 
+(define-public perl-string-license
+  (package
+    (name "perl-string-license")
+    (version "0.0.9")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://cpan/authors/id/J/JO/JONASS/String-License-v"
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "1dbw8rgwdlgnlvscijpb2dnw5irfd6wvca587bprq5kk19mf7jzf"))))
+    (build-system perl-build-system)
+    (native-inputs (list perl-file-basedir
+                         perl-regexp-pattern-license
+                         perl-software-license
+                         perl-test-without-module
+                         perl-test2-suite
+                         perl-yaml-libyaml))
+    (propagated-inputs (list perl-array-intspan
+                             perl-feature-compat-class
+                             perl-log-any
+                             perl-namespace-clean
+                             perl-path-tiny
+                             perl-regexp-pattern
+                             perl-regexp-pattern-license))
+    (home-page "https://metacpan.org/release/String-License")
+    (synopsis "Detect source code license statements in a text string")
+    (description "@code{String::License} identifies license statements in a
+string and serializes them in a normalized format.")
+    (license agpl3+)))
+
 (define-public perl-software-license
   (package
     (name "perl-software-license")
-- 
2.40.1





  parent reply	other threads:[~2023-07-06  6:45 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-06  6:40 [bug#64486] [PATCH 00/22] Update licensecheck to 3.3.9 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 01/22] gnu: Add perl-xs-parse-sublike Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 02/22] gnu: Add perl-object-pad Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 03/22] gnu: Add perl-feature-compat-class Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 04/22] gnu: Add perl-feature-compat-try Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 05/22] gnu: Add perl-log-any-adapter-screen Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 06/22] gnu: Add perl-file-chdir Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 07/22] gnu: Add perl-test2-tools-command Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 08/22] gnu: Add perl-array-intspan Bruno Victal
2023-07-06  6:42 ` Bruno Victal [this message]
2023-07-06  6:42 ` [bug#64486] [PATCH 10/22] gnu: perl-xs-parse-keyword: Update to 0.34 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 11/22] gnu: Add perl-extutils-cchecker Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 12/22] gnu: perl-test2-suite: Update to 0.000155 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 13/22] gnu: perl-test2-suite: Use G-Expressions Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 14/22] gnu: Add perl-string-trim-more Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 15/22] gnu: Add perl-regexp-pattern-defhash Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 16/22] gnu: Add perl-hash-defhash Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 17/22] gnu: Add perl-test-regexp-pattern Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 18/22] gnu: perl-regexp-pattern: Update to 0.2.14 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 19/22] gnu: perl-regexp-pattern-license: Update to 3.11.0 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 20/22] gnu: perl-string-copyright: Update to 0.003014 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 21/22] gnu: licensecheck: Update to 3.3.9 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 22/22] gnu: licensecheck: Use G-Expressions. Refactor phases Bruno Victal
2023-10-05 13:29 ` [bug#64486] [PATCH 00/22] Update licensecheck to 3.3.9 Bruno Victal
2023-10-24 15:15 ` [bug#64486] [PATCH v2 " Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 01/22] gnu: Add perl-xs-parse-sublike Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 02/22] gnu: Add perl-object-pad Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 03/22] gnu: Add perl-feature-compat-class Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 04/22] gnu: Add perl-feature-compat-try Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 05/22] gnu: Add perl-log-any-adapter-screen Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 06/22] gnu: Add perl-file-chdir Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 07/22] gnu: Add perl-test2-tools-command Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 08/22] gnu: Add perl-array-intspan Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 09/22] gnu: Add perl-string-license Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 10/22] gnu: perl-xs-parse-keyword: Update to 0.34 Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 11/22] gnu: Add perl-extutils-cchecker Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 12/22] gnu: perl-test2-suite: Update to 0.000155 Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 13/22] gnu: perl-test2-suite: Use G-Expressions Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 14/22] gnu: Add perl-string-trim-more Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 15/22] gnu: Add perl-regexp-pattern-defhash Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 16/22] gnu: Add perl-hash-defhash Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 17/22] gnu: Add perl-test-regexp-pattern Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 18/22] gnu: perl-regexp-pattern: Update to 0.2.14 Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 19/22] gnu: perl-regexp-pattern-license: Update to 3.11.0 Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 20/22] gnu: perl-string-copyright: Update to 0.003014 Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 21/22] gnu: licensecheck: Update to 3.3.9 Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 22/22] gnu: licensecheck: Use G-Expressions. Refactor phases Bruno Victal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=11a0386c60dea9ffb3b081d16fb17e941dca76fd.1688625768.git.mirai@makinata.eu \
    --to=mirai@makinata.eu \
    --cc=64486@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).