mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 12:43:03 +01:00
License-update: formatting
Exclude aclocal, as aclocal.m4 is hand-maintained
(similar to recent tweaks elsewhere in core).
Find rbconfig.rb directly in ${D}, as grepping ruby's
internal file produces bogus results now.
(From OE-Core rev: f395c84d460acc44c633a6819efac68ca7829e6c)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
78 lines
2.8 KiB
Diff
78 lines
2.8 KiB
Diff
From d58bdaca3d5379afcb954bb57c690c7736807ec5 Mon Sep 17 00:00:00 2001
|
|
From: Lucas Kanashiro <kanashiro@debian.org>
|
|
Date: Fri, 1 Nov 2019 15:25:17 -0300
|
|
Subject: [PATCH] Make gemspecs reproducible
|
|
|
|
Without an explicit date, they will get the current date and make the
|
|
build unreproducible
|
|
|
|
Upstream-Status: Backport [debian]
|
|
---
|
|
.bundle/gems/bigdecimal-3.1.8/bigdecimal.gemspec | 1 +
|
|
ext/fiddle/fiddle.gemspec | 1 +
|
|
ext/io/console/io-console.gemspec | 1 +
|
|
lib/ipaddr.gemspec | 1 +
|
|
lib/rdoc/rdoc.gemspec | 1 +
|
|
5 files changed, 5 insertions(+)
|
|
|
|
diff --git a/.bundle/gems/bigdecimal-3.1.8/bigdecimal.gemspec b/.bundle/gems/bigdecimal-3.1.8/bigdecimal.gemspec
|
|
index b6ef8fd..596b8bb 100644
|
|
--- a/.bundle/gems/bigdecimal-3.1.8/bigdecimal.gemspec
|
|
+++ b/.bundle/gems/bigdecimal-3.1.8/bigdecimal.gemspec
|
|
@@ -14,6 +14,7 @@ Gem::Specification.new do |s|
|
|
s.name = name
|
|
s.version = source_version
|
|
s.authors = ["Kenta Murata", "Zachary Scott", "Shigeo Kobayashi"]
|
|
+ s.date = RUBY_RELEASE_DATE
|
|
s.email = ["mrkn@mrkn.jp"]
|
|
|
|
s.summary = "Arbitrary-precision decimal floating-point number library."
|
|
diff --git a/ext/fiddle/fiddle.gemspec b/ext/fiddle/fiddle.gemspec
|
|
index 0092f52..f77c224 100644
|
|
--- a/ext/fiddle/fiddle.gemspec
|
|
+++ b/ext/fiddle/fiddle.gemspec
|
|
@@ -8,6 +8,7 @@ end
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "fiddle"
|
|
spec.version = version_module::Fiddle::VERSION
|
|
+ spec.date = RUBY_RELEASE_DATE
|
|
spec.authors = ["Aaron Patterson", "SHIBATA Hiroshi"]
|
|
spec.email = ["aaron@tenderlovemaking.com", "hsbt@ruby-lang.org"]
|
|
|
|
diff --git a/ext/io/console/io-console.gemspec b/ext/io/console/io-console.gemspec
|
|
index 0a19992..4a80529 100644
|
|
--- a/ext/io/console/io-console.gemspec
|
|
+++ b/ext/io/console/io-console.gemspec
|
|
@@ -12,6 +12,7 @@ end
|
|
Gem::Specification.new do |s|
|
|
s.name = "io-console"
|
|
s.version = _VERSION
|
|
+ s.date = RUBY_RELEASE_DATE
|
|
s.summary = "Console interface"
|
|
s.email = "nobu@ruby-lang.org"
|
|
s.description = "add console capabilities to IO instances."
|
|
diff --git a/lib/ipaddr.gemspec b/lib/ipaddr.gemspec
|
|
index 5719f83..fe76260 100644
|
|
--- a/lib/ipaddr.gemspec
|
|
+++ b/lib/ipaddr.gemspec
|
|
@@ -18,6 +18,7 @@ end
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "ipaddr"
|
|
spec.version = version
|
|
+ spec.date = RUBY_RELEASE_DATE
|
|
spec.authors = ["Akinori MUSHA", "Hajimu UMEMOTO"]
|
|
spec.email = ["knu@idaemons.org", "ume@mahoroba.org"]
|
|
|
|
diff --git a/lib/rdoc/rdoc.gemspec b/lib/rdoc/rdoc.gemspec
|
|
index 3144df5..65c313f 100644
|
|
--- a/lib/rdoc/rdoc.gemspec
|
|
+++ b/lib/rdoc/rdoc.gemspec
|
|
@@ -7,6 +7,7 @@ end
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "rdoc"
|
|
+ s.date = RUBY_RELEASE_DATE
|
|
s.version = RDoc::VERSION
|
|
|
|
s.authors = [
|