unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#31854] [PATCH 1/8] gnu: Add perl-x11-protocol-other.
@ 2018-06-16  2:24 Kei Kebreau
  2018-06-16  2:26 ` [bug#31854] [PATCH 2/8] gnu: Add perl-cpan-changes Kei Kebreau
  2018-06-16 22:13 ` [bug#31854] [PATCH 1/8] gnu: Add perl-x11-protocol-other Ludovic Courtès
  0 siblings, 2 replies; 10+ messages in thread
From: Kei Kebreau @ 2018-06-16  2:24 UTC (permalink / raw)
  To: 31854; +Cc: Kei Kebreau

* gnu/packages/xorg.scm (perl-x11-protocol-other): New variable.
---
 gnu/packages/xorg.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 54001187d..5e930fe0d 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -15,6 +15,7 @@
 ;;; Copyright © 2017, 2018 Rutger Helling <rhelling@mykolab.com>
 ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -5855,6 +5856,32 @@ perl programs to display windows and graphics on X11 servers.")
     ;; for details)."
     (license license:perl-license)))
 
+(define-public perl-x11-protocol-other
+  (package
+    (name "perl-x11-protocol-other")
+    (version "30")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/K/KR/KRYDE/X11-Protocol-Other-"
+             version ".tar.gz"))
+       (sha256
+        (base32
+         "1mambi57cdkj82wiw1l8y2f70a60qsamdas0165hlj10drryfgrj"))))
+    (build-system perl-build-system)
+    (native-inputs
+     `(("perl-encode-hanextra" ,perl-encode-hanextra)
+       ("perl-module-util" ,perl-module-util)))
+    (propagated-inputs
+     `(("perl-x11-protocol" ,perl-x11-protocol)))
+    (home-page "http://search.cpan.org/dist/X11-Protocol-Other/")
+    (synopsis "Miscellaneous helpers for X11::Protocol connections")
+    (description
+     "X11::Protocol::Other contains window manager related functions for use by
+client programs, as per the ICCCM and some of the EWMH.")
+    (license license:gpl3+)))
+
 (define-public xcompmgr
   (package
     (name "xcompmgr")
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#31854] [PATCH 2/8] gnu: Add perl-cpan-changes.
  2018-06-16  2:24 [bug#31854] [PATCH 1/8] gnu: Add perl-x11-protocol-other Kei Kebreau
@ 2018-06-16  2:26 ` Kei Kebreau
  2018-06-16  2:26   ` [bug#31854] [PATCH 3/8] gnu: Add perl-module-manifest Kei Kebreau
                     ` (5 more replies)
  2018-06-16 22:13 ` [bug#31854] [PATCH 1/8] gnu: Add perl-x11-protocol-other Ludovic Courtès
  1 sibling, 6 replies; 10+ messages in thread
From: Kei Kebreau @ 2018-06-16  2:26 UTC (permalink / raw)
  To: 31854; +Cc: Kei Kebreau

* gnu/packages/perl.scm (perl-cpan-changes): New variable.
---
 gnu/packages/perl.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 2d2bb62a7..1d6bf419d 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -20,6 +20,7 @@
 ;;; Copyright © 2017 Christopher Allan Webber <cwebber@dustycloud.org>
 ;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
 ;;; Copyright © 2018 Pierre Neidhardt <ambrevar@gmail.com>
+;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1522,6 +1523,27 @@ provides a means of converting those data streams back into into binary
 data.")
     (license perl-license)))
 
+(define-public perl-cpan-changes
+  (package
+    (name "perl-cpan-changes")
+    (version "0.400002")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/H/HA/HAARG/CPAN-Changes-"
+             version ".tar.gz"))
+       (sha256
+        (base32
+         "13dy78amkhwg278sv5im0ylyskhxpfivyl2aissqqih71nlxxvh1"))))
+    (build-system perl-build-system)
+    (home-page "http://search.cpan.org/dist/CPAN-Changes/")
+    (synopsis "Read and write Changes files")
+    (description
+     "CPAN::Changes helps users programmatically read and write Changes files
+that conform to a common specification.")
+    (license (package-license perl))))
+
 (define-public perl-cpan-meta-check
   (package
     (name "perl-cpan-meta-check")
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#31854] [PATCH 3/8] gnu: Add perl-module-manifest.
  2018-06-16  2:26 ` [bug#31854] [PATCH 2/8] gnu: Add perl-cpan-changes Kei Kebreau
@ 2018-06-16  2:26   ` Kei Kebreau
  2018-06-16  2:26   ` [bug#31854] [PATCH 4/8] gnu: Add perl-test-distmanifest Kei Kebreau
                     ` (4 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Kei Kebreau @ 2018-06-16  2:26 UTC (permalink / raw)
  To: 31854; +Cc: Kei Kebreau

* gnu/packages/perl.scm (perl-module-manifest): New variable.
---
 gnu/packages/perl.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 1d6bf419d..e7b46bdc1 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -5235,6 +5235,36 @@ strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
 installation version 5.005 or newer.")
     (license (package-license perl))))
 
+(define-public perl-module-manifest
+  (package
+    (name "perl-module-manifest")
+    (version "1.09")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/E/ET/ETHER/Module-Manifest-"
+             version ".tar.gz"))
+       (sha256
+        (base32
+         "16skpm804a19gsgxzn1wba3lmvc7cx5q8ly4srpyd82yy47zi5d3"))))
+    (build-system perl-build-system)
+    (native-inputs
+     `(("perl-test-exception" ,perl-test-exception)
+       ("perl-test-warn" ,perl-test-warn)))
+    (propagated-inputs
+     `(("perl-params-util" ,perl-params-util)))
+    (home-page "http://search.cpan.org/dist/Module-Manifest/")
+    (synopsis "Parse and examine a Perl distribution MANIFEST file")
+    (description
+     "@code{Module::Manifest} is a simple utility module created originally for
+use in @code{Module::Inspector}.
+
+It can load a MANIFEST file that comes in a Perl distribution tarball, examine
+the contents, and perform some simple tasks.  It can also load the
+MANIFEST.SKIP file and check that.")
+    (license (package-license perl))))
+
 (define-public perl-module-pluggable
   (package
     (name "perl-module-pluggable")
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#31854] [PATCH 4/8] gnu: Add perl-test-distmanifest.
  2018-06-16  2:26 ` [bug#31854] [PATCH 2/8] gnu: Add perl-cpan-changes Kei Kebreau
  2018-06-16  2:26   ` [bug#31854] [PATCH 3/8] gnu: Add perl-module-manifest Kei Kebreau
@ 2018-06-16  2:26   ` Kei Kebreau
  2018-06-16  2:26   ` [bug#31854] [PATCH 5/8] gnu: Add perl-file-finder Kei Kebreau
                     ` (3 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Kei Kebreau @ 2018-06-16  2:26 UTC (permalink / raw)
  To: 31854; +Cc: Kei Kebreau

* gnu/packages/perl-check.scm (perl-test-distmanifest): New variable.
---
 gnu/packages/perl-check.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/perl-check.scm b/gnu/packages/perl-check.scm
index a1be996e0..c70357de5 100644
--- a/gnu/packages/perl-check.scm
+++ b/gnu/packages/perl-check.scm
@@ -13,6 +13,7 @@
 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
 ;;; Copyright © 2018 Pierre Neidhardt <ambrevar@gmail.com>
+;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -364,6 +365,30 @@ modified or tested with this API, making it simple to test both individual
 files, as well as to verify that there are no missing or unknown files.")
     (license perl-license)))
 
+(define-public perl-test-distmanifest
+  (package
+    (name "perl-test-distmanifest")
+    (version "1.014")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/E/ET/ETHER/Test-DistManifest-"
+             version ".tar.gz"))
+       (sha256
+        (base32 "1ifpff5simjslabwy7ac6kdylv4c0b5b39fgpwf9ha16yh6w49ix"))))
+    (build-system perl-build-system)
+    (native-inputs
+     `(("perl-module-build" ,perl-module-build)))
+    (propagated-inputs
+     `(("perl-module-manifest" ,perl-module-manifest)))
+    (home-page "https://github.com/jawnsy/Test-DistManifest")
+    (synopsis "Author test that validates a package MANIFEST")
+    (description
+     "@code{Test::DistManifest} provides a simple method of testing that a
+MANIFEST file matches its distribution.")
+    (license perl-license)))
+
 (define-public perl-test-eol
   (package
     (name "perl-test-eol")
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#31854] [PATCH 5/8] gnu: Add perl-file-finder.
  2018-06-16  2:26 ` [bug#31854] [PATCH 2/8] gnu: Add perl-cpan-changes Kei Kebreau
  2018-06-16  2:26   ` [bug#31854] [PATCH 3/8] gnu: Add perl-module-manifest Kei Kebreau
  2018-06-16  2:26   ` [bug#31854] [PATCH 4/8] gnu: Add perl-test-distmanifest Kei Kebreau
@ 2018-06-16  2:26   ` Kei Kebreau
  2018-06-16  2:26   ` [bug#31854] [PATCH 6/8] gnu: Add perl-test-perltidy Kei Kebreau
                     ` (2 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Kei Kebreau @ 2018-06-16  2:26 UTC (permalink / raw)
  To: 31854; +Cc: Kei Kebreau

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

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index e7b46bdc1..88d55722e 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -9528,6 +9528,38 @@ File::Find replacement in Perl.")
 interface to File::Find::Object.")
   (license (package-license perl))))
 
+(define-public perl-file-finder
+  (package
+    (name "perl-file-finder")
+    (version "0.53")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/M/ME/MERLYN/File-Finder-"
+             version ".tar.gz"))
+       (sha256
+        (base32
+         "0x3a2xgzrka73lcmmwalq2mmpzxa7s6pm01ahxf677ksqsdc3jrf"))))
+    (build-system perl-build-system)
+    (propagated-inputs
+     `(("perl-text-glob" ,perl-text-glob)))
+    (home-page "http://search.cpan.org/dist/File-Finder/")
+    (synopsis "Wrapper for @code{File::Find} ala @code{find(1)}")
+    (description
+     "@code{File::Find} is great, but constructing the wanted routine can
+sometimes be a pain.  @code{File::Finder} provides a wanted-writer, using
+syntax that is directly mappable to the @code{find} command's syntax.
+
+A @code{File::Finder} object contains a hash of @code{File::Find} options, and
+a series of steps that mimic find's predicates.  Initially, a
+@code{File::Finder} object has no steps.  Each step method clones the previous
+object's options and steps, and then adds the new step, returning the new
+object.  In this manner, an object can be grown, step by step, by chaining
+method calls.  Furthermore, a partial sequence can be created and held, and
+used as the head of many different sequences.")
+    (license (package-license perl))))
+
 (define-public perl-font-ttf
   (package
     (name "perl-font-ttf")
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#31854] [PATCH 6/8] gnu: Add perl-test-perltidy.
  2018-06-16  2:26 ` [bug#31854] [PATCH 2/8] gnu: Add perl-cpan-changes Kei Kebreau
                     ` (2 preceding siblings ...)
  2018-06-16  2:26   ` [bug#31854] [PATCH 5/8] gnu: Add perl-file-finder Kei Kebreau
@ 2018-06-16  2:26   ` Kei Kebreau
  2018-06-16  2:26   ` [bug#31854] [PATCH 7/8] gnu: perltidy: Update to 20180220 Kei Kebreau
  2018-06-16  2:26   ` [bug#31854] [PATCH 8/8] gnu: clusterssh: Update to 4.13.2 Kei Kebreau
  5 siblings, 0 replies; 10+ messages in thread
From: Kei Kebreau @ 2018-06-16  2:26 UTC (permalink / raw)
  To: 31854; +Cc: Kei Kebreau

* gnu/packages/perl-check.scm (perl-test-perltidy): New variable.
---
 gnu/packages/perl-check.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/perl-check.scm b/gnu/packages/perl-check.scm
index c70357de5..42875ac50 100644
--- a/gnu/packages/perl-check.scm
+++ b/gnu/packages/perl-check.scm
@@ -1165,6 +1165,32 @@ a minimum of effort.")
     ;; "Under the same license as Perl itself"
     (license perl-license)))
 
+(define-public perl-test-perltidy
+  (package
+    (name "perl-test-perltidy")
+    (version "20130104")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/L/LA/LARRYL/Test-PerlTidy-"
+             version ".tar.gz"))
+       (sha256
+        (base32
+         "1j5rsb4km9rzcbd1ljavj8vm42bmilji40v2jj2k87l1ykrxj59z"))))
+    (build-system perl-build-system)
+    (propagated-inputs
+     `(("perl-file-finder" ,perl-file-finder)
+       ("perl-file-slurp" ,perl-file-slurp)
+       ("perltidy" ,perltidy)
+       ("perl-text-diff" ,perl-text-diff)))
+    (home-page "http://search.cpan.org/dist/Test-PerlTidy/")
+    (synopsis "Check that all your Perl files are tidy.")
+    (description
+     "Using @code{Test::PerlTidy}, any file ending in .pl, .pm, .t or .PL will
+cause a test fail unless it is exactly as @code{perltidy} would like it to be.")
+    (license perl-license)))
+
 (define-public perl-test-trap
   (package
     (name "perl-test-trap")
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#31854] [PATCH 7/8] gnu: perltidy: Update to 20180220.
  2018-06-16  2:26 ` [bug#31854] [PATCH 2/8] gnu: Add perl-cpan-changes Kei Kebreau
                     ` (3 preceding siblings ...)
  2018-06-16  2:26   ` [bug#31854] [PATCH 6/8] gnu: Add perl-test-perltidy Kei Kebreau
@ 2018-06-16  2:26   ` Kei Kebreau
  2018-06-16  2:26   ` [bug#31854] [PATCH 8/8] gnu: clusterssh: Update to 4.13.2 Kei Kebreau
  5 siblings, 0 replies; 10+ messages in thread
From: Kei Kebreau @ 2018-06-16  2:26 UTC (permalink / raw)
  To: 31854; +Cc: Kei Kebreau

* gnu/packages/perl.scm (perltidy): Update to 20180220.
---
 gnu/packages/perl.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 88d55722e..32f316321 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -8513,14 +8513,14 @@ as exceptions to standard program flow.")
 (define-public perltidy
   (package
     (name "perltidy")
-    (version "20160302")
+    (version "20180220")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://sourceforge/perltidy/" version
                                   "/Perl-Tidy-" version ".tar.gz"))
               (sha256
                (base32
-                "19yw63yh5s3pq7k3nkw6nsamg5b8vvwyhgbizslgxg0mqgc4xl3d"))))
+                "0w1k5ffcrpx0fm9jgprrwy0290k6cmy7dyk83s61063migi3r5z9"))))
     (build-system perl-build-system)
     (home-page "http://perltidy.sourceforge.net/")
     (synopsis "Perl script tidier")
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#31854] [PATCH 8/8] gnu: clusterssh: Update to 4.13.2.
  2018-06-16  2:26 ` [bug#31854] [PATCH 2/8] gnu: Add perl-cpan-changes Kei Kebreau
                     ` (4 preceding siblings ...)
  2018-06-16  2:26   ` [bug#31854] [PATCH 7/8] gnu: perltidy: Update to 20180220 Kei Kebreau
@ 2018-06-16  2:26   ` Kei Kebreau
  5 siblings, 0 replies; 10+ messages in thread
From: Kei Kebreau @ 2018-06-16  2:26 UTC (permalink / raw)
  To: 31854; +Cc: Kei Kebreau

* gnu/packages/admin.scm (clusterssh): Update to 4.13.2.
[build-system]: Switch to perl-build-system.
[arguments]: Remove 'set-load-paths' phase.
[inputs]: Remove perl.
[native-inputs]: Add perl-cpan-changes, perl-file-slurp, perl-file-which,
perl-module-build, perl-readonly, perl-test-differences,
perl-test-distmanifest, perl-test-perltidy, perl-test-pod,
perl-test-pod-coverage, perl-test-trap and perltidy.
[propagated-inputs]: Add perl-exception-class, perl-try-tiny and
perl-x11-protocol-other.
---
 gnu/packages/admin.scm | 55 +++++++++++++++++++-----------------------
 1 file changed, 25 insertions(+), 30 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index cf459bfbc..d1bc00441 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -823,41 +823,36 @@ by bandwidth they use.")
 (define-public clusterssh
   (package
     (name "clusterssh")
-    (version "3.28")
+    (version "4.13.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://sourceforge/clusterssh/"
-                                  "1.%20ClusterSSH%20Series%203/" version
-                                  "/clusterssh-" version ".tar.gz"))
+                                  "2.%20ClusterSSH%20Series%204/"
+                                  "App-ClusterSSH-v" version ".tar.gz"))
               (sha256
                (base32
-                "1bwggpvaj2al5blg1ynapviv2kpydffpzq2zkhi81najnvzc1rr7"))))
-    (build-system gnu-build-system)
-    (inputs `(("perl" ,perl)))
-    (propagated-inputs `(("xterm" ,xterm)
-                         ("perl-tk" ,perl-tk)
-                         ("perl-x11-protocol" ,perl-x11-protocol)))
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-after 'install 'set-load-paths
-           (lambda* (#:key inputs outputs #:allow-other-keys)
-             ;; Put the perl-tk and perl-x11-protocol modules in the perl inc
-             ;; path for PROG
-             (let* ((out  (assoc-ref outputs "out"))
-                    (prog (string-append out "/bin/cssh"))
-                    (perl-ver ,(package-version perl))
-                    (x11-inc (string-append
-                              (assoc-ref inputs "perl-x11-protocol")
-                              "/lib/perl5/site_perl/" perl-ver))
-                    (tk-inc (string-append
-                             (assoc-ref inputs "perl-tk")
-                             "/lib/perl5/site_perl/" perl-ver
-                             "/x86_64-linux")))
-               (wrap-program
-                   prog
-                 `("PERL5LIB" ":" prefix (,x11-inc ,tk-inc))))
-             #t)))))
+                "0rmk2p3f2wz1h092anidjclh212rv3gxyk0c641qk3frlrjnw6mp"))))
+    (build-system perl-build-system)
+    (native-inputs
+     `(("perl-cpan-changes" ,perl-cpan-changes)
+       ("perl-file-slurp" ,perl-file-slurp)
+       ("perl-file-which" ,perl-file-which)
+       ("perl-module-build" ,perl-module-build)
+       ("perl-readonly" ,perl-readonly)
+       ("perl-test-differences" ,perl-test-differences)
+       ("perl-test-distmanifest" ,perl-test-distmanifest)
+       ("perl-test-perltidy" ,perl-test-perltidy)
+       ("perl-test-pod" ,perl-test-pod)
+       ("perl-test-pod-coverage" ,perl-test-pod-coverage)
+       ("perl-test-trap" ,perl-test-trap)
+       ("perltidy" ,perltidy)))
+    (propagated-inputs
+     `(("xterm" ,xterm)
+       ("perl-exception-class" ,perl-exception-class)
+       ("perl-tk" ,perl-tk)
+       ("perl-try-tiny" ,perl-try-tiny)
+       ("perl-x11-protocol" ,perl-x11-protocol)
+       ("perl-x11-protocol-other" ,perl-x11-protocol-other)))
     ;; The clusterssh.sourceforge.net address requires login to view
     (home-page "https://sourceforge.net/projects/clusterssh/")
     (synopsis "Secure concurrent multi-server terminal control")
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#31854] [PATCH 1/8] gnu: Add perl-x11-protocol-other.
  2018-06-16  2:24 [bug#31854] [PATCH 1/8] gnu: Add perl-x11-protocol-other Kei Kebreau
  2018-06-16  2:26 ` [bug#31854] [PATCH 2/8] gnu: Add perl-cpan-changes Kei Kebreau
@ 2018-06-16 22:13 ` Ludovic Courtès
  2018-06-17  0:54   ` bug#31854: " Kei Kebreau
  1 sibling, 1 reply; 10+ messages in thread
From: Ludovic Courtès @ 2018-06-16 22:13 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: 31854

Hello Kei,

I quickly looked at the whole series and it looks good to me.  A couple
of points: make sure to use ‘perl-license’ and not ‘(package-license perl)’
(there are a few occurrences of the latter), and perhaps some more @code
or @file in synopses/descriptions would help in some places (when
referring to Perl modules for instance.)

Feel free to push when it’s ready!

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* bug#31854: [PATCH 1/8] gnu: Add perl-x11-protocol-other.
  2018-06-16 22:13 ` [bug#31854] [PATCH 1/8] gnu: Add perl-x11-protocol-other Ludovic Courtès
@ 2018-06-17  0:54   ` Kei Kebreau
  0 siblings, 0 replies; 10+ messages in thread
From: Kei Kebreau @ 2018-06-17  0:54 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 31854-done

[-- Attachment #1: Type: text/plain, Size: 550 bytes --]

ludo@gnu.org (Ludovic Courtès) writes:

> Hello Kei,
>
> I quickly looked at the whole series and it looks good to me.  A couple
> of points: make sure to use ‘perl-license’ and not ‘(package-license perl)’
> (there are a few occurrences of the latter), and perhaps some more @code
> or @file in synopses/descriptions would help in some places (when
> referring to Perl modules for instance.)
>
> Feel free to push when it’s ready!
>
> Thanks,
> Ludo’.

Cleaned up and pushed to master. As always, thanks for the review!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2018-06-17  0:55 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-16  2:24 [bug#31854] [PATCH 1/8] gnu: Add perl-x11-protocol-other Kei Kebreau
2018-06-16  2:26 ` [bug#31854] [PATCH 2/8] gnu: Add perl-cpan-changes Kei Kebreau
2018-06-16  2:26   ` [bug#31854] [PATCH 3/8] gnu: Add perl-module-manifest Kei Kebreau
2018-06-16  2:26   ` [bug#31854] [PATCH 4/8] gnu: Add perl-test-distmanifest Kei Kebreau
2018-06-16  2:26   ` [bug#31854] [PATCH 5/8] gnu: Add perl-file-finder Kei Kebreau
2018-06-16  2:26   ` [bug#31854] [PATCH 6/8] gnu: Add perl-test-perltidy Kei Kebreau
2018-06-16  2:26   ` [bug#31854] [PATCH 7/8] gnu: perltidy: Update to 20180220 Kei Kebreau
2018-06-16  2:26   ` [bug#31854] [PATCH 8/8] gnu: clusterssh: Update to 4.13.2 Kei Kebreau
2018-06-16 22:13 ` [bug#31854] [PATCH 1/8] gnu: Add perl-x11-protocol-other Ludovic Courtès
2018-06-17  0:54   ` bug#31854: " Kei Kebreau

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).