unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1
@ 2019-05-28 12:41 h.nasajpour
  2019-05-28 19:45 ` Danny Milosavljevic
  0 siblings, 1 reply; 6+ messages in thread
From: h.nasajpour @ 2019-05-28 12:41 UTC (permalink / raw)
  To: 35954; +Cc: h.nasajpour

* 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

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

* [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1
  2019-05-28 12:41 [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1 h.nasajpour
@ 2019-05-28 19:45 ` Danny Milosavljevic
  2019-05-29  0:57   ` Hamzeh Nasajpour
  0 siblings, 1 reply; 6+ messages in thread
From: Danny Milosavljevic @ 2019-05-28 19:45 UTC (permalink / raw)
  To: h.nasajpour; +Cc: 35954

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

None of the tests get found.

Otherwise OK (except for missing dot in commit message).

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1
  2019-05-28 19:45 ` Danny Milosavljevic
@ 2019-05-29  0:57   ` Hamzeh Nasajpour
  2019-05-29  0:58     ` Hamzeh Nasajpour
  0 siblings, 1 reply; 6+ messages in thread
From: Hamzeh Nasajpour @ 2019-05-29  0:57 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: 35954

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

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

* [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1
  2019-05-29  0:57   ` Hamzeh Nasajpour
@ 2019-05-29  0:58     ` Hamzeh Nasajpour
  2019-07-29  6:49       ` Hamzeh Nasajpour
  0 siblings, 1 reply; 6+ messages in thread
From: Hamzeh Nasajpour @ 2019-05-29  0:58 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: 35954

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

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

* [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1
  2019-05-29  0:58     ` Hamzeh Nasajpour
@ 2019-07-29  6:49       ` Hamzeh Nasajpour
  2019-12-10  6:23         ` bug#35954: " Brett Gilio
  0 siblings, 1 reply; 6+ messages in thread
From: Hamzeh Nasajpour @ 2019-07-29  6:49 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: 35954

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

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

* bug#35954: [PATCH] gnu: python-markupsafe: Update to 1.1.1
  2019-07-29  6:49       ` Hamzeh Nasajpour
@ 2019-12-10  6:23         ` Brett Gilio
  0 siblings, 0 replies; 6+ messages in thread
From: Brett Gilio @ 2019-12-10  6:23 UTC (permalink / raw)
  To: Hamzeh Nasajpour; +Cc: Danny Milosavljevic, 35954-done

"Hamzeh Nasajpour" <h.nasajpour@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/

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

end of thread, other threads:[~2019-12-10  6:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-28 12:41 [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1 h.nasajpour
2019-05-28 19:45 ` Danny Milosavljevic
2019-05-29  0:57   ` Hamzeh Nasajpour
2019-05-29  0:58     ` Hamzeh Nasajpour
2019-07-29  6:49       ` Hamzeh Nasajpour
2019-12-10  6:23         ` bug#35954: " Brett Gilio

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