From owner-svn-ports-head@freebsd.org Tue Nov 29 04:37:22 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA20CC5B593; Tue, 29 Nov 2016 04:37:22 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8B97E1D8C; Tue, 29 Nov 2016 04:37:22 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAT4bLUD050877; Tue, 29 Nov 2016 04:37:21 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAT4bLlS050874; Tue, 29 Nov 2016 04:37:21 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201611290437.uAT4bLlS050874@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Tue, 29 Nov 2016 04:37:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427354 - in head/devel/py-phpserialize: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2016 04:37:22 -0000 Author: rm Date: Tue Nov 29 04:37:21 2016 New Revision: 427354 URL: https://svnweb.freebsd.org/changeset/ports/427354 Log: devel/py-phpserialize: update to 1.3 - switch to pypi (old upstream url seems dead) - trim categories a bit - define LICENSE (BSD3C, confirmed with upstream developer) - add NO_ARCH and define supported python versions range - general clean-up PR: 214310 Approved by: maintainer timeout (14 days) Deleted: head/devel/py-phpserialize/files/ Modified: head/devel/py-phpserialize/Makefile head/devel/py-phpserialize/distinfo head/devel/py-phpserialize/pkg-descr Modified: head/devel/py-phpserialize/Makefile ============================================================================== --- head/devel/py-phpserialize/Makefile Tue Nov 29 04:28:51 2016 (r427353) +++ head/devel/py-phpserialize/Makefile Tue Nov 29 04:37:21 2016 (r427354) @@ -2,24 +2,18 @@ # $FreeBSD$ PORTNAME= phpserialize -PORTVERSION= 0.4 -PORTREVISION= 2 -CATEGORIES= devel lang www python -MASTER_SITES= http://www.hurring.com/scott/code/python/serialize/ +PORTVERSION= 1.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= PHPSerialize_v${PORTVERSION} -EXTRACT_SUFX= .tgz -MAINTAINER= jnlin@freebsd.cs.nctu.edu.tw -COMMENT= Python implementation of PHP's native serialize() and unserialize() - -WRKSRC= ${WRKDIR}/v${PORTVERSION} +LICENSE= BSD3CLAUSE -USES= python -USE_PYTHON= distutils autoplist +MAINTAINER= jnlin@freebsd.cs.nctu.edu.tw +COMMENT= Port of the serialize and unserialize functions of PHP to Python -post-extract: - ${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|g' ${FILESDIR}/setup.py \ - > ${WRKSRC}/setup.py +NO_ARCH= yes +USES= python:2.7+ +USE_PYTHON= autoplist distutils .include Modified: head/devel/py-phpserialize/distinfo ============================================================================== --- head/devel/py-phpserialize/distinfo Tue Nov 29 04:28:51 2016 (r427353) +++ head/devel/py-phpserialize/distinfo Tue Nov 29 04:37:21 2016 (r427354) @@ -1,2 +1,3 @@ -SHA256 (PHPSerialize_v0.4.tgz) = 75f12f281f239210f24d6db74ebde41b913d987c325046743e52f04bfae907fa -SIZE (PHPSerialize_v0.4.tgz) = 9079 +TIMESTAMP = 1478551844 +SHA256 (phpserialize-1.3.tar.gz) = bf672d312d203d09a84c26366fab8f438a3ffb355c407e69974b7ef2d39a0fa7 +SIZE (phpserialize-1.3.tar.gz) = 7466 Modified: head/devel/py-phpserialize/pkg-descr ============================================================================== --- head/devel/py-phpserialize/pkg-descr Tue Nov 29 04:28:51 2016 (r427353) +++ head/devel/py-phpserialize/pkg-descr Tue Nov 29 04:37:21 2016 (r427354) @@ -1,4 +1,5 @@ -This is a python implementation of PHP's native serialize() and -unserialize() functions. +A port of the serialize() and unserialize() functions of PHP to Python. This +module implements the python serialization interface (eg: provides dumps, +loads and similar functions). WWW: http://www.hurring.com/scott/code/python/serialize/