diff --git a/www/py-amf/Makefile b/www/py-amf/Makefile index 3ee9cea3a04f..724ae626a7b3 100644 --- a/www/py-amf/Makefile +++ b/www/py-amf/Makefile @@ -1,19 +1,20 @@ # Created by: Junji NAKANISHI # $FreeBSD$ PORTNAME= amf -PORTVERSION= 0.6.1 +PORTVERSION= 0.7.2 CATEGORIES= www devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= PyAMF-${PORTVERSION} MAINTAINER= jun-g@daemonfreaks.com COMMENT= AMF support for Python LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= python:2 USE_PYTHON= autoplist distutils .include diff --git a/www/py-amf/distinfo b/www/py-amf/distinfo index 132765216351..4e8e44de4ee5 100644 --- a/www/py-amf/distinfo +++ b/www/py-amf/distinfo @@ -1,2 +1,2 @@ -SHA256 (PyAMF-0.6.1.tar.gz) = d8affca77466289eb77eac408e444c7e0787c1d75133628c1461d06bc5538396 -SIZE (PyAMF-0.6.1.tar.gz) = 1697599 +SHA256 (PyAMF-0.7.2.tar.gz) = 3e39d43989f75a4d35f4c2a591d8163637f67eaf856bdae749bd8b64b1c1b672 +SIZE (PyAMF-0.7.2.tar.gz) = 1648116 diff --git a/www/py-amf/files/patch-setup.py b/www/py-amf/files/patch-setup.py deleted file mode 100644 index b9dbf2e08d90..000000000000 --- a/www/py-amf/files/patch-setup.py +++ /dev/null @@ -1,14 +0,0 @@ ---- ./setup.py.orig 2013-11-27 16:59:40.606322333 -0200 -+++ ./setup.py 2013-11-27 17:00:06.922319988 -0200 -@@ -3,11 +3,6 @@ - # Copyright (c) The PyAMF Project. - # See LICENSE.txt for details. - --from distribute_setup import use_setuptools -- --# 15 seconds is far too long .... --use_setuptools(download_delay=3) -- - # import ordering is important - import setupinfo - from setuptools import setup, find_packages diff --git a/www/py-amf/pkg-descr b/www/py-amf/pkg-descr index 27fc98ecbdfe..314c6987bcc6 100644 --- a/www/py-amf/pkg-descr +++ b/www/py-amf/pkg-descr @@ -1,17 +1,17 @@ PyAMF provides Action Message Format (AMF) support for Python that is compatible with the Flash Player. The Adobe Integrated Runtime and Flash Player use AMF to communicate between an application and a remote server. AMF encodes remote procedure calls (RPC) into a compact binary representation that can be transferred over HTTP/HTTPS or the RTMP/RTMPS protocol. Objects and data values are serialized into this binary format, which increases performance, allowing applications to load data up to 10 times faster than with text-based formats such as XML or SOAP. AMF3, the default serialization for ActionScript 3.0, provides various advantages over AMF0, which is used for ActionScript 1.0 and 2.0. AMF3 sends data over the network more efficiently than AMF0. AMF3 supports sending int and uint objects as integers and supports data types that are available only in ActionScript 3.0, such as ByteArray, ArrayCollection, and IExternalizable. -WWW: http://pyamf.org/ +WWW: https://github.com/hydralabs/pyamf