Commit graph

8 commits

Author SHA1 Message Date
Kubilay Kocak
fc6119645e net/py-oauth2: Fix tests from being installed in site-packages
- Patch setup.py to exclude tests from install (CONFLICT) [1][2]
- pkg-descr: Tab->space in WWW: (portlint)
- Bump PORTREVISION

[1] This Python package uses packages=find_packages() with a tests
module in the root that contains an __init__.py file, which results
in the tests module being installed in site-packages. The correct way
of including tests in a pypi package using sdist, while excluding tests
in the root from being installed it to use:

 * packages = find_packages(exclude='tests'),
 * A MANIFEST.in containing "include tests/*" or equivalent

[2] https://github.com/simplegeo/python-oauth2/issues/139

Reported by:	antoine
Approved by:	maintainer (via Twitter)
2014-03-15 15:07:07 +00:00
Martin Wilke
528736998d - Stage support
- Convert to PYDISTUTILS_AUTOPLIST
- Bump PORTREVISION
2014-01-29 16:17:02 +00:00
Baptiste Daroussin
0c710c7b4e Add NO_STAGE all over the place in preparation for the staging support (cat: net) 2013-09-20 22:10:23 +00:00
Cheng-Lung Sung
50644c0b98 - Update to 1.5.211
- Add LICENSE

PR:		ports/168575
Submitted by:	koobs <koobs.freebsd_AT_gmail.com>
2012-06-26 06:13:02 +00:00
Eitan Adler
c59a3834c4 At the moment 1385 ports use BUILD_DEPENDS= ${RUN_DEPENDS} and 450
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are
currently broken. This is a temporary measure until we organically stop using
:= or someone(s) spend a lot of time changing all the ports over.

Explicit duplication > := > = and this just moves ports one step to the left

Approved by:	portmgr
2012-01-21 17:40:15 +00:00
Cheng-Lung Sung
8b594f475c - Update to 1.5.170 2011-05-06 05:34:14 +00:00
Cheng-Lung Sung
6806fbbbdd - Update to 1.5.168 2011-04-06 08:03:11 +00:00
Cheng-Lung Sung
55fc05e6a9 net/py-oauth2 was originally forked from Leah Culver and Andy Smith's
oauth.py code (see net/py-oauth).

A number of notable differences exist between this code and its
forefathers:

* 100% unit test coverage.
* The DataStore object has been completely ripped out.
* Classes are no longer prefixed with OAuth.
* The Request class now extends from dict.
* The library is likely no longer compatible with Python 2.3.
* The Client class works and extends from httplib2.

WWW:	http://github.com/simplegeo/python-oauth2
2011-03-02 10:04:17 +00:00