122 lines
4.3 KiB
RPMSpec
122 lines
4.3 KiB
RPMSpec
Name: struts
|
|
Version: 1.3.10
|
|
Release: 1
|
|
Summary: Web application framework
|
|
License: ASL 2.0
|
|
URL: http://struts.apache.org/
|
|
# wget http://archive.apache.org/dist/struts/source/struts-1.3.10-src.zip
|
|
# remove non free resources
|
|
# unzip -qq struts-1.3.10-src.zip
|
|
# rm -r struts-1.3.10/src/core/src/main/resources/org/apache/struts/resources/web-app_2_3.dtd
|
|
# tar czf struts-1.3.10-clean-src.tar.gz struts-1.3.10
|
|
Source0: struts-%{version}-clean-src.tar.gz
|
|
|
|
# fix build for junit servlet-3.0-api
|
|
Patch1: struts-1.3.10-fix-build.patch
|
|
# Thanks to Arun Babu Neelicattu aneelica@redhat.com
|
|
# and Brandon.Vincent@asu.edu
|
|
Patch2: struts-1.3.10-CVE-2014-0114.patch
|
|
Patch3: struts-1.3.10-CVE-2015-0899.patch
|
|
Patch4: struts-1.3.10-CVE-2016-1181-CVE-2016-1182.patch
|
|
|
|
BuildRequires: maven-local mvn(antlr:antlr) mvn(commons-beanutils:commons-beanutils)
|
|
BuildRequires: mvn(commons-chain:commons-chain) mvn(commons-digester:commons-digester)
|
|
BuildRequires: mvn(commons-fileupload:commons-fileupload) mvn(commons-logging:commons-logging)
|
|
BuildRequires: mvn(commons-validator:commons-validator) mvn(junit:junit)
|
|
BuildRequires: mvn(log4j:log4j:1.2.17) mvn(org.apache.bsf:bsf)
|
|
BuildRequires: mvn(org.apache.taglibs:taglibs-standard-jstlel)
|
|
BuildRequires: mvn(org.jboss.spec.javax.el:jboss-el-api_3.0_spec)
|
|
BuildRequires: mvn(org.jboss.spec.javax.faces:jboss-jsf-api_2.2_spec)
|
|
BuildRequires: mvn(org.jboss.spec.javax.servlet.jsp:jboss-jsp-api_2.3_spec)
|
|
BuildRequires: mvn(org.jboss.spec.javax.servlet:jboss-servlet-api_3.1_spec) mvn(oro:oro)
|
|
|
|
BuildArch: noarch
|
|
Obsoletes: %{name}-manual < %{version}
|
|
Obsoletes: %{name}-webapps-tomcat5 < %{version}
|
|
|
|
%description
|
|
Welcome to the Struts Framework! The goal of this project is to provide
|
|
an open source framework useful in building web applications with Java
|
|
Servlet and JavaServer Pages (JSP) technology. Struts encourages
|
|
application architectures based on the Model-View-Controller (MVC)
|
|
design paradigm, colloquially known as Model 2 in discussions on various
|
|
servlet and JSP related mailing lists.
|
|
Struts includes the following primary areas of functionality:
|
|
A controller servlet that dispatches requests to appropriate Action
|
|
classes provided by the application developer.
|
|
JSP custom tag libraries, and associated support in the controller
|
|
servlet, that assists developers in creating interactive form-based
|
|
applications.
|
|
Utility classes to support XML parsing, automatic population of
|
|
JavaBeans properties based on the Java reflection APIs, and
|
|
internationalization of prompts and messages.
|
|
|
|
%package javadoc
|
|
Summary: Javadoc for %{name}
|
|
|
|
%description javadoc
|
|
This package contains javadoc for %{name}.
|
|
|
|
%prep
|
|
%setup -q
|
|
find -name "*.jar" -delete
|
|
find -name "*.class" -delete
|
|
|
|
%patch1 -p1
|
|
%patch2 -p0
|
|
%patch3 -p1
|
|
%patch4 -p1
|
|
|
|
sed -i 's/\r//' LICENSE.txt NOTICE.txt
|
|
|
|
# fix non ASCII chars
|
|
for s in src/tiles/src/main/java/org/apache/struts/tiles/ComponentDefinition.java;do
|
|
native2ascii -encoding UTF8 ${s} ${s}
|
|
done
|
|
|
|
cd src
|
|
|
|
%pom_remove_parent
|
|
|
|
%pom_change_dep -r :servlet-api org.jboss.spec.javax.servlet:jboss-servlet-api_3.1_spec:1.0.0.Beta1
|
|
%pom_change_dep -r :jstl org.apache.taglibs:taglibs-standard-jstlel:1.2.3
|
|
%pom_remove_dep -r taglibs:standard
|
|
|
|
%pom_change_dep -r :jsp-api org.jboss.spec.javax.servlet.jsp:jboss-jsp-api_2.3_spec:1.0.0.Beta1
|
|
%pom_change_dep -r :myfaces-jsf-api org.jboss.spec.javax.faces:jboss-jsf-api_2.2_spec:2.2.0
|
|
%pom_change_dep -r :bsf org.apache.bsf:
|
|
|
|
# package javax.servlet.jsp.el does not exist
|
|
%pom_add_dep org.jboss.spec.javax.servlet.jsp:jboss-jsp-api_2.3_spec:1.0.0.Beta1 core
|
|
|
|
%mvn_file :%{name}-core %{name}/core
|
|
%mvn_file :%{name}-el %{name}/el
|
|
%mvn_file :%{name}-extras %{name}/extras
|
|
%mvn_file :%{name}-faces %{name}/faces
|
|
%mvn_file :%{name}-mailreader-dao %{name}/mailreader-dao
|
|
%mvn_file :%{name}-scripting %{name}/scripting
|
|
%mvn_file :%{name}-taglib %{name}/taglib
|
|
%mvn_file :%{name}-tiles %{name}/tiles
|
|
|
|
%build
|
|
|
|
cd src
|
|
%mvn_build -- -Dproject.build.sourceEncoding=UTF-8
|
|
|
|
%install
|
|
|
|
(
|
|
cd src
|
|
%mvn_install
|
|
)
|
|
|
|
%files -f src/.mfiles
|
|
%license LICENSE.txt NOTICE.txt
|
|
|
|
%files javadoc -f src/.mfiles-javadoc
|
|
%license LICENSE.txt NOTICE.txt
|
|
|
|
%changelog
|
|
* Mon Aug 17 2020 wangxiao <wangxiao65@huawei.com> - 1.3.10-1
|
|
- package init
|