<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://help.openclovis.com/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://help.openclovis.com/index.php?action=history&amp;feed=atom&amp;title=Doc%3ASdk_4.1%2Ftaeguide%2Fdeppkg</id>
		<title>Doc:Sdk 4.1/taeguide/deppkg - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://help.openclovis.com/index.php?action=history&amp;feed=atom&amp;title=Doc%3ASdk_4.1%2Ftaeguide%2Fdeppkg"/>
		<link rel="alternate" type="text/html" href="https://help.openclovis.com/index.php?title=Doc:Sdk_4.1/taeguide/deppkg&amp;action=history"/>
		<updated>2026-04-28T12:21:13Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.20.2</generator>

	<entry>
		<id>https://help.openclovis.com/index.php?title=Doc:Sdk_4.1/taeguide/deppkg&amp;diff=772&amp;oldid=prev</id>
		<title>Bot: 1 revision</title>
		<link rel="alternate" type="text/html" href="https://help.openclovis.com/index.php?title=Doc:Sdk_4.1/taeguide/deppkg&amp;diff=772&amp;oldid=prev"/>
				<updated>2011-10-24T19:07:11Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
			&lt;tr style='vertical-align: top;'&gt;
			&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 19:07, 24 October 2011&lt;/td&gt;
			&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Bot</name></author>	</entry>

	<entry>
		<id>https://help.openclovis.com/index.php?title=Doc:Sdk_4.1/taeguide/deppkg&amp;diff=771&amp;oldid=prev</id>
		<title>Suraj at 12:08, 26 June 2009</title>
		<link rel="alternate" type="text/html" href="https://help.openclovis.com/index.php?title=Doc:Sdk_4.1/taeguide/deppkg&amp;diff=771&amp;oldid=prev"/>
				<updated>2009-06-26T12:08:30Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Deployment and Packaging==&lt;br /&gt;
The OpenClovis TAE is provided in the form of a gzipped tar file (.tar.gz).  You can open this file (tar xvfz &amp;lt;filename&amp;gt;) in directory (as &amp;quot;root&amp;quot; user). It will create a directory called openclovis-tae-&amp;lt;version&amp;gt;. The rest of this document will refer to this directory using the symbol &amp;lt;TAEBASE&amp;gt;. This directory should contain following files/directories :&lt;br /&gt;
*README.txt&lt;br /&gt;
*Python-2.5.2.tgz&lt;br /&gt;
*setuptools-0.6c9.tar.gz&lt;br /&gt;
*TG_setup_files.tgz&lt;br /&gt;
*tae (directory)&lt;br /&gt;
&lt;br /&gt;
==Steps to install TAE==&lt;br /&gt;
&lt;br /&gt;
* Install Python-2.5.2&lt;br /&gt;
# tar zxvf Python-2.5.2.tgz&lt;br /&gt;
# cd Python-2.5.2&lt;br /&gt;
# ./configure&lt;br /&gt;
# make&lt;br /&gt;
# make install&lt;br /&gt;
&lt;br /&gt;
* Install setuptools (required for easy_install used in next step) &lt;br /&gt;
&lt;br /&gt;
# tar zxvf setuptools-0.6c9.tar.gz&lt;br /&gt;
# cd setuptools-0.6c9&lt;br /&gt;
# python setup.py install&lt;br /&gt;
&lt;br /&gt;
* Install Turbougear and tae-report server dependent packages&lt;br /&gt;
&lt;br /&gt;
# tar zxvf TG_setup_files.tgz&lt;br /&gt;
# cd TG_setup_files&lt;br /&gt;
# easy_install -Hlocalhost *.egg&lt;br /&gt;
&lt;br /&gt;
* Install tae 3rdparty packages&lt;br /&gt;
&lt;br /&gt;
# cd tae/3rdparty/&lt;br /&gt;
# make install&lt;br /&gt;
&lt;br /&gt;
* Build initial database&lt;br /&gt;
&lt;br /&gt;
# cd taereport&lt;br /&gt;
# rm devdata.sqlite*&lt;br /&gt;
# tg-admin sql create&lt;br /&gt;
&lt;br /&gt;
* Run&lt;br /&gt;
&lt;br /&gt;
# iptables -F  # Turn off firewall needed on some linux distributions (or you can edit your firewall settings to let TAE through)&lt;br /&gt;
# python start-taereport.py&lt;br /&gt;
&lt;br /&gt;
* Set up database&lt;br /&gt;
&lt;br /&gt;
#Open browser, and go to &amp;lt;taeserver&amp;gt;:5000/catwalk&lt;br /&gt;
#Click project-&amp;gt;Add project&lt;br /&gt;
#Status: 1&lt;br /&gt;
#Description: &amp;lt;anything&amp;gt;&lt;br /&gt;
#Created: &amp;lt;leave&amp;gt;&lt;br /&gt;
#Brief: &amp;lt;anything&amp;gt;&lt;br /&gt;
#Label: &amp;lt;specify the project name that appears throughout the rest of the TAE reports&amp;gt;&lt;br /&gt;
#anonymous_view: &amp;lt;specify 1 to allow anonymous users&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* All Done!&lt;br /&gt;
&lt;br /&gt;
#Use TAE report server: Open browser, and go to &amp;lt;taeserver&amp;gt;:5000&lt;br /&gt;
&lt;br /&gt;
* Next steps: &lt;br /&gt;
&lt;br /&gt;
# Read and follow the OpenClovis TAE user/programming guide &lt;br /&gt;
# Start running tests and upload them to &amp;lt;taeserver&amp;gt;/&amp;lt;taedirectory&amp;gt;/taereport/import&lt;/div&gt;</summary>
		<author><name>Suraj</name></author>	</entry>

	</feed>