Mercurial > sqlpython
comparison sqlpython_epm.list @ 329:3efffbf7481f
fixed bug in assigning 0, null to bind vars
author | Catherine Devlin <catherine.devlin@gmail.com> |
---|---|
date | Mon, 06 Apr 2009 14:45:05 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
325:8721372d81be | 329:3efffbf7481f |
---|---|
1 #EPM List File Can Be Used To Create Package For Any Of These Vendor Platforms | |
2 #epm -f format foo bar.list ENTER | |
3 #The format option can be one of the following keywords: | |
4 | |
5 #aix - AIX software packages. | |
6 #bsd - FreeBSD, NetBSD, or OpenBSD software packages. | |
7 #depot or swinstall - HP-UX software packages. | |
8 #dpkg - Debian software packages. | |
9 #inst or tardist - IRIX software packages. | |
10 #native - "Native" software packages (RPM, INST, DEPOT, PKG, etc.) for the platform. | |
11 #osx - MacOS X software packages. | |
12 #pkg - Solaris software packages. | |
13 #portable - Portable software packages (default). | |
14 #rpm - Red Hat software packages. | |
15 #setld - Tru64 (setld) software packages. | |
16 #slackware - Slackware software packages. | |
17 | |
18 | |
19 # Product Information Section | |
20 | |
21 %product sqlpython | |
22 %copyright 2009 Catherine Devlin | |
23 %vendor None | |
24 %license COPYING | |
25 %readme doc/source/intro.rst | |
26 %description Command-line ad-hoc SQL tool, akin to Oracle's SQL*Plus | |
27 %version 1.6.4 | |
28 | |
29 # Autoconfiguration Variables | |
30 | |
31 $prefix=/usr | |
32 $exec_prefix=/usr | |
33 $bindir=${exec_prefix}/bin | |
34 $datadir=/usr/share | |
35 $docdir=${datadir}/doc/sqlpython | |
36 $libdir=/usr/lib | |
37 $mandir=/usr/share/man | |
38 $srcdir=. | |
39 | |
40 # Executables | |
41 | |
42 %system all | |
43 f 0555 root sys ${bindir}/sqlpython sqlpython/mysqlpy.py | |
44 | |
45 # Documentation | |
46 | |
47 %subpackage documentation | |
48 f 0444 root sys ${docdir}/README $srcdir/docs/source/intro.rst | |
49 f 0444 root sys ${docdir}/COPYING $srcdir/COPYING | |
50 f 0444 root sys ${docdir}/index.html $srcdir/docs/build/index.html | |
51 | |
52 # Man pages | |
53 | |
54 %subpackage man | |
55 %description Man pages for sqlpython | |
56 f 0444 root sys ${mandir}/man1/sqlpython.1 $srcdir/docs/source/sqlpython.man |