diff options
author | Martin Peck <coder@peertech.org> | 2009-01-05 06:25:06 +0000 |
---|---|---|
committer | Martin Peck <coder@peertech.org> | 2009-01-05 06:25:06 +0000 |
commit | c2471485340ee63733295a333573aaeb864e8069 (patch) | |
tree | 71f4c15620b8c94338ee9fdaa7139850ccb2bad1 /config | |
parent | 7ddde832b14e53b9f35f5178d5046ee375c5e849 (diff) |
Add configuration for polipo win32 msi packages.
git-svn-id: file:///home/or/svnrepo/updater/trunk@17906 55e972cd-5a19-0410-ae62-a4d7a52db4cd
Diffstat (limited to 'config')
-rw-r--r-- | config/polipo-win32-bundle.cfg | 19 | ||||
-rw-r--r-- | config/polipo-win32-package.cfg | 22 |
2 files changed, 41 insertions, 0 deletions
diff --git a/config/polipo-win32-bundle.cfg b/config/polipo-win32-bundle.cfg new file mode 100644 index 0000000..b2ab160 --- /dev/null +++ b/config/polipo-win32-bundle.cfg @@ -0,0 +1,19 @@ + +# The name of this bundle. +name = "polipo-win32-bundle" +# Version of the bundle +version = [1, 0, 4, 1] +# Where does it go in the repository? +location = "/bundleinfo/polipo/win32/polipo-win32-bundle-1.0.4.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="polipo", + order=(10,10,10), + optional=False) +# The "Glosses" describe a package's purpose in the bundle. +ShortGloss("en", "Polipo web proxy win32 installer.") +LongGloss("en", "This is the Polipo caching web proxy executable for Windows, with MSI installer."); + diff --git a/config/polipo-win32-package.cfg b/config/polipo-win32-package.cfg new file mode 100644 index 0000000..667ab16 --- /dev/null +++ b/config/polipo-win32-package.cfg @@ -0,0 +1,22 @@ + +# This is package is name 'example' +name = "polipo" + +# Encodes current version +version = [1, 0, 4, 1] + +# Where in the repository does it go? +location = "/pkginfo/polipo/win32/polipo-1.0.4.1.txt" + +# Where in the repository does its underlying rpm or exe (etc) file go? +relpath = "/data/win32/polipo-1.0.4.1.msi" + +# Decriptions of the package. +ShortDesc('en', "Polipo web proxy win32 installer") +LongDesc('en', "This is the Polipo caching web proxy executable for Windows, with MSI installer.") + +format = "win32" +command_install = [ 'msiexec', '/i', "${FILE}", 'NOSC=1', '/qn' ] +exe_registry_ent = [ r'HKEY_CURRENT_USER\Software\Polipo\Version', + '1.0.4.1' ] + |