From: Ladislav Slezák Date: Tue, 4 Dec 2018 12:23:34 +0000 (+0100) Subject: Less strict "rake osc:sr" X-Git-Tag: v0.8.2~6^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d780f42e92e6bda87c1f56d15bb15cb61a5ca60;p=thirdparty%2Fsnapper.git Less strict "rake osc:sr" Do not require a bugzilla/fate number in the new changelog entries. --- diff --git a/Rakefile b/Rakefile index 7e9f7845..8a1eabf6 100644 --- a/Rakefile +++ b/Rakefile @@ -6,7 +6,7 @@ require "packaging/tasks" require "packaging/configuration" # skip 'tarball' task, it's redefined here -Packaging::Tasks.load_tasks(:exclude => ["tarball.rake"]) +Packaging::Tasks.load_tasks(:exclude => ["tarball.rake", "check_changelog.rake"]) require "yast/tasks" yast_submit = ENV.fetch("YAST_SUBMIT", "factory").to_sym @@ -49,3 +49,10 @@ desc 'Build a tarball for OBS' task :tarball do sh "make -f Makefile.ci package" end + +# the "check:changelog" task is required by the "osc:sr" task +namespace "check" do + task :changelog do + # do nothing, we do not require a bugzilla/fate number for new changelog entries + end +end