From e0fc78f45f99b9ea3b0f9af6db6541fe6eee1a50 Mon Sep 17 00:00:00 2001 From: Ramesh Sencha Date: Tue, 5 Dec 2023 19:35:14 +0530 Subject: [PATCH] (MAINT) - Remove github_changelog gem footprint --- moduleroot/Rakefile.erb | 95 ----------------------------------------- 1 file changed, 95 deletions(-) diff --git a/moduleroot/Rakefile.erb b/moduleroot/Rakefile.erb index 0e2618a2..0945ebaf 100644 --- a/moduleroot/Rakefile.erb +++ b/moduleroot/Rakefile.erb @@ -15,7 +15,6 @@ require 'bundler' require 'puppet_litmus/rake_tasks' if Gem.loaded_specs.key? 'puppet_litmus' require 'puppetlabs_spec_helper/rake_tasks' require 'puppet-syntax/tasks/puppet-syntax' -require 'github_changelog_generator/task' if Gem.loaded_specs.key? 'github_changelog_generator' require 'puppet-strings/tasks' if Gem.loaded_specs.key? 'puppet-strings' <% if ! @configs['requires'].nil? -%> <% @configs['requires'].each do |item| -%> @@ -28,40 +27,6 @@ import '<%= item %>' <% end -%> <% end -%> -def changelog_user - return unless Rake.application.top_level_tasks.include? "changelog" - returnVal = <%= @configs['changelog_user'].inspect -%> || JSON.load(File.read('metadata.json'))['author'] - raise "unable to find the changelog_user in .sync.yml, or the author in metadata.json" if returnVal.nil? - puts "GitHubChangelogGenerator user:#{returnVal}" - returnVal -end - -def changelog_project - return unless Rake.application.top_level_tasks.include? "changelog" - - returnVal = <%= @configs['changelog_project'].inspect -%> - - returnVal ||= begin - metadata_source = JSON.load(File.read('metadata.json'))['source'] - metadata_source_match = metadata_source && metadata_source.match(%r{.*\/([^\/]*?)(?:\.git)?\Z}) - - metadata_source_match && metadata_source_match[1] - end - - raise "unable to find the changelog_project in .sync.yml or calculate it from the source in metadata.json" if returnVal.nil? - - puts "GitHubChangelogGenerator project:#{returnVal}" - returnVal -end - -def changelog_future_release - return unless Rake.application.top_level_tasks.include? "changelog" - returnVal = <%= @configs['changelog_version_tag_pattern'].inspect -%> % JSON.load(File.read('metadata.json'))['version'] - raise "unable to find the future_release (version) in metadata.json" if returnVal.nil? - puts "GitHubChangelogGenerator future_release:#{returnVal}" - returnVal -end - <% checks = @configs['default_disabled_lint_checks'] + ( @configs['extra_disabled_lint_checks'] || [] ) -%> <% checks.each do |check| -%> PuppetLint.configuration.send('disable_<%= check %>') @@ -76,63 +41,3 @@ PuppetLint.configuration.send('<%= option %>') <% if @configs['linter_exclusions'] -%> PuppetLint.configuration.ignore_paths = <%= @configs['linter_exclusions']%> <% end -%> - - -if Gem.loaded_specs.key? 'github_changelog_generator' - GitHubChangelogGenerator::RakeTask.new :changelog do |config| - raise "Set CHANGELOG_GITHUB_TOKEN environment variable eg 'export CHANGELOG_GITHUB_TOKEN=valid_token_here'" if Rake.application.top_level_tasks.include? "changelog" and ENV['CHANGELOG_GITHUB_TOKEN'].nil? -<% if @configs['github_site'] -%> - config.github_site = <%= @configs['github_site'].inspect %> -<% end -%> -<% if @configs['github_endpoint'] -%> - config.github_endpoint = <%= @configs['github_endpoint'].inspect %> -<% end -%> - config.user = "#{changelog_user}" - config.project = "#{changelog_project}" -<% if @configs['changelog_since_tag'] -%> - config.since_tag = <%= @configs['changelog_since_tag'].inspect %> -<% end -%> -<% if @configs['changelog_max_issues'] -%> - config.max_issues = <%= @configs['changelog_max_issues'].inspect %> -<% end -%> - config.future_release = "#{changelog_future_release}" - config.exclude_labels = ['maintenance'] - config.header = "# Change log\n\nAll notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org)." - config.add_pr_wo_labels = true - config.issues = false - config.merge_prefix = "### UNCATEGORIZED PRS; LABEL THEM ON GITHUB" - config.configure_sections = { - "Changed" => { - "prefix" => "### Changed", - "labels" => ["backwards-incompatible"], - }, - "Added" => { - "prefix" => "### Added", - "labels" => ["enhancement", "feature"], - }, - "Fixed" => { - "prefix" => "### Fixed", - "labels" => ["bug", "documentation", "bugfix"], - }, - } - end -else - desc 'Generate a Changelog from GitHub' - task :changelog do - raise < 1.15' - condition: "Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.3.0')" -EOM - end -end - -<%- [@configs['extras']].flatten.compact.each do |line| -%> -<%= line %> -<%- end -%>