[Inteproxy-commits] r54 - in trunk: . rpm

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Fri Apr 20 14:35:28 CEST 2007


Author: sholl
Date: 2007-04-20 14:35:28 +0200 (Fri, 20 Apr 2007)
New Revision: 54

Added:
   trunk/rpm/
   trunk/rpm/inteproxy-sles9.spec
Modified:
   trunk/ChangeLog
Log:
* rpm/inteproxy-sles9.spec: New. added SPEC-file to build
  inteproxy-0.1.2-RPMs on SLES9


Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-04-19 13:58:28 UTC (rev 53)
+++ trunk/ChangeLog	2007-04-20 12:35:28 UTC (rev 54)
@@ -1,3 +1,8 @@
+2007-04-20  Stephan Holl  <stephan.holl at intevation.de>
+
+	* rpm/inteproxy-sles9.spec: New. added SPEC-file to build
+	inteproxy-0.1.2-RPMs on SLES9
+	
 2007-04-19  Jan-Oliver Wagner  <jan-oliver.wagner at intevation.de>
 
 	* website/website, website/index.htm4, website/inteproxy.css,

Added: trunk/rpm/inteproxy-sles9.spec
===================================================================
--- trunk/rpm/inteproxy-sles9.spec	2007-04-19 13:58:28 UTC (rev 53)
+++ trunk/rpm/inteproxy-sles9.spec	2007-04-20 12:35:28 UTC (rev 54)
@@ -0,0 +1,69 @@
+#
+# spec file for package InteProxy (Version 0.1.2)
+#
+# Copyright (c) 2007 Intevation GmbH, Germany
+# This file and all modifications and additions to this
+# file are under the same license as the package itself.
+#
+# Please submit bugfixes or comments via 
+# http://wald.intevation.org/tracker/?atid=178&group_id=23&func=browse
+#
+
+
+BuildRequires: python 
+Requires: python python-lxml pygtk gtk+
+
+Summary:	InteProxy is a proxy which helps to secure  OGC-connection between clients and servers.
+Name:           InteProxy
+License:        GNU/LGPL
+Group:          Development/System
+Version:        0.1.2
+Release:        1
+# URL: 
+Source0:        http://wald.intevation.org/frs/download.php/334/%{name}-%{version}.tar.gz
+
+# where to build
+BuildRoot: %{_tmppath}/%{name}-buildroot
+Prefix: %{_prefix}
+
+
+%description
+InteProxy is a proxy which helps applications that use simple HTTP for some services to have secure connections with authentication and SSL. The proxy runs on the client system. Typical case are the services specified by Open Geospatial Consortium (WMS, WFS, etc.).
+
+Authors:
+--------
+    Bernhard Herzog <bh at intevation.de>
+
+# prepare Build-environment
+%prep
+%setup0 -n %{name}-%{version}
+
+%build
+# nothing to build here
+
+%install
+%define InteProxyDir %{_libdir}/python/site-packages/InteProxy
+
+# install the stuff
+mkdir -p %{buildroot}/%{InteProxyDir}
+install -m 755 getpassword.py proxyconnection.py transcoder.py %{buildroot}/%{InteProxyDir}
+mkdir -p %{buildroot}/%{_bindir}
+install -m 755 InteProxy.py %{buildroot}/%{_bindir}/InteProxy.py
+
+%post
+python %{_libdir}/python/compileall.py %{InteProxyDir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-, root, root)
+%doc doc/*.odt ChangeLog COPYING
+%{InteProxyDir}
+%{_bindir}/*.py
+
+%changelog
+* Fri Apr 20 2007 - stephan.holl at intevation.de
+- initial RPM for SLES9 
+- handcrafted SPEC-file



More information about the Inteproxy-commits mailing list