GNU bug report logs -
#32775
[PATCH] gnu: Add gandi.cli.
Previous Next
Reported by: Tobias Geerinckx-Rice <me <at> tobias.gr>
Date: Wed, 19 Sep 2018 20:55:01 UTC
Severity: normal
Tags: patch
Done: Tobias Geerinckx-Rice <me <at> tobias.gr>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 32775 in the body.
You can then email your comments to 32775 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#32775
; Package
guix-patches
.
(Wed, 19 Sep 2018 20:55:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Tobias Geerinckx-Rice <me <at> tobias.gr>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Wed, 19 Sep 2018 20:55:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/networking.scm (gandi.cli): New public variable.
---
Don't judge me.
gnu/packages/networking.scm | 50 +++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index abc616de3..f30d5a8da 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -87,6 +87,7 @@
#:use-module (gnu packages perl-check)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
+ #:use-module (gnu packages python-web)
#:use-module (gnu packages qt)
#:use-module (gnu packages readline)
#:use-module (gnu packages ssh)
@@ -673,6 +674,55 @@ send out a ping packet and move on to the next target in a round-robin
fashion.")
(license license:expat)))
+(define-public gandi.cli
+ (package
+ (name "gandi.cli")
+ (version "1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri name version))
+ (sha256
+ (base32 "0vfzkw1avybjkf6fwqpf5m4kjz4c0qkkmj62f3jd0zx00vh5ly1d"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'embed-store-file-names
+ (lambda _
+ (substitute* (list "gandi/cli/modules/cert.py"
+ "gandi/cli/tests/commands/test_certificate.py")
+ (("openssl") (which "openssl")))
+ #t))
+ (add-after 'install 'install-documentation
+ ;; The included man page may be outdated but we install it anyway,
+ ;; since it's mentioned in 'gandi --help' and better than nothing.
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (man1 (string-append out "/share/man/man1")))
+ (mkdir-p man1)
+ (with-output-to-file (string-append man1 "/gandi.1")
+ (lambda _
+ (invoke "rst2man.py" "gandicli.man.rst")))
+ #t))))))
+ (native-inputs
+ `(("python-docutils" ,python-docutils) ; for rst2man.py
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-tox" ,python-tox)))
+ (inputs
+ `(("openssl" ,openssl)
+ ("python-click" ,python-click)
+ ("python-ipy" ,python-ipy)
+ ("python-pyyaml" ,python-pyyaml)
+ ("python-requests" ,python-requests)))
+ (home-page "https://cli.gandi.net")
+ (synopsis "Command-line interface to the Gandi.net API")
+ (description
+ "This package provides a command-line client (@command{gandi}) to buy,
+manage, and delete Internet resources from Gandi.net such as domain names,
+virtual machines, and certificates.")
+ (license license:gpl3+)))
+
(define-public httping
(package
(name "httping")
--
2.18.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#32775
; Package
guix-patches
.
(Wed, 19 Sep 2018 22:03:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 32775 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Wed, Sep 19, 2018 at 10:53:47PM +0200, Tobias Geerinckx-Rice wrote:
> * gnu/packages/networking.scm (gandi.cli): New public variable.
Thanks!
> +(define-public gandi.cli
> + (package
> + (name "gandi.cli")
I prefer 'gandi-cli', but it's your call. The manual section Package
Naming only specifies how to replace underscores.
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#32775
; Package
guix-patches
.
(Mon, 24 Sep 2018 12:24:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 32775 <at> debbugs.gnu.org (full text, mbox):
Leo Famulari <leo <at> famulari.name> skribis:
> On Wed, Sep 19, 2018 at 10:53:47PM +0200, Tobias Geerinckx-Rice wrote:
>> * gnu/packages/networking.scm (gandi.cli): New public variable.
>
> Thanks!
>
>> +(define-public gandi.cli
>> + (package
>> + (name "gandi.cli")
>
> I prefer 'gandi-cli', but it's your call. The manual section Package
> Naming only specifies how to replace underscores.
I also have a slight preference to a hyphen, FWIW. :-)
Ludo’.
Reply sent
to
Tobias Geerinckx-Rice <me <at> tobias.gr>
:
You have taken responsibility.
(Mon, 24 Sep 2018 20:28:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Tobias Geerinckx-Rice <me <at> tobias.gr>
:
bug acknowledged by developer.
(Mon, 24 Sep 2018 20:28:01 GMT)
Full text and
rfc822 format available.
Message #16 received at 32775-done <at> debbugs.gnu.org (full text, mbox):
Leo, Ludo',
I pushed this patch as-is earlier today...
Ludo' wrote:
> Leo Famulari <leo <at> famulari.name> skribis:
>>> + (name "gandi.cli")
>>
>> I prefer 'gandi-cli', but it's your call. The manual section
>> Package
>> Naming only specifies how to replace underscores.
...having read this...
> I also have a slight preference to a hyphen, FWIW. :-)
...but not this.
My vote's to follow upstream as long as upstream's not too silly,
and not further restrict package names without good reason. Or is
anyone's objection more than aesthetic?
Note that there are already other — mostly Python — packages that
keep the '.' in their name. I checked before adding this one :-)
$ ./pre-inst-env guix package -A '[^0-9]\.|\.[^0-9]' # and skip
some Go stuff
proj.4 4.9.3 out gnu/packages/geo.scm:294:2
python{,2}-oslo.config 5.2.0 out
gnu/packages/openstack.scm:381:2
python{,2}-oslo.context 2.20.0 out
gnu/packages/openstack.scm:423:2
python{,2}-oslo.i18n 3.20.0 out
gnu/packages/openstack.scm:453:2
python{,2}-oslo.log 3.36.0 out
gnu/packages/openstack.scm:486:2
python{,2}-oslo.serialization 2.24.0 out
gnu/packages/openstack.scm:527:2
python{,2}-oslo.utils 3.36.2 out
gnu/packages/openstack.scm:681:2
python{,2}-rst.linker 1.10 out
gnu/packages/python.scm:2662:2
python{,2}-ruamel.yaml 0.15.37 out
gnu/packages/serialization.scm:367:2
python2-elib.intl 0.0.3 out
gnu/packages/python.scm:4052:2
python2-ruamel.ordereddict 0.4.9 out
gnu/packages/python.scm:10965:2
ruby-http-parser.rb 0.6.0 out
gnu/packages/ruby.scm:5754:2
Meh,
T G-R
Information forwarded
to
guix-patches <at> gnu.org
:
bug#32775
; Package
guix-patches
.
(Mon, 24 Sep 2018 20:35:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 32775-done <at> debbugs.gnu.org (full text, mbox):
Use the dot.
:)
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 23 Oct 2018 11:24:04 GMT)
Full text and
rfc822 format available.
This bug report was last modified 6 years and 242 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.