├── .gitignore ├── .sonarcloud.properties ├── CONTRIBUTORS ├── Gemfile ├── LICENSE ├── README.md ├── bin └── prm ├── lib ├── prm.rb └── prm │ ├── repo.rb │ └── rpm.rb ├── prm.gemspec └── templates ├── deb_release.erb ├── filelists.xml.erb ├── other.xml.erb ├── primary.xml.erb └── repomd.xml.erb /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/README.md -------------------------------------------------------------------------------- /bin/prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/bin/prm -------------------------------------------------------------------------------- /lib/prm.rb: -------------------------------------------------------------------------------- 1 | require 'prm/repo' 2 | -------------------------------------------------------------------------------- /lib/prm/repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/lib/prm/repo.rb -------------------------------------------------------------------------------- /lib/prm/rpm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/lib/prm/rpm.rb -------------------------------------------------------------------------------- /prm.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/prm.gemspec -------------------------------------------------------------------------------- /templates/deb_release.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/templates/deb_release.erb -------------------------------------------------------------------------------- /templates/filelists.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/templates/filelists.xml.erb -------------------------------------------------------------------------------- /templates/other.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/templates/other.xml.erb -------------------------------------------------------------------------------- /templates/primary.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/templates/primary.xml.erb -------------------------------------------------------------------------------- /templates/repomd.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbert/prm/HEAD/templates/repomd.xml.erb --------------------------------------------------------------------------------