~ubuntu-branches/ubuntu/maverick/eucalyptus/maverick

« back to all changes in this revision

Viewing changes to tools/euca-rampartc.spec-not

  • Committer: Bazaar Package Importer
  • Author(s): Dave Walker (Daviey)
  • Date: 2010-07-21 17:27:10 UTC
  • mfrom: (1.1.38 upstream)
  • Revision ID: james.westby@ubuntu.com-20100721172710-7xv07dmdqgivc3t9
Tags: 2.0~bzr1211-0ubuntu1
* New major upstream version merge, 2.0 (r1211).
* debian/patches/:
  - 01-wsdl-stubs.patch, debian/wsdl.md5sums: wsdl stubs updated.
  - 02-Makefile.patch: Updated to reflect new code layout.
  - 07-local_support_euca_conf-in.patch: Updated to reflect new code layout.
  - 08-ubuntu-default-networking.patch: Refreshed.
  - 09-small-128-192MB.patch: Updated to point to new location.
  - 10-disable-iscsi.patch: Refreshed.
  - 11-state-cleanup-memleakfix.patch: Removed, fixed upstream.
  - 15-fix-default-ramdisk.patch: Updated to point to new location.
  - 16-kvm_libvirt_xml_default_use_kvm.patch: Updated to reflect changes.
  - 17-fix_walrus_OOM_errors.patch: Removed, fixed upstream.
  - 18-priv_security.patch: Updated to reflect upstream changes.
  - 20-brute-force-webui.patch: Updated to reflect upstream changes. 
  - 21-eucalyptus-1.7-with-gwt-1.6.4.patch: New patch, allows 
    eucalyptus-1.7 to be built against gwt 1.6.4. Based on patch courtesy 
    of Dmitrii Zagorodnov, upstream. (LP: #597330)
* debian/eucalyptus-java-common.links: 
  - Changed symlink for groovy, point to groovy.all.jar, making compatiable 
    with groovy versions >1.7. (LP: #595421)
  - Added ant.jar & jetty-rewrite-handler.jar as they are now required.
* debian/control
  - & debian/build-jars: Added libjavassist-java and libjetty-extra-java as 
    build dependencies.
  - Added libjetty-extra-java as a dependency of eucalyptus-java-common
* The binary resulting jar's have been renamed from eucalyptus-*-1.6.2.jar
  to eucalyptus-*-main.jar:    
  - debian/eucalyptus-cc.upstart
  - debian/eucalyptus-cloud.install
  - debian/eucalyptus-common.eucalyptus.upstart
  - debian/eucalyptus-java-common.install
  - debian/eucalyptus-network.upstart
  - debian/eucalyptus-sc.install
  - debian/eucalyptus-walrus.install
* debian/eucalyptus-java-common.install: New upstream jars that have been
  installed:
  - eucalyptus-db-hsqldb-ext-main.jar
  - eucalyptus-component-main.jar
* debian/control:
  - Updated Standards Version to 3.8.4 (no change)
  - Updated the upstream Homepage to: http://open.eucalyptus.com/
  - Changed Vcs-Bzr to reflect new location of Ubuntu hosted development branch.
  - Made the Build Dependency of groovy and the binary eucalyptus-java-common
    package depend on version >=1.7.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
%define is_suse %(test -e /etc/SuSE-release && echo 1 || echo 0)
2
 
%define is_centos %(test -e /etc/redhat-release && echo 1 || echo 0)
 
1
%global is_suse %(test -e /etc/SuSE-release && echo 1 || echo 0)
 
2
%global is_centos %(grep CentOS /etc/redhat-release > /dev/null && echo 1 || echo 0)
 
3
%global is_fedora %(grep Fedora /etc/redhat-release > /dev/null && echo 1 || echo 0)
 
4
%global __httpd   httpd
3
5
%if %is_suse
4
 
%define __httpd   apache2
5
 
%endif
6
 
%if %is_centos
7
 
%define __httpd   httpd
 
6
%global __httpd   apache2
8
7
%endif
9
8
 
10
9
Summary:       Elastic Utility Computing Architecture - rampartc
11
10
Name:          euca-rampartc
12
11
Version:       1.3.0
13
 
Release:       1
 
12
Release:       3
14
13
License:       Apache
15
 
BuildRequires: %{__httpd}-devel, euca-axis2c >= 1.6.0
16
 
Requires:      euca-axis2c >= 1.5.0
 
14
BuildRequires: %{__httpd}-devel, euca-axis2c = 1.6.0, openssl-devel
 
15
Requires:      euca-axis2c = 1.5.0
17
16
Group:         Applications/System
18
 
Source:        http://open.eucalyptus.com/dependencies/1.6.0/rampartc-src-1.3.0.tgz
19
 
Patch0:        rampartc-1.3.0-euca.patch
20
 
Patch1:        euca-rampartc-DESTDIRfix.patch
 
17
Source:        http://mirror.nyi.net/apache/ws/rampart/c/1_3_0/rampartc-src-1.3.0.tar.gz
 
18
Patch0:        rampartc-memoryleak.patch
 
19
Patch1:        rampartc-DESTDIRfix.patch
21
20
BuildRoot:     %{_tmppath}/%{name}-%{version}-%{release}-build
22
 
URL:           http://open.eucalyptus.com
 
21
URL:           http://ws.apache.org/rampart/c/index.html
23
22
Provides:      euca-rampartc
24
23
 
25
24
%description
32
31
 
33
32
%prep
34
33
%setup -n rampartc-src-%{version}
35
 
%patch0 -p0
 
34
%patch0 -p1
 
35
%patch1 -p1
36
36
 
37
37
%build
38
38
export LD_LIBRARY_PATH=/opt/euca-axis2c/lib:$LD_LIBRARY_PATH
49
49
 
50
50
%clean
51
51
rm -rf %{buildroot}
52
 
rm -rf $RPM_BUILD_DIR/euca-rampartc-DESTDIRfix.patch
53
52
rm -rf $RPM_BUILD_DIR/rampartc-src-%{version}
54
53
 
55
54