summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMartin Peck <coder@peertech.org>2009-03-14 13:17:25 -0700
committerMartin Peck <coder@peertech.org>2009-03-14 13:17:25 -0700
commitce33821211c05735024617853aa3d0a31e63ef59 (patch)
tree482033386ca1f37d266c8db8cd2fcf7a733d3245 /config
parentb346e24c3d67c129b8609d44cab77160b3cfb399 (diff)
New bundle and package config files for Tor VM, licenses, and Vidalia packages.
Diffstat (limited to 'config')
-rw-r--r--config/license-win32-bundle.cfg19
-rw-r--r--config/license-win32-package.cfg20
-rw-r--r--config/torvm-win32-bundle.cfg19
-rw-r--r--config/torvm-win32-package.cfg20
-rw-r--r--config/vidalia-marble-win32-bundle.cfg19
-rw-r--r--config/vidalia-marble-win32-package.cfg22
-rw-r--r--config/vidalia-win32-package.cfg2
7 files changed, 120 insertions, 1 deletions
diff --git a/config/license-win32-bundle.cfg b/config/license-win32-bundle.cfg
new file mode 100644
index 0000000..c451337
--- /dev/null
+++ b/config/license-win32-bundle.cfg
@@ -0,0 +1,19 @@
+
+# The name of this bundle.
+name = "license-win32-bundle"
+# Version of the bundle
+version = [0, 0, 1]
+# Where does it go in the repository?
+location = "/bundleinfo/license/win32/license-0.0.1.txt"
+os = "win32"
+arch = "x86"
+
+# This is one of the packages in the bundle. There can be as many as you
+# like.
+Package(name="license",
+ order=(10,10,10),
+ optional=False)
+# The "Glosses" describe a package's purpose in the bundle.
+ShortGloss("en", "Tor License Installer.")
+LongGloss("en", "Tor bundle license documentation with win32 MSI installer.")
+
diff --git a/config/license-win32-package.cfg b/config/license-win32-package.cfg
new file mode 100644
index 0000000..0ac5f82
--- /dev/null
+++ b/config/license-win32-package.cfg
@@ -0,0 +1,20 @@
+name = "license"
+
+# Encodes current version
+version = [0, 0, 1]
+
+# Where in the repository does it go?
+location = "/pkginfo/license/win32/license-0.0.1.txt"
+
+# Where in the repository does its underlying package file go?
+relpath = "/data/win32/license-0.0.1.msi"
+
+# Decriptions of the package.
+ShortDesc('en', "Tor License Installer")
+LongDesc('en', "Tor bundle license documentation, with MSI installer.")
+
+format = "win32"
+command_install = [ 'msiexec', '/i', "${FILE}", 'NOSC=1', '/qn' ]
+exe_registry_ent = [ r'HKEY_CURRENT_USER\Software\Tor License\Version',
+ '0.0.1' ]
+
diff --git a/config/torvm-win32-bundle.cfg b/config/torvm-win32-bundle.cfg
new file mode 100644
index 0000000..52ef59e
--- /dev/null
+++ b/config/torvm-win32-bundle.cfg
@@ -0,0 +1,19 @@
+
+# The name of this bundle.
+name = "torvm-win32-bundle"
+# Version of the bundle
+version = [0, 0, 1]
+# Where does it go in the repository?
+location = "/bundleinfo/torvm/win32/torvm-win32-bundle-0.0.1.txt"
+os = "win32"
+arch = "x86"
+
+# This is one of the packages in the bundle. There can be as many as you
+# like.
+Package(name="torvm",
+ order=(10,10,10),
+ optional=False)
+# The "Glosses" describe a package's purpose in the bundle.
+ShortGloss("en", "Tor VM for win32.")
+LongGloss("en", "Tor VM for 32bit Windows, with MSI installer.")
+
diff --git a/config/torvm-win32-package.cfg b/config/torvm-win32-package.cfg
new file mode 100644
index 0000000..46987ec
--- /dev/null
+++ b/config/torvm-win32-package.cfg
@@ -0,0 +1,20 @@
+name = "torvm"
+
+# Encodes current version
+version = [0, 0, 1]
+
+# Where in the repository does it go?
+location = "/pkginfo/torvm/win32/torvm-0.0.1.txt"
+
+# Where in the repository does its underlying package file go?
+relpath = "/data/win32/torvm-0.0.1.msi"
+
+# Decriptions of the package.
+ShortDesc('en', "Tor VM win32 installer")
+LongDesc('en', "Tor VM for 32bit Windows, with MSI installer.")
+
+format = "win32"
+command_install = [ 'msiexec', '/i', "${FILE}", 'BUNDLE=1', '/qn' ]
+exe_registry_ent = [ r'HKEY_CURRENT_USER\Software\Tor VM\Version',
+ '0.0.1' ]
+
diff --git a/config/vidalia-marble-win32-bundle.cfg b/config/vidalia-marble-win32-bundle.cfg
new file mode 100644
index 0000000..a712ec4
--- /dev/null
+++ b/config/vidalia-marble-win32-bundle.cfg
@@ -0,0 +1,19 @@
+
+# The name of this bundle.
+name = "vidalia-marble-win32-bundle"
+# Version of the bundle
+version = [0, 2, 0]
+# Where does it go in the repository?
+location = "/bundleinfo/vidalia/win32/vidalia-marble-win32-bundle-0.2.0.txt"
+os = "win32"
+arch = "x86"
+
+# This is one of the packages in the bundle. There can be as many as you
+# like.
+Package(name="vidalia-marble",
+ order=(10,10,10),
+ optional=False)
+# The "Glosses" describe a package's purpose in the bundle.
+ShortGloss("en", "Vidalia with Marble Map Installer.")
+LongGloss("en", "This is the 3D Marble Map enabled Vidalia Tor controller for Windows, with MSI installer.");
+
diff --git a/config/vidalia-marble-win32-package.cfg b/config/vidalia-marble-win32-package.cfg
new file mode 100644
index 0000000..3db8cf1
--- /dev/null
+++ b/config/vidalia-marble-win32-package.cfg
@@ -0,0 +1,22 @@
+
+# package name
+name = "vidalia-marble"
+
+# Encodes current version
+version = [0, 2, 0]
+
+# Where in the repository does it go?
+location = "/pkginfo/polipo/win32/vidalia-marble-0.2.0.txt"
+
+# Where in the repository does its underlying rpm or exe (etc) file go?
+relpath = "/data/win32/vidalia-marble-0.2.0.msi"
+
+# Decriptions of the package.
+ShortDesc('en', "Vidalia with Marble Map Installer")
+LongDesc('en', "This is the 3D Marble Map enabled Vidalia Tor controller for Windows, with MSI installer.")
+
+format = "win32"
+command_install = [ 'msiexec', '/i', "${FILE}", '/qn' ]
+exe_registry_ent = [ r'HKEY_CURRENT_USER\Software\Vidalia\Version',
+ '0.2.0' ]
+
diff --git a/config/vidalia-win32-package.cfg b/config/vidalia-win32-package.cfg
index 9341961..20d91e3 100644
--- a/config/vidalia-win32-package.cfg
+++ b/config/vidalia-win32-package.cfg
@@ -12,7 +12,7 @@ location = "/pkginfo/polipo/win32/vidalia-0.2.0.txt"
relpath = "/data/win32/vidalia-0.2.0.msi"
# Decriptions of the package.
-ShortDesc('en', "Polipo web proxy win32 installer")
+ShortDesc('en', "Vidalia win32 installer")
LongDesc('en', "This is the Vidalia Tor controller for Windows, with MSI installer.")
format = "win32"