You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2009/12/16 16:04:42 UTC

svn commit: r891270 - in /incubator/pivot/infra: bin/maven-deploy.sh rpm/ rpm/pivot.spec

Author: tvolkert
Date: Wed Dec 16 15:04:41 2009
New Revision: 891270

URL: http://svn.apache.org/viewvc?rev=891270&view=rev
Log:
Added initial work towards Pivot RPM spec file

Added:
    incubator/pivot/infra/rpm/
    incubator/pivot/infra/rpm/pivot.spec   (with props)
Modified:
    incubator/pivot/infra/bin/maven-deploy.sh   (props changed)

Propchange: incubator/pivot/infra/bin/maven-deploy.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/pivot/infra/rpm/pivot.spec
URL: http://svn.apache.org/viewvc/incubator/pivot/infra/rpm/pivot.spec?rev=891270&view=auto
==============================================================================
--- incubator/pivot/infra/rpm/pivot.spec (added)
+++ incubator/pivot/infra/rpm/pivot.spec Wed Dec 16 15:04:41 2009
@@ -0,0 +1,71 @@
+Name:           pivot
+Version:        1.4.0
+Release:        1%{?dist}
+Summary:        Apache Pivot RIA framework for Java
+Summary(it):    TODO SANDRO
+Summary(cn):    TODO LEO
+
+Group:          Development/Libraries
+License:        ASL 2.0
+URL:            http://pivot.apache.org/
+Source0:        http://www.apache.org/dist/pivot/source/apache-pivot-%{cvs_version}-src.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:      noarch
+
+BuildRequires:  java-1.6.0-openjdk-devel
+BuildRequires:  ant >= 0:1.7
+BuildRequires:  junit4 >= 4.3
+
+Requires:       java-1.6.0-openjdk-devel
+
+%description
+Apache Pivot is a platform for building rich internet applications in
+Java. It combines the enhanced productivity and usability features of a
+modern RIA toolkit with the robustness of the industry-standard Java
+platform.
+
+%description -l it
+TODO SANDRO
+
+%description -l cn
+TODO LEO
+
+%prep
+%setup -q -n apache-pivot-%{cvs_version}
+
+
+%build
+%configure
+make %{?_smp_mflags}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(0644,root,root,0755)
+%doc KEYS LICENSE NOTICE README RELEASE-NOTES
+%{_javadir}/%{name}-core.jar
+%{_javadir}/%{name}-core-%{version}.jar
+%{_javadir}/%{name}-wtk.jar
+%{_javadir}/%{name}-wtk-%{version}.jar
+%{_javadir}/%{name}-wtk-terra.jar
+%{_javadir}/%{name}-wtk-terra-%{version}.jar
+%{_javadir}/%{name}-web.jar
+%{_javadir}/%{name}-web-%{version}.jar
+%{_javadir}/%{name}-web-server.jar
+%{_javadir}/%{name}-web-server-%{version}.jar
+%{_javadir}/%{name}-charts.jar
+%{_javadir}/%{name}-charts-%{version}.jar
+%{_javadir}/%{name}-tools.jar
+%{_javadir}/%{name}-tools-%{version}.jar
+
+
+
+%changelog

Propchange: incubator/pivot/infra/rpm/pivot.spec
------------------------------------------------------------------------------
    svn:eol-style = native