GNU bug report logs -
#34382
[PATCH 4/5] gnu: Add python-docstyle.
Previous Next
Reported by: Brett Gilio <brettg <at> posteo.net>
Date: Fri, 8 Feb 2019 04:11:02 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
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 34382 in the body.
You can then email your comments to 34382 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#34382
; Package
guix-patches
.
(Fri, 08 Feb 2019 04:11:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Brett Gilio <brettg <at> posteo.net>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 08 Feb 2019 04:11:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[0004-gnu-Add-python-docstyle.patch (text/x-patch, inline)]
From 0b66f38dd41230611cad44181a81bda38e40619f Mon Sep 17 00:00:00 2001
From: Brett Gilio <brettg <at> posteo.net>
Date: Thu, 7 Feb 2019 22:04:52 -0600
Subject: [PATCH 4/5] gnu: Add python-docstyle.
* gnu/packages/python-xyz.scm (python-docstyle): New variable.
---
gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5c7241621..c41c4a1cd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2545,6 +2545,27 @@ Language (TOML) configuration files.")
(description "An implementation of the JSON RPC 2.0 server library for interoperability with Python.")
(license license:expat)))
+(define-public python-pydocstyle
+ (package
+ (name "python-pydocstyle")
+ (version "3.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pydocstyle" version))
+ (sha256
+ (base32
+ "1m1xv9clkg9lgzyza6dnj359z04vh5g0h49nhzghv7lg81gchhap"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-six" ,python-six)
+ ("python-snowballstemmer" ,python-snowballstemmer)))
+ (home-page
+ "https://github.com/PyCQA/pydocstyle/")
+ (synopsis "Python docstring style checker")
+ (description "A docstring style checker/linter for the Python language server.")
+ (license license:expat)))
+
(define-public python-black
(package
(name "python-black")
--
2.20.1
Reply sent
to
Ludovic Courtès <ludo <at> gnu.org>
:
You have taken responsibility.
(Tue, 12 Feb 2019 22:34:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Brett Gilio <brettg <at> posteo.net>
:
bug acknowledged by developer.
(Tue, 12 Feb 2019 22:34:02 GMT)
Full text and
rfc822 format available.
Message #10 received at 34382-done <at> debbugs.gnu.org (full text, mbox):
Brett Gilio <brettg <at> posteo.net> skribis:
>>From 0b66f38dd41230611cad44181a81bda38e40619f Mon Sep 17 00:00:00 2001
> From: Brett Gilio <brettg <at> posteo.net>
> Date: Thu, 7 Feb 2019 22:04:52 -0600
> Subject: [PATCH 4/5] gnu: Add python-docstyle.
>
> * gnu/packages/python-xyz.scm (python-docstyle): New variable.
Pushed as well.
This series ended up taking me more time than I thought. :-)
First the patches were sent in reverse order, which I only realized
later. Then each patch had tiny issues (indentation, inappropriate
description, code duplication, etc.) that I ended up fixing because they
looked tiny at first…
Please pay more attention to these things in the future.
Regardless, thank you for the patches!
Ludo’.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#34382
; Package
guix-patches
.
(Wed, 13 Feb 2019 00:51:01 GMT)
Full text and
rfc822 format available.
Message #13 received at 34382-done <at> debbugs.gnu.org (full text, mbox):
Ludovic Courtès writes:
> Brett Gilio <brettg <at> posteo.net> skribis:
>
>>>From 0b66f38dd41230611cad44181a81bda38e40619f Mon Sep 17 00:00:00 2001
>> From: Brett Gilio <brettg <at> posteo.net>
>> Date: Thu, 7 Feb 2019 22:04:52 -0600
>> Subject: [PATCH 4/5] gnu: Add python-docstyle.
>>
>> * gnu/packages/python-xyz.scm (python-docstyle): New variable.
>
> Pushed as well.
>
> This series ended up taking me more time than I thought. :-)
> First the patches were sent in reverse order, which I only realized
> later. Then each patch had tiny issues (indentation, inappropriate
> description, code duplication, etc.) that I ended up fixing because they
> looked tiny at first…
>
> Please pay more attention to these things in the future.
>
> Regardless, thank you for the patches!
>
> Ludo’.
Thank you Ludo,
This was my first series, so I appreciate the comments you gave me for
feedback and I will be more diligent in the future!
Brett
Information forwarded
to
guix-patches <at> gnu.org
:
bug#34382
; Package
guix-patches
.
(Wed, 13 Feb 2019 00:52:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 34382-done <at> debbugs.gnu.org (full text, mbox):
Ludovic Courtès writes:
> Brett Gilio <brettg <at> posteo.net> skribis:
>
>>>From 0b66f38dd41230611cad44181a81bda38e40619f Mon Sep 17 00:00:00 2001
>> From: Brett Gilio <brettg <at> posteo.net>
>> Date: Thu, 7 Feb 2019 22:04:52 -0600
>> Subject: [PATCH 4/5] gnu: Add python-docstyle.
>>
>> * gnu/packages/python-xyz.scm (python-docstyle): New variable.
>
> Pushed as well.
>
> This series ended up taking me more time than I thought. :-)
> First the patches were sent in reverse order, which I only realized
> later. Then each patch had tiny issues (indentation, inappropriate
> description, code duplication, etc.) that I ended up fixing because they
> looked tiny at first…
>
> Please pay more attention to these things in the future.
>
> Regardless, thank you for the patches!
>
> Ludo’.
This was my first patch series, so I appreciate your feedback to help me
make sure that I am doing this correct in the future!
Thank you as always
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 13 Mar 2019 11:24:12 GMT)
Full text and
rfc822 format available.
This bug report was last modified 6 years and 154 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.