Gentoo Archives: gentoo-commits

From: "Julien Allanos (dju)" <dju@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/trac/files: postinst-en.txt postupgrade-en.txt digest-trac-0.11_beta1
Date: Sun, 06 Jan 2008 00:35:00
Message-Id: E1JBJTa-0004oZ-KN@stork.gentoo.org
1 dju 08/01/06 00:34:54
2
3 Modified: postinst-en.txt
4 Added: postupgrade-en.txt digest-trac-0.11_beta1
5 Log:
6 Bump to 0.11_beta1, closing bugs #150632 and #204074.
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.4 www-apps/trac/files/postinst-en.txt
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/trac/files/postinst-en.txt?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/trac/files/postinst-en.txt?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/trac/files/postinst-en.txt?r1=1.3&r2=1.4
15
16 Index: postinst-en.txt
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-apps/trac/files/postinst-en.txt,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- postinst-en.txt 9 Nov 2006 23:09:39 -0000 1.3
23 +++ postinst-en.txt 6 Jan 2008 00:34:54 -0000 1.4
24 @@ -1,71 +1,41 @@
25 Install Instructions
26 ====================
27
28 -To complete the install, create your first Trac environment by running this
29 -command:
30 -
31 - trac-admin /var/lib/trac/<project-name> initenv
32 -
33 -For security, trac relies on the webserver for authentication. The following
34 -command creates a password database for Basic Authentication with Apache 2:
35 +This is brief and generic information about Trac.
36
37 - htpasswd2 -c /etc/apache2/trac.htpasswd <user-name>
38 +See the releases notes at http://trac.edgewall.org/wiki/TracDev/ReleaseNotes
39 +for the Trac version you have installed to learn about software changes and
40 +possible caveats.
41
42 -Please adjust for the webserver of your choice, and refer to your webserver
43 -documentation.
44 +Web Server
45 +----------
46
47 -Now, all you need to do is to configure your webserver. The following is a
48 -configuration example for Apache 2 and CGI:
49 +Trac installation depends on the web server you are using.
50
51 - <Location "/cgi-bin/trac.cgi">
52 - SetEnv TRAC_ENV "/var/lib/trac/<project-name>"
53 - </Location>
54 - <Location "/cgi-bin/trac.cgi/login">
55 - AuthType Basic
56 - AuthName "trac"
57 - AuthUserFile /etc/apache2/trac.htpasswd
58 - Require valid-user
59 - </Location>
60 +FastCGI users: see http://trac.edgewall.org/wiki/TracFastCgi
61
62 -Again, please adjust for the webserver of your choice.
63 +CGI users: see http://trac.edgewall.org/wiki/TracCgi
64
65 -Fast-CGI users: you have to emerge and configure your Fast-CGI engine
66 -separately.
67 +Apache 2 and mod_python users: you have to manually emerge
68 +www-apache/mod_python. See http://trac.edgewall.org/wiki/TracModPython
69
70 -You can also use Trac without having to install a webserver. See
71 +You can also use Trac without having to install a web server. See
72 http://projects.edgewall.com/trac/wiki/TracStandalone to know more.
73
74 -Don't forget to update the configuration file! It is located at
75 -/var/lib/trac/<project-name>/conf/trac.ini. See its reference at
76 -http://projects.edgewall.com/trac/wiki/TracIni.
77 -
78 -More information (multiple projects setup, installation with Apache 2 and
79 -mod_python, lighttpd...) can be found on the Trac wiki:
80 +Trac relies on the web server for users authentication. Please refer to the
81 +Trac wiki and to your web server documentation to set up authentication.
82
83 - http://projects.edgewall.com/trac/wiki/
84 +Trac environments
85 +-----------------
86
87 -Upgrade Instructions
88 -====================
89 -
90 -If you are upgrading from a previous Trac version, please follow the
91 -instructions here:
92 -
93 - http://projects.edgewall.com/trac/wiki/TracUpgrade
94 -
95 -If upgrading to Trac 0.10, you need to upgrade, resync, wiki upgrade and
96 -possibly review your Wiki pages for your Trac environments.
97 +To complete the install, create your first Trac environment by running this
98 +command:
99
100 -Since 0.9, Trac uses sqlite-3 instead of sqlite-2. If you were using Trac 0.8.x
101 -or below, you have to upgrade your database files or else you won't be able to
102 -use Trac. You can issue the following commands, for each environment you have:
103 + trac-admin /var/lib/trac/<project-name> initenv
104
105 - mv /var/lib/trac/<project-name>/db/trac.db \
106 - /var/lib/trac/<project-name>/db/trac2.db
107 - sqlite /var/lib/trac/<project-name>/db/trac2.db .dump \
108 - | sqlite3 /var/lib/trac/<project-name>/db/trac.db
109 - trac-admin /var/lib/trac/<project-name> upgrade
110 - trac-admin /var/lib/trac/<project-name> resync
111 - trac-admin /var/lib/trac/<project-name> wiki upgrade
112 +Don't forget to review the configuration file! It is located at
113 +/var/lib/trac/<project-name>/conf/trac.ini. Consult its reference at
114 +http://projects.edgewall.com/trac/wiki/TracIni
115
116 -And review the trac.ini configuration file by comparing it to
117 -trac.ini.sample.
118 +See http://trac.edgewall.org/wiki/TracEnvironment to know more about Trac
119 +environments and how to configure them.
120
121
122
123 1.1 www-apps/trac/files/postupgrade-en.txt
124
125 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/trac/files/postupgrade-en.txt?rev=1.1&view=markup
126 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/trac/files/postupgrade-en.txt?rev=1.1&content-type=text/plain
127
128 Index: postupgrade-en.txt
129 ===================================================================
130 Upgrade Instructions
131 ====================
132
133 This is brief and generic information about Trac.
134
135 See the releases notes at http://trac.edgewall.org/wiki/TracDev/ReleaseNotes
136 for the Trac version you have installed to learn about software changes and
137 possible caveats.
138
139 If you are upgrading from a previous Trac version, please follow the
140 instructions here:
141
142 http://projects.edgewall.com/trac/wiki/TracUpgrade
143
144 You will need to run trac-admin commands (upgrade, wiki upgrade...) for each
145 Trac environment you have.
146
147 You might also want to check for new configuration options by comparing trac.ini
148 file with trac.ini.sample file in the conf/ directory in each Trac environment.
149
150
151
152 1.1 www-apps/trac/files/digest-trac-0.11_beta1
153
154 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/trac/files/digest-trac-0.11_beta1?rev=1.1&view=markup
155 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/trac/files/digest-trac-0.11_beta1?rev=1.1&content-type=text/plain
156
157 Index: digest-trac-0.11_beta1
158 ===================================================================
159 MD5 b7accd6d2e4c798e6a79c19571e33a25 Trac-0.11b1.tar.gz 634125
160 RMD160 ec73091b56877900487db75bccfa04fc93edd5ff Trac-0.11b1.tar.gz 634125
161 SHA256 43a53b9df4835c36f6c4c35086ff1d7b94e53a287b232fb6d20715e69f07f4e5 Trac-0.11b1.tar.gz 634125
162
163
164
165 --
166 gentoo-commits@g.o mailing list