[37064] trunk/dports/python
akira at macports.org
akira at macports.org
Sat May 24 22:14:33 PDT 2008
Revision: 37064
http://trac.macosforge.org/projects/macports/changeset/37064
Author: akira at macports.org
Date: 2008-05-24 22:14:32 -0700 (Sat, 24 May 2008)
Log Message:
-----------
Added modeline and untabify Portfiles
Modified Paths:
--------------
trunk/dports/python/py-sqlobject/Portfile
trunk/dports/python/py25-sqlobject/Portfile
Modified: trunk/dports/python/py-sqlobject/Portfile
===================================================================
--- trunk/dports/python/py-sqlobject/Portfile 2008-05-25 05:07:51 UTC (rev 37063)
+++ trunk/dports/python/py-sqlobject/Portfile 2008-05-25 05:14:32 UTC (rev 37064)
@@ -1,3 +1,4 @@
+# -*- 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
# $Id$
PortSystem 1.0
@@ -3,42 +4,41 @@
PortGroup python24 1.0
-name py-sqlobject
-version 0.10.2b1
-categories python databases
-platforms darwin
-maintainers openmaintainer akira
-description object-relational mapper for python
-long_description SQLObject is an object-relational mapper. It allows \
- you to translate RDBMS table rows into Python objects, \
- and manipulate those objects to transparently \
- manipulate the database. In using SQLObject, you will \
- create a class definition that will describe how the \
- object connects to the database (in addition to any \
- other methods you may wish to add to the class). \
- SQLObject will produce the code to access the \
- database, and update the database with your changes. \
- The interface to the database is meant to be \
- indistinguishable from other interfaces you may add to \
- the object. SQLObject also includes a novel feature to \
- generate WHERE clauses using Python syntax and objects \
- (instead of generating SQL using string substitution, \
- as is traditional).
+name py-sqlobject
+version 0.10.2b1
+categories python databases
+platforms darwin
+maintainers openmaintainer akira
+description object-relational mapper for python
+long_description SQLObject is an object-relational mapper. It allows \
+ you to translate RDBMS table rows into Python objects, \
+ and manipulate those objects to transparently \
+ manipulate the database. In using SQLObject, you will \
+ create a class definition that will describe how the \
+ object connects to the database (in addition to any \
+ other methods you may wish to add to the class). \
+ SQLObject will produce the code to access the \
+ database, and update the database with your changes. \
+ The interface to the database is meant to be \
+ indistinguishable from other interfaces you may add to \
+ the object. SQLObject also includes a novel feature to \
+ generate WHERE clauses using Python syntax and objects \
+ (instead of generating SQL using string substitution, \
+ as is traditional).
-homepage http://www.sqlobject.org/
-master_sites http://cheeseshop.python.org/packages/source/S/SQLObject/
-checksums md5 44e2ef3c4792ea4d992ad4a130d00936 \
- sha1 396d3d52a351a63031d4afb95f2339bd54b5026d \
- rmd160 a7535f95d770b35f463cb5529a6f3873bdba51f0
-distname SQLObject-${version}
+homepage http://www.sqlobject.org/
+master_sites http://cheeseshop.python.org/packages/source/S/SQLObject/
+checksums md5 44e2ef3c4792ea4d992ad4a130d00936 \
+ sha1 396d3d52a351a63031d4afb95f2339bd54b5026d \
+ rmd160 a7535f95d770b35f463cb5529a6f3873bdba51f0
+distname SQLObject-${version}
-depends_lib-append port:py-formencode
+depends_lib-append port:py-formencode
-post-destroot {
- xinstall -m 644 -W ${worksrcpath}/docs Authors.txt FAQ.txt News.txt \
- SQLBuilder.txt SQLObject.txt ${destroot}${prefix}/share/doc/${name}
- xinstall -m 644 ${worksrcpath}/README.txt \
- ${destroot}${prefix}/share/doc/${name}
- move ${destroot}${prefix}/bin/sqlobject-admin \
- ${destroot}${prefix}/bin/sqlobject-admin2.4
+post-destroot {
+ xinstall -m 644 -W ${worksrcpath}/docs Authors.txt FAQ.txt News.txt \
+ SQLBuilder.txt SQLObject.txt ${destroot}${prefix}/share/doc/${name}
+ xinstall -m 644 ${worksrcpath}/README.txt \
+ ${destroot}${prefix}/share/doc/${name}
+ move ${destroot}${prefix}/bin/sqlobject-admin \
+ ${destroot}${prefix}/bin/sqlobject-admin2.4
}
-
Modified: trunk/dports/python/py25-sqlobject/Portfile
===================================================================
--- trunk/dports/python/py25-sqlobject/Portfile 2008-05-25 05:07:51 UTC (rev 37063)
+++ trunk/dports/python/py25-sqlobject/Portfile 2008-05-25 05:14:32 UTC (rev 37064)
@@ -1,3 +1,4 @@
+# -*- 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
# $Id$
PortSystem 1.0
@@ -3,42 +4,41 @@
PortGroup python25 1.0
-name py25-sqlobject
-version 0.10.2b1
-categories python databases
-platforms darwin
-maintainers openmaintainer akira
-description object-relational mapper for python
-long_description SQLObject is an object-relational mapper. It allows \
- you to translate RDBMS table rows into Python objects, \
- and manipulate those objects to transparently \
- manipulate the database. In using SQLObject, you will \
- create a class definition that will describe how the \
- object connects to the database (in addition to any \
- other methods you may wish to add to the class). \
- SQLObject will produce the code to access the \
- database, and update the database with your changes. \
- The interface to the database is meant to be \
- indistinguishable from other interfaces you may add to \
- the object. SQLObject also includes a novel feature to \
- generate WHERE clauses using Python syntax and objects \
- (instead of generating SQL using string substitution, \
- as is traditional).
+name py25-sqlobject
+version 0.10.2b1
+categories python databases
+platforms darwin
+maintainers openmaintainer akira
+description object-relational mapper for python
+long_description SQLObject is an object-relational mapper. It allows \
+ you to translate RDBMS table rows into Python objects, \
+ and manipulate those objects to transparently \
+ manipulate the database. In using SQLObject, you will \
+ create a class definition that will describe how the \
+ object connects to the database (in addition to any \
+ other methods you may wish to add to the class). \
+ SQLObject will produce the code to access the \
+ database, and update the database with your changes. \
+ The interface to the database is meant to be \
+ indistinguishable from other interfaces you may add to \
+ the object. SQLObject also includes a novel feature to \
+ generate WHERE clauses using Python syntax and objects \
+ (instead of generating SQL using string substitution, \
+ as is traditional).
-homepage http://www.sqlobject.org/
-master_sites http://cheeseshop.python.org/packages/source/S/SQLObject/
-checksums md5 44e2ef3c4792ea4d992ad4a130d00936 \
- sha1 396d3d52a351a63031d4afb95f2339bd54b5026d \
- rmd160 a7535f95d770b35f463cb5529a6f3873bdba51f0
-distname SQLObject-${version}
+homepage http://www.sqlobject.org/
+master_sites http://cheeseshop.python.org/packages/source/S/SQLObject/
+checksums md5 44e2ef3c4792ea4d992ad4a130d00936 \
+ sha1 396d3d52a351a63031d4afb95f2339bd54b5026d \
+ rmd160 a7535f95d770b35f463cb5529a6f3873bdba51f0
+distname SQLObject-${version}
-depends_lib-append port:py25-formencode
+depends_lib-append port:py25-formencode
-post-destroot {
- xinstall -m 644 -W ${worksrcpath}/docs Authors.txt FAQ.txt News.txt \
- SQLBuilder.txt SQLObject.txt ${destroot}${prefix}/share/doc/${name}
- xinstall -m 644 ${worksrcpath}/README.txt \
- ${destroot}${prefix}/share/doc/${name}
- move ${destroot}${prefix}/bin/sqlobject-admin \
- ${destroot}${prefix}/bin/sqlobject-admin2.5
+post-destroot {
+ xinstall -m 644 -W ${worksrcpath}/docs Authors.txt FAQ.txt News.txt \
+ SQLBuilder.txt SQLObject.txt ${destroot}${prefix}/share/doc/${name}
+ xinstall -m 644 ${worksrcpath}/README.txt \
+ ${destroot}${prefix}/share/doc/${name}
+ move ${destroot}${prefix}/bin/sqlobject-admin \
+ ${destroot}${prefix}/bin/sqlobject-admin2.5
}
-
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20080524/f5211ce2/attachment.htm
More information about the macports-changes
mailing list