Gentoo Archives: gentoo-commits

From: "Aaron Swenson (titanofold)" <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/postgis/files: postgis_dbs
Date: Sun, 01 May 2011 17:33:59
Message-Id: 20110501173349.F016220057@flycatcher.gentoo.org
1 titanofold 11/05/01 17:33:49
2
3 Added: postgis_dbs
4 Log:
5 Fixes bug 273960, 285082, 296172, 314243, 325113 and 339312
6
7 (Portage version: 2.1.9.42/cvs/Linux i686)
8
9 Revision Changes Path
10 1.1 dev-db/postgis/files/postgis_dbs
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgis/files/postgis_dbs?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgis/files/postgis_dbs?rev=1.1&content-type=text/plain
14
15 Index: postgis_dbs
16 ===================================================================
17 # This file is used by 'emerge --config dev-db/postgis' to determine which
18 # databases it should install to, upgrade or create as a template.
19
20 # Unlike the previous versions of the PostGIS ebuilds, it no longer creates any
21 # databases except for templates. All databases you list must already exist in
22 # the cluster.
23
24 # The user to perform the updates as. This user must have the privileges to
25 # modify all of the databases you list here.
26 pguser="postgres"
27
28 # By default, no databases will have PostGIS enabled. The databases listed here
29 # must already exist. The databases you list here must not already be PostGIS
30 # enabled. Instead, use the upgrade lists further down.
31 #databases=( "your" "databases" )
32
33 # Anything you place in this list will create a database and make it a template.
34 # It will be PostGIS-enabled. To add additional features, add the template names
35 # to the following lists.
36 #templates=( "template_postgis" )
37
38 # The PostGIS enabled templates will be created using this template.
39 from_template="template1"
40
41 # For a complete set of EPSG coordinate system definition identifiers, you can
42 # also load the spatial_ref_sys.sql definitions file and populate the
43 # spatial_ref_sys table. This will permit you to perform ST_Transform()
44 # operations on geometries.
45 #epsg_databases=( "enable" "epsg" "on" "these" "databases" )
46
47 # Add comments to PostGIS functions to the databases in this list.
48 #comment_databases=( "comments" "on" "these" "databases" )
49
50 # Any databases you have that are already PostGIS enabled can be listed among
51 # the following list to perform a soft upgrade. If the soft upgrade fails,
52 # you'll need to do a hard upgrade.
53 # http://postgis.refractions.net/documentation/manual-1.5/ch02.html#hard_upgrade
54
55 # Upgrade from PostGIS 1.3 to 1.5
56 #upgrade_from_1_3=( "upgrade" "these" "databases" )
57
58 # Upgrade from PostGIS 1.4 to 1.5
59 #upgrade_from_1_4=( "upgrade" "these" "databases" )
60
61 # Perform a minor upgrade for PostGIS 1.5
62 #upgrade_from_1_5=( "upgrade" "these" "databases" )
63
64 # Uncomment this once you're satisfied with the settings in this file.
65 #configured="true"