Ticket #35124: Portfile.2

File Portfile.2, 1.1 KB (added by ctreleaven (Craig Treleaven), 12 years ago)

Revised to use Python portgroup

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2
3PortSystem          1.0
4PortGroup           python 1.0
5
6name                py-oauth
7version             1.0.1
8categories          python net
9license             MIT
10maintainers         nomaintainer
11supported_archs     noarch
12platforms           darwin
13
14description         Python library for OAuth
15long_description    An open protocol to allow API authentication in a simple and standard \
16                    method from desktop and web applications.  NB, this provides OAuth \
17                    version 1 which is substantially different from version 2.
18
19homepage            http://code.google.com/p/oauth
20master_sites        http://pypi.python.org/packages/source/o/oauth/
21distname            oauth-${version}
22
23checksums           rmd160  3d1dad6117aeb13392e35870716022e3a71897c3 \
24                    sha256  e769819ff0b0c043d020246ce1defcaadd65b9c21d244468a45a7f06cb88af5d
25
26python.versions     25 26 27
27python.default_version 26
28
29if {$subport != $name} {
30    build.type      python
31}