From owner-svn-ports-head@freebsd.org Fri Jan 26 18:11:57 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 168AFEC09AF; Fri, 26 Jan 2018 18:11:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B8077EEAC; Fri, 26 Jan 2018 18:11:56 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 249941EFB5; Fri, 26 Jan 2018 18:11:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0QIBucH013094; Fri, 26 Jan 2018 18:11:56 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0QIBtiI013092; Fri, 26 Jan 2018 18:11:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201801261811.w0QIBtiI013092@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 26 Jan 2018 18:11:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460024 - head/devel/py-flexmock X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-flexmock X-SVN-Commit-Revision: 460024 X-SVN-Commit-Repository: ports 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.25 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: Fri, 26 Jan 2018 18:11:57 -0000 Author: sunpoet Date: Fri Jan 26 18:11:55 2018 New Revision: 460024 URL: https://svnweb.freebsd.org/changeset/ports/460024 Log: Add LICENSE - Update COMMENT - Add NO_ARCH - Allow concurrent installation (USE_PYTHON=concurrent) - Update pkg-descr - Update WWW - Add GitHub repository to WWW - Take maintainership Modified: head/devel/py-flexmock/Makefile head/devel/py-flexmock/pkg-descr Modified: head/devel/py-flexmock/Makefile ============================================================================== --- head/devel/py-flexmock/Makefile Fri Jan 26 18:11:50 2018 (r460023) +++ head/devel/py-flexmock/Makefile Fri Jan 26 18:11:55 2018 (r460024) @@ -7,10 +7,14 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org -COMMENT= Flexmock is a mock/stub/spy library for Python +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Testing library to create mocks, stubs and fakes +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils .include Modified: head/devel/py-flexmock/pkg-descr ============================================================================== --- head/devel/py-flexmock/pkg-descr Fri Jan 26 18:11:50 2018 (r460023) +++ head/devel/py-flexmock/pkg-descr Fri Jan 26 18:11:55 2018 (r460024) @@ -1,18 +1,22 @@ -Flexmock is a mock/stub/spy library for Python. +flexmock is a testing library for Python that makes it easy to create mocks, +stubs and fakes. -Its API is inspired by a Ruby library of the same name. -However, it is not a goal of Python Flexmock to be a clone of -the Ruby version. Instead, the focus is on providing full support -for testing Python programs and making the creation of fake -objects as unobtrusive as possible. +Its API is inspired by a Ruby library of the same name. However, it is not a +goal of Python flexmock to be a clone of the Ruby version. Instead, the focus is +on providing full support for testing Python programs and making the creation of +fake objects as unobtrusive as possible. -As a result, Python Flexmock removes a number of redandancies in -the Ruby Flexmock API, alters some defaults, and introduces a -number of Python-only features. +As a result, Python flexmock removes a number of redundancies in the Ruby +flexmock API, alters some defaults, and introduces a number of Python-only +features. -Flexmock declarations are structured to read more like English -sentences than API calls, and it is possible to chain them -together in any order to achieve high degree of expressiveness -in a single line of code. +flexmock's design focuses on simplicity and intuitivenes. This means that the +API is as lean as possible, though a few convenient short-hand methods are +provided to aid brevity and readability. -WWW: http://has207.github.com/flexmock/ +flexmock declarations are structured to read more like English sentences than +API calls, and it is possible to chain them together in any order to achieve +high degree of expressiveness in a single line of code. + +WWW: https://pypi.python.org/pypi/flexmock +WWW: https://github.com/bkabrda/flexmock