Ticket #34165: Portfile

File Portfile, 1.0 KB (added by 3add3287 (3add3287), 12 years ago)

Portfile for py-bottle-sqlalchemy

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem 1.0
5PortGroup python 1.0
6
7name                py-bottle-sqlalchemy
8version             0.3
9
10categories          python databases devel
11maintainers         vmunix.org:torstenb openmaintainer
12description         SQLAlchemy plugin for bottle web microframework
13long_description    This bottle-sqlalchemy plugin integrates SQLAlchemy \
14                    with Bottle applications. It injects a SQLAlchemy \
15                    session in routes and handles the session cycle. \
16
17platforms           darwin
18supported_archs     noarch
19
20homepage            https://github.com/iurisilvio/bottle-sqlalchemy
21
22python.versions     25 26 27
23python.default_version 27
24
25fetch.type          git
26git.url             https://github.com/iurisilvio/bottle-sqlalchemy.git
27git.branch          0c26cb8e57
28distname            bottle-sqlalchemy
29
30if {$subport != $name} {
31    depends_lib     port:py-bottle
32}