package init

This commit is contained in:
chengzihan2 2020-08-19 14:26:06 +08:00
parent 7b2d43628a
commit b915337780
3 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,56 @@
%bcond_without portlet
Name: apache-commons-fileupload
Version: 1.4
Release: 1
Summary: API to work with HTML file upload
License: ASL 2.0
URL: http://commons.apache.org/fileupload/
BuildArch: noarch
Source0: http://archive.apache.org/dist/commons/fileupload/source/commons-fileupload-%{version}-src.tar.gz
BuildRequires: maven-local mvn(commons-io:commons-io) mvn(javax.servlet:servlet-api)
BuildRequires: mvn(junit:junit) mvn(org.apache.commons:commons-parent:pom:)
%if %{with portlet}
BuildRequires: mvn(javax.portlet:portlet-api)
%endif
%description
The javax.servlet package lacks support for RFC-1867, HTML file
upload. This package provides a simple to use API for working with
such data. The scope of this package is to create a package of Java
utility classes to read multipart/form-data within a
javax.servlet.http.HttpServletRequest.
%package javadoc
Summary: API documentation for %{name}
%description javadoc
This package contains the API documentation for %{name}.
%prep
%setup -q -n commons-fileupload-%{version}-src
sed -i 's/\r//' LICENSE.txt
sed -i 's/\r//' NOTICE.txt
%if %{with portlet}
sed -i "s|<groupId>portlet-api</groupId>|<groupId>javax.portlet</groupId>|" pom.xml
%else
%pom_remove_dep portlet-api:portlet-api
%pom_xpath_remove pom:properties/pom:commons.osgi.import
%pom_xpath_remove pom:properties/pom:commons.osgi.dynamicImport
rm -r src/main/java/org/apache/commons/fileupload/portlet
%endif
%mvn_file ":{*}" @1 %{name}
%mvn_alias : org.apache.commons:
%build
%mvn_build -f -- -Dcommons.osgi.symbolicName=org.apache.commons.fileupload
%install
%mvn_install
%files -f .mfiles
%license LICENSE.txt NOTICE.txt
%files javadoc -f .mfiles-javadoc
%license LICENSE.txt NOTICE.txt
%changelog
* Tue Aug 4 2020 yanan li <liyanan032@huawei.com> - 1.4-1
- Package init

View File

@ -0,0 +1,5 @@
git_url: https://github.com/apache/commons-fileupload.git
version_control: github
src_repo: apache/commons-fileupload
tag_prefix: "commons-fileupload-"
seperator: "."

Binary file not shown.