aboutsummaryrefslogtreecommitdiffhomepage
path: root/setup/qi_libs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'setup/qi_libs.rb')
-rw-r--r--setup/qi_libs.rb16
1 files changed, 7 insertions, 9 deletions
diff --git a/setup/qi_libs.rb b/setup/qi_libs.rb
index 1c294b05..b441cdd9 100644
--- a/setup/qi_libs.rb
+++ b/setup/qi_libs.rb
@@ -11,7 +11,7 @@ module Project_details
'documents - structuring, publishing in multiple formats & search'
end
def self.homepage
- 'http://www.sisudoc.org'
+ 'https://www.sisudoc.org'
end
def self.thor
"ruby-thor files for the installation/setup of #{name}"
@@ -389,8 +389,8 @@ proceed? }
def self.changelog_header(vi)
vn=version_number(vi)
<<-WOK
-* sisu_#{vn}.orig.tar.xz (#{vi[:date]}:#{vi[:date_stamp].gsub(/20\d\dw/,'')})
- http://git.sisudoc.org/gitweb/?p=code/sisu.git;a=log;h=refs/tags/sisu_#{vn}
+- sisu_#{vn}.orig.tar.xz (#{vi[:date]}:#{vi[:date_stamp].gsub(/20\d\dw/,'')})
+ https://git.sisudoc.org/projects/sisu/tag/?h=sisu_#{vn}
WOK
end
def self.changelog_header_release(filename,ch,vi)
@@ -437,8 +437,8 @@ proceed? }
def self.changelog_header_pre_release(vi)
vn=version_number(vi)
<<-WOK
-* sisu_#{vn}.orig.tar.xz (Open commit window: #{vi[:date]}; Pre-Release)
- http://git.sisudoc.org/gitweb/?p=code/sisu.git;a=log;h=refs/tags/sisu_#{vn}
+- sisu_#{vn}.orig.tar.xz (Open commit window: #{vi[:date]}; Pre-Release)
+ https://git.sisudoc.org/projects/sisu/tag/?h=sisu_#{vn}
WOK
end
def self.changelog_header_pre_release_write(filename,ch)
@@ -569,7 +569,7 @@ Gem::Specification.new do |s|
s.homepage = '#{Project_details.homepage}'
s.authors = ["Ralph Amissah"]
s.email = 'ralph.amissah@gmail.com'
- s.license = 'GPL3'
+ s.license = 'GPL-3.0-or-later'
s.files = Dir['lib/#{Project_details.name.downcase}.rb'] +
Dir['lib/#{Project_details.name.downcase}/*.rb'] +
Dir['data/#{Project_details.name.downcase}/version.yml'] +
@@ -577,7 +577,6 @@ Gem::Specification.new do |s|
Dir['bin/#{Project_details.name.downcase}gem'] +
Dir['bin/#{Project_details.name.downcase}']
s.executables << '#{Project_details.name.downcase}gem' << '#{Project_details.name.downcase}'
- s.has_rdoc = false
end
WOK
end
@@ -592,14 +591,13 @@ Gem::Specification.new do |s|
s.homepage = '#{Project_details.homepage}'
s.authors = ["Ralph Amissah"]
s.email = 'ralph.amissah@gmail.com'
- s.license = 'GPL3'
+ s.license = 'GPL-3.0-or-later'
s.files = `git ls-files -z lib`.split("\x0") +
Dir['data/#{Project_details.name.downcase}/version.yml'] +
Dir['data/#{Project_details.name.downcase}/image/*'] +
Dir['bin/#{Project_details.name.downcase}gem'] +
Dir['bin/#{Project_details.name.downcase}']
s.executables << '#{Project_details.name.downcase}gem' << '#{Project_details.name.downcase}'
- s.has_rdoc = false
end
WOK
end