com.netflix.gradle.plugins.rpm.RpmPlugin.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-ospackage-plugin Show documentation
Show all versions of gradle-ospackage-plugin Show documentation
Provides a task similar to Tar and Zip for constructing RPM and DEB package files.
The newest version!
/*
* Copyright 2011-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.netflix.gradle.plugins.rpm
import com.netflix.gradle.plugins.packaging.AliasHelper
import com.netflix.gradle.plugins.packaging.CommonPackagingPlugin
import groovy.transform.CompileDynamic
import org.gradle.api.Action
import org.redline_rpm.Builder
import org.redline_rpm.header.Architecture
import org.redline_rpm.header.Flags
import org.redline_rpm.header.Os
import org.redline_rpm.header.RpmType
import org.redline_rpm.payload.Directive
import org.gradle.api.Plugin
import org.gradle.api.Project
@CompileDynamic
class RpmPlugin implements Plugin {
void apply(Project project) {
project.plugins.apply(CommonPackagingPlugin.class)
project.ext.Rpm = Rpm.class
Builder.metaClass.getDefaultSourcePackage() {
format.getLead().getName() + "-src.rpm"
}
Directive.metaClass.or = { Directive other ->
new Directive(delegate.flag | other.flag)
}
// Some defaults, if not set by the user
project.tasks.withType(Rpm).configureEach(new Action() {
@Override
void execute(Rpm rpm) {
RpmPlugin.applyAliases(rpm) // RPM Specific aliases
rpm.applyConventions()
}
})
}
def static applyAliases(def dynamicObjectAware) {
AliasHelper.aliasEnumValues(Architecture.values(), dynamicObjectAware)
AliasHelper.aliasEnumValues(Os.values(), dynamicObjectAware)
AliasHelper.aliasEnumValues(RpmType.values(), dynamicObjectAware)
AliasHelper.aliasStaticInstances(Directive.class, dynamicObjectAware)
AliasHelper.aliasStaticInstances(Flags.class, int.class, dynamicObjectAware)
}
}