GNU bug report logs - #35954
[PATCH] gnu: python-markupsafe: Update to 1.1.1

Previous Next

Package: guix-patches;

Reported by: "h.nasajpour" <h.nasajpour <at> pantherx.org>

Date: Tue, 28 May 2019 14:42:12 UTC

Severity: normal

Tags: patch

Done: Brett Gilio <brettg <at> posteo.net>

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 35954 in the body.
You can then email your comments to 35954 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#35954; Package guix-patches. (Tue, 28 May 2019 14:42:12 GMT) Full text and rfc822 format available.

Acknowledgement sent to "h.nasajpour" <h.nasajpour <at> pantherx.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 28 May 2019 14:42:12 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: "h.nasajpour" <h.nasajpour <at> pantherx.org>
To: guix-patches <at> gnu.org
Cc: "h.nasajpour" <h.nasajpour <at> pantherx.org>
Subject: [PATCH] gnu: python-markupsafe: Update to 1.1.1
Date: Tue, 28 May 2019 17:11:05 +0430
* gnu/packages/python-xyz.scm (python-markupsafe): Update to 1.1.1
---
 gnu/packages/python-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5d0e57d082..c8401d1641 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2298,14 +2298,14 @@ e.g. filters, callbacks and errbacks can all be promises.")
 (define-public python-markupsafe
   (package
     (name "python-markupsafe")
-    (version "1.0")
+    (version "1.1.1")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "MarkupSafe" version))
        (sha256
         (base32
-         "0rdn1s8x9ni7ss8rfiacj7x1085lx8mh2zdwqslnw8xc3l4nkgm6"))))
+         "0sqipg4fk7xbixqd8kq6rlkxj664d157bdwbh93farcphf92x1r9"))))
     (build-system python-build-system)
     (home-page "https://github.com/mitsuhiko/markupsafe")
     (synopsis "XML/HTML/XHTML markup safe string implementation for Python")
-- 
2.17.1





Information forwarded to guix-patches <at> gnu.org:
bug#35954; Package guix-patches. (Tue, 28 May 2019 19:46:01 GMT) Full text and rfc822 format available.

Message #8 received at 35954 <at> debbugs.gnu.org (full text, mbox):

From: Danny Milosavljevic <dannym <at> scratchpost.org>
To: "h.nasajpour" <h.nasajpour <at> pantherx.org>
Cc: 35954 <at> debbugs.gnu.org
Subject: Re: [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1
Date: Tue, 28 May 2019 21:45:45 +0200
[Message part 1 (text/plain, inline)]
None of the tests get found.

Otherwise OK (except for missing dot in commit message).
[Message part 2 (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#35954; Package guix-patches. (Wed, 29 May 2019 00:58:01 GMT) Full text and rfc822 format available.

Message #11 received at 35954 <at> debbugs.gnu.org (full text, mbox):

From: "Hamzeh Nasajpour" <h.nasajpour <at> pantherx.org>
To: "Danny Milosavljevic" <dannym <at> scratchpost.org>
Cc: 35954 <at> debbugs.gnu.org
Subject: Re: [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1
Date: Wed, 29 May 2019 05:27:43 +0430
+(define-public python-flask-cors
+  (package
+  (name "python-flask-cors")
+    (version "3.0.7")
+    (source (origin
+      (method url-fetch)
+      (uri (pypi-uri "Flask-Cors" version))
+      (sha256 (base32 "1v6gq4vjgyxi8q8lxawpdfhq01adb4bznnabp08ks5nzbwibz43y"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f))
+    (propagated-inputs
+      `(("python-six" ,python-six)
+        ("python-flask" ,python-flask)))
+    (home-page "https://github.com/corydolphin/flask-cors")
+    (synopsis "A Flask extension adding a decorator for CORS support")
+    (description
+     "This package has a simple philosophy, when you want to enable CORS, you wish to enable it for all use cases on a domain. This means no mucking around with different allowed headers, methods, etc. By default, submission of cookies across domains is disabled due to the security implications")
+    (license license:expat)))


On Wed, May 29, 2019, at 12:15 AM, Danny Milosavljevic wrote:
> None of the tests get found.
> 
> Otherwise OK (except for missing dot in commit message).
>




Information forwarded to guix-patches <at> gnu.org:
bug#35954; Package guix-patches. (Wed, 29 May 2019 00:59:02 GMT) Full text and rfc822 format available.

Message #14 received at 35954 <at> debbugs.gnu.org (full text, mbox):

From: "Hamzeh Nasajpour" <h.nasajpour <at> pantherx.org>
To: "Danny Milosavljevic" <dannym <at> scratchpost.org>
Cc: 35954 <at> debbugs.gnu.org
Subject: Re: [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1
Date: Wed, 29 May 2019 05:28:25 +0430
Oh, so sorry. This is my mistake, ignore it. 

On Wed, May 29, 2019, at 5:27 AM, Hamzeh Nasajpour wrote:
> +(define-public python-flask-cors
> +  (package
> +  (name "python-flask-cors")
> +    (version "3.0.7")
> +    (source (origin
> +      (method url-fetch)
> +      (uri (pypi-uri "Flask-Cors" version))
> +      (sha256 (base32 
> "1v6gq4vjgyxi8q8lxawpdfhq01adb4bznnabp08ks5nzbwibz43y"))))
> +    (build-system python-build-system)
> +    (arguments
> +     `(#:tests? #f))
> +    (propagated-inputs
> +      `(("python-six" ,python-six)
> +        ("python-flask" ,python-flask)))
> +    (home-page "https://github.com/corydolphin/flask-cors")
> +    (synopsis "A Flask extension adding a decorator for CORS support")
> +    (description
> +     "This package has a simple philosophy, when you want to enable 
> CORS, you wish to enable it for all use cases on a domain. This means 
> no mucking around with different allowed headers, methods, etc. By 
> default, submission of cookies across domains is disabled due to the 
> security implications")
> +    (license license:expat)))
> 
> 
> On Wed, May 29, 2019, at 12:15 AM, Danny Milosavljevic wrote:
> > None of the tests get found.
> > 
> > Otherwise OK (except for missing dot in commit message).
> >




Information forwarded to guix-patches <at> gnu.org:
bug#35954; Package guix-patches. (Mon, 29 Jul 2019 06:50:02 GMT) Full text and rfc822 format available.

Message #17 received at 35954 <at> debbugs.gnu.org (full text, mbox):

From: "Hamzeh Nasajpour" <h.nasajpour <at> pantherx.org>
To: "Danny Milosavljevic" <dannym <at> scratchpost.org>
Cc: 35954 <at> debbugs.gnu.org
Subject: Re: [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1
Date: Mon, 29 Jul 2019 11:19:04 +0430
Hi,

Whats the status of this patch?

Regards.


On Wed, May 29, 2019, at 5:28 AM, Hamzeh Nasajpour wrote:
> Oh, so sorry. This is my mistake, ignore it. 
> 
> On Wed, May 29, 2019, at 5:27 AM, Hamzeh Nasajpour wrote:
> > +(define-public python-flask-cors
> > +  (package
> > +  (name "python-flask-cors")
> > +    (version "3.0.7")
> > +    (source (origin
> > +      (method url-fetch)
> > +      (uri (pypi-uri "Flask-Cors" version))
> > +      (sha256 (base32 
> > "1v6gq4vjgyxi8q8lxawpdfhq01adb4bznnabp08ks5nzbwibz43y"))))
> > +    (build-system python-build-system)
> > +    (arguments
> > +     `(#:tests? #f))
> > +    (propagated-inputs
> > +      `(("python-six" ,python-six)
> > +        ("python-flask" ,python-flask)))
> > +    (home-page "https://github.com/corydolphin/flask-cors")
> > +    (synopsis "A Flask extension adding a decorator for CORS support")
> > +    (description
> > +     "This package has a simple philosophy, when you want to enable 
> > CORS, you wish to enable it for all use cases on a domain. This means 
> > no mucking around with different allowed headers, methods, etc. By 
> > default, submission of cookies across domains is disabled due to the 
> > security implications")
> > +    (license license:expat)))
> > 
> > 
> > On Wed, May 29, 2019, at 12:15 AM, Danny Milosavljevic wrote:
> > > None of the tests get found.
> > > 
> > > Otherwise OK (except for missing dot in commit message).
> > >




Reply sent to Brett Gilio <brettg <at> posteo.net>:
You have taken responsibility. (Tue, 10 Dec 2019 06:24:02 GMT) Full text and rfc822 format available.

Notification sent to "h.nasajpour" <h.nasajpour <at> pantherx.org>:
bug acknowledged by developer. (Tue, 10 Dec 2019 06:24:02 GMT) Full text and rfc822 format available.

Message #22 received at 35954-done <at> debbugs.gnu.org (full text, mbox):

From: Brett Gilio <brettg <at> posteo.net>
To: "Hamzeh Nasajpour" <h.nasajpour <at> pantherx.org>
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>, 35954-done <at> debbugs.gnu.org
Subject: Re: [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1
Date: Tue, 10 Dec 2019 00:23:17 -0600
"Hamzeh Nasajpour" <h.nasajpour <at> pantherx.org> writes:

> Hi,
>
> Whats the status of this patch?
>
> Regards.
>
>
> On Wed, May 29, 2019, at 5:28 AM, Hamzeh Nasajpour wrote:
>> Oh, so sorry. This is my mistake, ignore it. 
>> 
>> On Wed, May 29, 2019, at 5:27 AM, Hamzeh Nasajpour wrote:
>> > +(define-public python-flask-cors
>> > +  (package
>> > +  (name "python-flask-cors")
>> > +    (version "3.0.7")
>> > +    (source (origin
>> > +      (method url-fetch)
>> > +      (uri (pypi-uri "Flask-Cors" version))
>> > +      (sha256 (base32 
>> > "1v6gq4vjgyxi8q8lxawpdfhq01adb4bznnabp08ks5nzbwibz43y"))))
>> > +    (build-system python-build-system)
>> > +    (arguments
>> > +     `(#:tests? #f))
>> > +    (propagated-inputs
>> > +      `(("python-six" ,python-six)
>> > +        ("python-flask" ,python-flask)))
>> > +    (home-page "https://github.com/corydolphin/flask-cors")
>> > +    (synopsis "A Flask extension adding a decorator for CORS support")
>> > +    (description
>> > +     "This package has a simple philosophy, when you want to enable 
>> > CORS, you wish to enable it for all use cases on a domain. This means 
>> > no mucking around with different allowed headers, methods, etc. By 
>> > default, submission of cookies across domains is disabled due to the 
>> > security implications")
>> > +    (license license:expat)))
>> > 
>> > 
>> > On Wed, May 29, 2019, at 12:15 AM, Danny Milosavljevic wrote:
>> > > None of the tests get found.
>> > > 
>> > > Otherwise OK (except for missing dot in commit message).
>> > >
>
>
>
>

Closing. Python-markupsafe reflects 1.1.1 in GNU Guix currently.

-- 
Brett M. Gilio
Homepage -- https://scm.pw/
GNU Guix -- https://guix.gnu.org/




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 07 Jan 2020 12:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 111 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.