gradle-ospackage-plugin icon indicating copy to clipboard operation
gradle-ospackage-plugin copied to clipboard

Gradle plugin for constructing linux packages, specifically RPM and DEBs.

Results 103 gradle-ospackage-plugin issues
Sort by recently updated
recently updated
newest added

The purpose of this PR is to fix issue with `addPArentDirs` defined in `ospackage` extension not properly propagated to tasks configuration: - https://github.com/nebula-plugins/gradle-ospackage-plugin/issues/246 - https://github.com/nebula-plugins/gradle-ospackage-plugin/issues/387

There are a number of vulnerabilities flagged for 1.8

The `directory` entries cannot be defined in the ospackage extension, only on the rpm/deb tasks configurations: ``` buildRpm { directory("/directory/from/task") //

this PR fixes issue 416, we should be able to define `directory` directly in the ospackage extension.

CopySpecEnhancement.addParentDirs(...) works. CopySpecEnhancement. setAddParentDirs(...) does not work. As of 4.4.0: Using: ``` from("${project.projectDir}/src") { into '/opt/test/abc' fileMode = 0400 } ``` `rpm -qlp` returns: ``` /opt/test /opt/test/abc /opt/test/abc/something.txt ``` CORRECT...

Plugin id was changed from 'nebula.ospackage' to 'com.netflix.nebula.ospackage'

Hi, I'm trying to set section parameter in my deb control file, but I notice that I can't just set it as other parameters (ex. maintainer or priority), but I...

Gradle 6 introduced the following warnings: ``` ava.lang.IllegalArgumentException: Deprecation warnings were found (Set the ignoreDeprecations system property during the test to ignore): - The version property has been deprecated. This...

I'm building an RPM which installs a daemon in systemd. Fedora [documentation strongly recommends](https://fedoraproject.org/wiki/Packaging:ScriptletSnippets#Systemd) using spec file macros to properly handle install and uninstalling systemd managed services. From reading other...

question