From b9421dc80af485591a9c50cc8921f912e0def11e Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:05:40 -0700 Subject: Removing sources to replace with download links instead. Change-Id: Ie28789a725051aec0d1b04dd291b7690a7898668 Signed-off-by: Ashlee Young --- .../src/ant/apache-ant-1.9.6/manual/Tasks/rpm.html | 123 --------------------- 1 file changed, 123 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/rpm.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/rpm.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/rpm.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/rpm.html deleted file mode 100644 index 691d391d..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/rpm.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - -Rpm Task - - - - -

Rpm

-

Description

-

- A basic task for invoking the rpm executable to build a RedHat Package Manager Linux installation - file. The task currently only works on Linux or other Unix platforms with rpm support. -

- -

Parameters

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionRequired
specFileThe name of the spec file to be used. This must be relative to the SPECS directory - under the root of the RPM set in the topDir attribute.Yes
topDir - This is the directory which will have the expected - subdirectories, SPECS, SOURCES, BUILD, SRPMS. If this isn't specified, - the default RPM directory of the system (or user, if ~/.rpmmacros defines it) is used (often - /usr/src/rpm.
- Defining a topdir will set %_topdir to the specified directory -there is no need - to edit your .rpmmacros file. -
No, but your build file is very brittle if it is not set.
cleanBuildDirThis will remove the generated files in the BUILD - directory. - See the the --clean option of rpmbuild. - No
removeSpecThis will remove the spec file from SPECS. - See the the --rmspec option of rpmbuild. - No
removeSourceFlag (optional, default=false) - to remove the sources after the build. - See the the --rmsource option of rpmbuild.No
rpmBuildCommandThe executable to use for building the RPM. - Defaults to rpmbuild if it can be found or - rpm otherwise. Set this if you don't have either on - your PATH or want to use a different executable. Since Apache Ant - 1.6.No
commandThe command to pass to the rpmbuild program. The default is "-bb"No
quietSuppress output. Defaults to false.No
output/errorWhere standard output and error goNo
failOnErrorStop the buildprocess if the RPM build command exits with - a non-zero returncode. Defaults to falseNo
- -

Examples

-
-    <rpm
-        specFile="example.spec"
-        topDir="build/rpm"
-        cleanBuildDir="true"
-        failOnError="true"/>
-
- - - -- cgit 1.2.3-korg