Rake tasks to help with uniform handling of libyui related projects. It provides setup for packaging tasks and add some additional tasks.
Create a Rakefile
with this content:
require "libyui/rake"
Libyui::Tasks provides a method to change packaging tasks configuration. As it's
just a proxy for ::Packaging.configuration
, the same options will be
available.
Libyui::Tasks.configuration do |conf|
conf.obs_api = "https://api.opensuse.org/"
conf.obs_project = "Devel:Libyui:Head"
end
To avoid duplication, Libyui::Tasks provides a method to set packaging tasks configuration choosing from a set of targets definitions. For example, if you want to submit to SLE12, you can do:
Libyui::Tasks.submit_to(:sle12)
This method can receive, as a second parameter, the path to your own definitions if needed.
If submit_to
is not explicitly used, it will be read from the environment
variable LIBYUI_SUBMIT
. If that variable is not set, the variable
YAST_SUBMIT
will be used instead. Finally, if none of the special
environment variables is set, :factory
will be used as target.
Check that version numbers are in sync.
Increase the last part of version in spec and CMake files.
Pretend to run the test suite.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
This package is licensed under LGPL-2.1.