devel/py-pika: Update to 1.0.1
Changelog: https://github.com/pika/pika/blob/1.0.1/CHANGELOG.rst
This commit is contained in:
parent
99c553264c
commit
a412585335
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=499987
4 changed files with 18 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= pika
|
||||
PORTVERSION= 0.12.0
|
||||
PORTVERSION= 1.0.1
|
||||
CATEGORIES= devel net
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1532256461
|
||||
SHA256 (pika-pika-0.12.0_GH0.tar.gz) = 3b1bd9025b63ad6fdd183dd79010620fa168966adda6154a23a7d5ed4f88cf9d
|
||||
SIZE (pika-pika-0.12.0_GH0.tar.gz) = 243292
|
||||
TIMESTAMP = 1556190666
|
||||
SHA256 (pika-pika-1.0.1_GH0.tar.gz) = b257295b71aba3b01dc8a27b0105439ea58976613f743dfc7666404f7f9395da
|
||||
SIZE (pika-pika-1.0.1_GH0.tar.gz) = 307296
|
||||
|
|
13
devel/py-pika/files/patch-setup.py
Normal file
13
devel/py-pika/files/patch-setup.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Fix UnicodeDecodeError: 'ascii' codec can't decode error
|
||||
|
||||
--- setup.py.orig 2019-04-25 11:16:05 UTC
|
||||
+++ setup.py
|
||||
@@ -18,7 +18,7 @@ setuptools.setup(
|
||||
name='pika',
|
||||
version='1.0.1',
|
||||
description='Pika Python AMQP Client Library',
|
||||
- long_description=open('README.rst').read(),
|
||||
+ long_description=open('README.rst', 'rb').read().decode("utf-8"),
|
||||
maintainer='Gavin M. Roy',
|
||||
maintainer_email='gavinmroy@gmail.com',
|
||||
url='https://pika.readthedocs.io',
|
|
@ -3,4 +3,4 @@ that tries to stay fairly independent of the underlying network
|
|||
support library. Pika was developed primarily for use with
|
||||
RabbitMQ, but should also work with other AMQP 0-9-1 brokers.
|
||||
|
||||
WWW: https://pika.readthedocs.org
|
||||
WWW: https://pika.readthedocs.io
|
||||
|
|
Loading…
Reference in a new issue