From 240ffe5162441e4dd9a20e9d8b54fc809905d8c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Mar 2021 02:35:05 +0000 Subject: [PATCH 1/3] Bump kramdown from 2.3.0 to 2.3.1 Bumps [kramdown](https://github.com/gettalong/kramdown) from 2.3.0 to 2.3.1. - [Release notes](https://github.com/gettalong/kramdown/releases) - [Changelog](https://github.com/gettalong/kramdown/blob/master/doc/news.page) - [Commits](https://github.com/gettalong/kramdown/commits) Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 4e84dda..3191fb3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GEM remote: https://rubygems.org/ specs: ast (2.4.1) - kramdown (2.3.0) + kramdown (2.3.1) rexml kramdown-parser-gfm (1.0.1) kramdown (~> 2.0) From ee042749944777f37ab184cadcacb89eee2e696a Mon Sep 17 00:00:00 2001 From: Morten Linderud Date: Wed, 28 Apr 2021 21:20:01 +0200 Subject: [PATCH 2/3] ronn/document: Make generated pages reproducible This enables downstream distributions to create reproducible man pages in packages. This is a downstream patch from Debian. https://sources.debian.org/patches/ruby-ronn/0.9.1-2/make-output-reproducible.patch/ Signed-off-by: Morten Linderud --- lib/ronn/document.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/ronn/document.rb b/lib/ronn/document.rb index 9a25373..15bef2c 100644 --- a/lib/ronn/document.rb +++ b/lib/ronn/document.rb @@ -179,11 +179,14 @@ def title end # The date the man page was published. If not set explicitly, - # this is the file's modified time or, if no file is given, + # it first checks for "SOURCE_DATE_EPOCH" to support reproducible + # builds, then the file's modified time or, if no file is given, # the current time. Center displayed in the document footer. def date return @date if @date + return Time.at(ENV['SOURCE_DATE_EPOCH'].to_i).gmtime if ENV['SOURCE_DATE_EPOCH'] + return File.mtime(path) if File.exist?(path) Time.now From 7fc0aa1ef13e5b3d6f43355de2a5a451e63b8acb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Apr 2021 20:46:26 +0000 Subject: [PATCH 3/3] Bump rexml from 3.2.4 to 3.2.5 Bumps [rexml](https://github.com/ruby/rexml) from 3.2.4 to 3.2.5. - [Release notes](https://github.com/ruby/rexml/releases) - [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md) - [Commits](https://github.com/ruby/rexml/compare/v3.2.4...v3.2.5) Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 3191fb3..156cd51 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -31,7 +31,7 @@ GEM rainbow (3.0.0) rake (12.3.3) regexp_parser (2.0.1) - rexml (3.2.4) + rexml (3.2.5) rubocop (0.93.1) parallel (~> 1.10) parser (>= 2.7.1.5)