Browse code

auto spec version bump up: ruby_specs

- rubygem-activesupport: bump up to 6.0.3.2
- rubygem-backports: bump up to 3.18.2
- rubygem-builder: bump up to 3.2.4
- rubygem-concurrent-ruby: bump up to 1.1.7
- rubygem-highline: bump up to 2.0.3
- rubygem-i18n: bump up to 1.8.5
- rubygem-libxml-ruby: bump up to 3.2.0
- rubygem-mini_portile2: bump up to 2.5.0
- rubygem-nokogiri: bump up to 1.10.9
- rubygem-rbvmomi: bump up to 3.0.0
- rubygem-trollop: bump up to 2.9.10
- rubygem-tzinfo: bump up to 2.0.2
- rubygem-unicode-display_width: bump up to 1.7.0
- rubygem-addressable: bump up to 2.7.0
- rubygem-async: bump up to 1.26.2
- rubygem-async-http: bump up to 0.52.4
- rubygem-async-io: bump up to 1.30.0
- rubygem-aws-eventstream: bump up to 1.1.0
- rubygem-aws-partitions: bump up to 1.363.0
- rubygem-aws-sdk-core: bump up to 3.105.0
- rubygem-aws-sdk-kms: bump up to 1.37.0
- rubygem-aws-sdk-s3: bump up to 1.79.1
- rubygem-aws-sdk-sqs: bump up to 1.32.0
- rubygem-aws-sigv4: bump up to 1.2.2
- rubygem-bundler: bump up to 2.1.4
- rubygem-console: bump up to 1.9.0
- rubygem-ffi: bump up to 1.13.1
- rubygem-fluent-plugin-kubernetes_metadata_filter: bump up to 2.5.2
- rubygem-fluent-plugin-s3: bump up to 1.4.0
- rubygem-fluent-plugin-systemd: bump up to 1.0.2
- rubygem-fluent-plugin-vmware-loginsight: bump up to 0.1.10
- rubygem-fluentd: bump up to 1.11.2
- rubygem-http: bump up to 4.4.1
- rubygem-http-accept: bump up to 2.1.1
- rubygem-http-form_data: bump up to 2.3.0
- rubygem-kubeclient: bump up to 4.9.1
- rubygem-mime-types: bump up to 3.3.1
- rubygem-mime-types-data: bump up to 3.2020.0512
- rubygem-msgpack: bump up to 1.3.3
- rubygem-nio4r: bump up to 2.5.2
- rubygem-oj: bump up to 3.10.13
- rubygem-protocol-hpack: bump up to 1.4.2
- rubygem-protocol-http: bump up to 0.20.0
- rubygem-protocol-http1: bump up to 0.13.0
- rubygem-protocol-http2: bump up to 0.14.0
- rubygem-public_suffix: bump up to 4.0.5
- rubygem-recursive-open-struct: bump up to 1.1.2
- rubygem-serverengine: bump up to 2.2.1
- rubygem-strptime: bump up to 0.2.4
- rubygem-systemd-journal: bump up to 1.4.2
- rubygem-tzinfo-data: bump up to 1.2020.1
- rubygem-unf_ext: bump up to 0.0.7.7
- rubygem-cool-io: bump up to 1.6.0
- rubygem-rest-client: bump up to 2.1.0.

Change-Id: Ib8335472defc06c02b23cb317f07f255a85efbae
Reviewed-on: http://photon-jenkins.eng.vmware.com:8082/9849
Tested-by: gerrit-photon <photon-checkins@vmware.com>
Reviewed-by: Srinidhi Rao <srinidhir@vmware.com>

gerrit-photon authored on 2020/06/23 15:28:31
Showing 74 changed files
... ...
@@ -1,14 +1,14 @@
1 1
 Summary:        Ruby
2 2
 Name:           ruby
3
-Version:        2.5.8
4
-Release:        2%{?dist}
3
+Version:        2.7.1
4
+Release:        1%{?dist}
5 5
 License:        BSDL
6 6
 URL:            https://www.ruby-lang.org/en/
7 7
 Group:          System Environment/Security
8 8
 Vendor:         VMware, Inc.
9 9
 Distribution:   Photon
10
-Source0:        http://cache.ruby-lang.org/pub/ruby/2.5/%{name}-%{version}.tar.bz2
11
-%define sha1    ruby=823b6b009a6e44fef27d2dacb069067fe355d5d8
10
+Source0:        https://cache.ruby-lang.org/pub/ruby/2.7/%{name}-%{version}.tar.bz2
11
+%define sha1    ruby=e83a084a4329e1e3f55591bf5ac0c8ebed6444b3
12 12
 BuildRequires:  openssl-devel
13 13
 BuildRequires:  ca-certificates
14 14
 BuildRequires:  readline-devel
... ...
@@ -17,21 +17,32 @@ BuildRequires:  tzdata
17 17
 Requires:       ca-certificates
18 18
 Requires:       openssl
19 19
 Requires:       gmp
20
+
20 21
 %description
21 22
 The Ruby package contains the Ruby development environment.
22 23
 This is useful for object-oriented scripting.
23 24
 
24 25
 %prep
25 26
 %setup -q
27
+
26 28
 %build
29
+# below loop fixes the files in libexec to point correct ruby
30
+# Only verfied and to be used with ruby version 2.7.1
31
+# Any future versions needs to be verified
32
+for f in `grep -ril "\/usr\/local\/bin\/ruby" ./libexec/`; do
33
+  sed -i "s|/usr/local/bin/ruby|/usr/bin/ruby|g" $f
34
+  head -1 $f
35
+done
27 36
 %configure \
28 37
         --enable-shared \
29 38
         --docdir=%{_docdir}/%{name}-%{version} \
30 39
 	--with-compress-debug-sections=no
31 40
 make %{?_smp_mflags} COPY="cp -p"
41
+
32 42
 %install
33 43
 [ %{buildroot} != "/"] && rm -rf %{buildroot}/*
34 44
 make DESTDIR=%{buildroot} install
45
+
35 46
 %check
36 47
 chmod g+w . -R
37 48
 useradd test -G root -m
... ...
@@ -39,8 +50,10 @@ sudo -u test  make check TESTS="-v"
39 39
 
40 40
 %post   -p /sbin/ldconfig
41 41
 %postun -p /sbin/ldconfig
42
+
42 43
 %clean
43 44
 rm -rf %{buildroot}/*
45
+
44 46
 %files
45 47
 %defattr(-,root,root)
46 48
 %{_bindir}/*
... ...
@@ -52,8 +65,11 @@ rm -rf %{buildroot}/*
52 52
 %{_datadir}/ri/*
53 53
 %{_docdir}/%{name}-%{version}
54 54
 %{_mandir}/man1/*
55
+%{_mandir}/man5/*
55 56
 
56 57
 %changelog
58
+*   Tue Sep 01 2020 Sujay G <gsujay@vmware.com> 2.7.1-1
59
+-   Bump version to 2.7.1
57 60
 *   Fri Jul 17 2020 Ankit Jain <ankitja@vmware.com> 2.5.8-2
58 61
 -   Added --with-compress-debug-sections=no to fix build issue
59 62
 *   Wed May 13 2020 Sujay G <gsujay@vmware.com> 2.5.8-1
... ...
@@ -3,14 +3,16 @@
3 3
 %global gem_name activesupport
4 4
 
5 5
 Name: rubygem-activesupport
6
-Version:        5.2.1
6
+Version:        6.0.3.2
7 7
 Release:        1%{?dist}
8 8
 Summary:        Support libaries for Rails framework.
9 9
 Group:          Development/Languages
10 10
 License:        MIT
11
+Vendor:         VMware, Inc.
12
+Distribution:   Photon
11 13
 URL:            https://rubygems.org/gems/activesupport/versions/%{version}
12 14
 Source0:        https://rubygems.org/downloads/activesupport-%{version}.gem
13
-%define sha1    activesupport=8ddcbf455baa1f8fbf1ce94d075d45ab67fd3cda
15
+%define sha1    activesupport=b92c473960b1ef01ee562d318604e1c8d1e6b175
14 16
 BuildRequires:  ruby
15 17
 
16 18
 %description
... ...
@@ -31,6 +33,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
31 31
 %{gemdir}
32 32
 
33 33
 %changelog
34
+*   Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 6.0.3.2-1
35
+-   Automatic Version Bump
34 36
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 5.2.1-1
35 37
 -   Update to version 5.2.1
36 38
 *   Fri Aug 25 2017 Kumar Kaushik <kaushikk@vmware.com> 5.0.0.1-1
... ...
@@ -3,7 +3,7 @@
3 3
 %global gem_name addressable
4 4
 
5 5
 Name: rubygem-addressable
6
-Version:        2.6.0
6
+Version:        2.7.0
7 7
 Release:        1%{?dist}
8 8
 Summary:        An easy-to-use client library for making requests from Ruby.
9 9
 Group:          Development/Libraries
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        Apache-2.0
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    addressable=326d420d057a734f171fcfee4a037d9791cb4d77
15
+%define sha1    addressable=3b46d08ed6a0e2bef1bf16769c4e528c6ebc0a37
16 16
 BuildRequires:  ruby >= 2.0.0
17 17
 
18 18
 Requires: rubygem-public_suffix >= 2.0.2, rubygem-public_suffix < 4.0.0
... ...
@@ -35,5 +35,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
35 35
 %{gemdir}
36 36
 
37 37
 %changelog
38
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 2.7.0-1
39
+-   Automatic Version Bump
38 40
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 2.6.0-1
39 41
 -   Initial build
... ...
@@ -3,7 +3,7 @@
3 3
 %global gem_name async-http
4 4
 
5 5
 Name: rubygem-async-http
6
-Version:        0.48.2
6
+Version:        0.52.4
7 7
 Release:        1%{?dist}
8 8
 Summary:        A HTTP client and server library.
9 9
 Group:          Development/Libraries
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        MIT
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    async-http=d1e3bf88e199f418c71a15849f38cc406e4c6566
15
+%define sha1    async-http=404252d4440091b8b7b1f614edb8739f35d8304d
16 16
 BuildRequires:  ruby
17 17
 
18 18
 Requires: rubygem-async >= 1.19.0, rubygem-async < 2.0.0
... ...
@@ -41,5 +41,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
41 41
 %{gemdir}
42 42
 
43 43
 %changelog
44
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 0.52.4-1
45
+-   Automatic Version Bump
44 46
 *   Wed Aug 21 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 0.48.2-1
45 47
 -   Initial build
... ...
@@ -3,7 +3,7 @@
3 3
 %global gem_name async-io
4 4
 
5 5
 Name: rubygem-async-io
6
-Version:        1.25.0
6
+Version:        1.30.0
7 7
 Release:        1%{?dist}
8 8
 Summary:        Provides support for asynchonous TCP, UDP, UNIX and SSL sockets.
9 9
 Group:          Development/Libraries
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        MIT
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    async-io=2fb2c7655b4f888fa24321ad8924945266e4cddb
15
+%define sha1    async-io=0b1c652f400af70306bdf7339fcbc576e86b7994
16 16
 BuildRequires:  ruby >= 2.3.0, ruby < 3.0.0
17 17
 
18 18
 Requires: rubygem-async >= 1.14.0, rubygem-async < 2.0.0
... ...
@@ -35,5 +35,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
35 35
 %{gemdir}
36 36
 
37 37
 %changelog
38
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.30.0-1
39
+-   Automatic Version Bump
38 40
 *   Wed Aug 21 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 1.25.0-1
39 41
 -   Initial build
... ...
@@ -3,7 +3,7 @@
3 3
 %global gem_name async
4 4
 
5 5
 Name: rubygem-async
6
-Version:        1.20.1
6
+Version:        1.26.2
7 7
 Release:        1%{?dist}
8 8
 Summary:        Async provides a modern asynchronous I/O framework for Ruby, based on nio4r.
9 9
 Group:          Development/Libraries
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        MIT
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    async=0875af3bc230d0b341068b3511381a1a1e45fcfc
15
+%define sha1    async=e027ee1c36fca89b21084daf9bc5b2e2cf2e2711
16 16
 BuildRequires:  ruby >= 2.2.7
17 17
 
18 18
 Requires: rubygem-console >= 1.0.0, rubygem-console < 2.0.0
... ...
@@ -38,5 +38,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
38 38
 %{gemdir}
39 39
 
40 40
 %changelog
41
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.26.2-1
42
+-   Automatic Version Bump
41 43
 *   Wed Aug 21 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 1.20.1-1
42 44
 -   Initial build
... ...
@@ -3,14 +3,16 @@
3 3
 %global gem_name aws-eventstream
4 4
 
5 5
 Name: rubygem-aws-eventstream
6
-Version:        1.0.1
6
+Version:        1.1.0
7 7
 Release:        1%{?dist}
8 8
 Summary:        Amazon Web Services event stream library.
9 9
 Group:          Development/Languages
10
+Vendor:         VMware, Inc.
11
+Distribution:   Photon
10 12
 License:        Apache 2.0
11 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 14
 Source0:        https://rubygems.org/downloads/aws-eventstream-%{version}.gem
13
-%define sha1    aws-eventstream=bffa80739c9f404cd67cdcf35aa9f17ffdca7ebc
15
+%define sha1    aws-eventstream=016390c0e910f534f4d5a4bceda739cd71ff418c
14 16
 BuildRequires:  ruby
15 17
 
16 18
 %description
... ...
@@ -31,5 +33,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
31 31
 %{gemdir}
32 32
 
33 33
 %changelog
34
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.1.0-1
35
+-   Automatic Version Bump
34 36
 *   Mon Jul 30 2018 Srinidhi Rao <srinidhir@vmware.com> 1.0.1-1
35 37
 -   Initial build
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name aws-partitions
4 4
 
5 5
 Name: rubygem-aws-partitions
6
-Version:        1.104.0
6
+Version:        1.363.0
7 7
 Release:        1%{?dist}
8 8
 Summary:        Provides interfaces to enumerate AWS partitions, regions & services.
9 9
 Group:          Development/Languages
10 10
 License:        Apache 2.0
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/aws-partitions-%{version}.gem
13
-%define sha1    aws-partitions=14606f326e18e1b4dbde382c38994d9d3f26f065
13
+%define sha1    aws-partitions=c415942fd504d284a03c162db590a97838737625
14 14
 BuildRequires:  ruby
15 15
 
16 16
 %description
... ...
@@ -29,6 +29,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
29 29
 %{gemdir}
30 30
 
31 31
 %changelog
32
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.363.0-1
33
+-   Automatic Version Bump
32 34
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 1.104.0-1
33 35
 -   Update to version 1.104.0
34 36
 *   Mon Jul 30 2018 Srinidhi Rao <srinidhir@vmware.com> 1.96.0-1
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name aws-sdk-core
4 4
 
5 5
 Name: rubygem-aws-sdk-core
6
-Version:        3.27.0
6
+Version:        3.105.0
7 7
 Release:        1%{?dist}
8 8
 Summary:        Provides API clients for AWS.
9 9
 Group:          Development/Languages
10 10
 License:        Apache 2.0
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/aws-sdk-core-%{version}.gem
13
-%define sha1    aws-sdk-core=f88a66b70a6e41898a1e1be7c8a5f45e27de6016
13
+%define sha1    aws-sdk-core=7baa17700596912dc3fb5fc771283cb7a69b3341
14 14
 BuildRequires:  ruby
15 15
 
16 16
 Requires: rubygem-aws-eventstream >= 1.0
... ...
@@ -34,6 +34,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
34 34
 %{gemdir}
35 35
 
36 36
 %changelog
37
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 3.105.0-1
38
+-   Automatic Version Bump
37 39
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 3.27.0-1
38 40
 -   Update to version 3.27.0
39 41
 *   Mon Jul 30 2018 Srinidhi Rao <srinidhir@vmware.com> 3.22.1-1
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name aws-sdk-kms
4 4
 
5 5
 Name: rubygem-aws-sdk-kms
6
-Version:        1.9.0
6
+Version:        1.37.0
7 7
 Release:        1%{?dist}
8 8
 Summary:        Official AWS Ruby gem for AWS Key Management Service (KMS).
9 9
 Group:          Development/Languages
10 10
 License:        Apache 2.0
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/aws-sdk-kms-%{version}.gem
13
-%define sha1    aws-sdk-kms=1779cc325eb8d4d355bc24515648b890eec5dd73
13
+%define sha1    aws-sdk-kms=b0c272c373187b41c0764414268a5629e3afe25a
14 14
 BuildRequires:  ruby
15 15
 
16 16
 Requires: rubygem-aws-sdk-core >= 3
... ...
@@ -33,6 +33,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
33 33
 %{gemdir}
34 34
 
35 35
 %changelog
36
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.37.0-1
37
+-   Automatic Version Bump
36 38
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 1.9.0-1
37 39
 -   Update to version 1.9.0
38 40
 *   Mon Jul 30 2018 Srinidhi Rao <srinidhir@vmware.com> 1.6.0-1
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name aws-sdk-s3
4 4
 
5 5
 Name: rubygem-aws-sdk-s3
6
-Version:        1.19.0
6
+Version:        1.79.1
7 7
 Release:        1%{?dist}
8 8
 Summary:        Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3).
9 9
 Group:          Development/Languages
10 10
 License:        Apache 2.0
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-s3-%{version}.gem
13
-%define sha1    aws-sdk-s3=0d899515ee4cd8a3b51d84abde41a0f80f6aace2
13
+%define sha1    aws-sdk-s3=7a8df7be2059e72b1d5deaa1d57da81979d9bfab
14 14
 BuildRequires:  ruby
15 15
 
16 16
 Requires: rubygem-aws-sdk-core >= 3.21.2
... ...
@@ -34,6 +34,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
34 34
 %{gemdir}
35 35
 
36 36
 %changelog
37
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.79.1-1
38
+-   Automatic Version Bump
37 39
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 1.19.0-1
38 40
 -   Update to version 1.19.0
39 41
 *   Mon Jul 30 2018 Srinidhi Rao <srinidhir@vmware.com> 1.17.0-1
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name aws-sdk-sqs
4 4
 
5 5
 Name: rubygem-aws-sdk-sqs
6
-Version:        1.6.0
6
+Version:        1.32.0
7 7
 Release:        1%{?dist}
8 8
 Summary:        Official AWS Ruby gem for Amazon Simple Queue Service (Amazon SQS).
9 9
 Group:          Development/Languages
10 10
 License:        Apache 2.0
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/aws-sdk-sqs-%{version}.gem
13
-%define sha1    aws-sdk-sqs=5b729ae9d9ca3298d044dc31aa731df964914f20
13
+%define sha1    aws-sdk-sqs=1719d5adccd5f0aeb1539786ac2799ec9fc0d055
14 14
 BuildRequires:  ruby
15 15
 
16 16
 Requires: rubygem-aws-sdk-core >= 3
... ...
@@ -33,6 +33,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
33 33
 %{gemdir}
34 34
 
35 35
 %changelog
36
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.32.0-1
37
+-   Automatic Version Bump
36 38
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 1.6.0-1
37 39
 -   Update to version 1.6.0
38 40
 *   Mon Jul 30 2018 Srinidhi Rao <srinidhir@vmware.com> 1.4.0-1
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name aws-sigv4
4 4
 
5 5
 Name: rubygem-aws-sigv4
6
-Version:        1.0.3
6
+Version:        1.2.2
7 7
 Release:        1%{?dist}
8 8
 Summary:        Amazon Web Services Signature Version 4 signing library.
9 9
 Group:          Development/Languages
10 10
 License:        Apache 2.0
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/aws-sigv4-%{version}.gem
13
-%define sha1    aws-sigv4=73be50b9a8b4084c246a14ef3689a8c9a3b17b5c
13
+%define sha1    aws-sigv4=46bf7f608afeea94c18c17aa460a39b7deef634d
14 14
 BuildRequires:  ruby
15 15
 
16 16
 %description
... ...
@@ -30,5 +30,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
30 30
 %{gemdir}
31 31
 
32 32
 %changelog
33
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.2.2-1
34
+-   Automatic Version Bump
33 35
 *   Mon Jul 30 2018 Srinidhi Rao <srinidhir@vmware.com> 1.0.3-1
34 36
 -   Initial build
... ...
@@ -4,8 +4,8 @@
4 4
 %global gem_name backports
5 5
 
6 6
 Name: rubygem-backports
7
-Version:        3.11.4
8
-Release:        2%{?dist}
7
+Version:        3.18.2
8
+Release:        1%{?dist}
9 9
 Summary:        Backports of Ruby features for older Ruby
10 10
 Group:          Development/Languages
11 11
 License:        MIT
... ...
@@ -13,7 +13,7 @@ Vendor:         VMware, Inc.
13 13
 Distribution:   Photon
14 14
 URL:            http://github.com/marcandre/backports
15 15
 Source0:        https://rubygems.org/gems/backports-%{version}.gem
16
-%define sha1    backports=edf08f3a0d9e202048857d78ddda44e59294084c
16
+%define sha1    backports=d2376d0d275cd3fa51d9d978d58b199754cfd701
17 17
 BuildRequires:  ruby
18 18
 BuildRequires:  rubygem-activesupport
19 19
 BuildRequires:  rubygem-i18n
... ...
@@ -52,6 +52,8 @@ rake test
52 52
 
53 53
 
54 54
 %changelog
55
+*   Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 3.18.2-1
56
+-   Automatic Version Bump
55 57
 *   Fri Nov 23 2018 Sujay G <gsujay@vmware.com> 3.11.4-2
56 58
 -   Updated %check section
57 59
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 3.11.4-1
... ...
@@ -4,15 +4,15 @@
4 4
 
5 5
 Summary:        Builders for MarkUp
6 6
 Name:           rubygem-builder
7
-Version:        3.2.3
8
-Release:        2%{?dist}
7
+Version:        3.2.4
8
+Release:        1%{?dist}
9 9
 Group:          Development/Languages
10 10
 License:        MIT
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 URL:            http://onestepback.org
14 14
 Source0:        http://rubygems.org/gems/builder-%{version}.gem
15
-%define sha1    builder=5cd6a92e6360279ec1e5c2456372f1709df9a6b2
15
+%define sha1    builder=3581f146308130f5b23b4f0348e68333288267f8
16 16
 Source1:        https://get.rvm.io/rvm-installer
17 17
 %define sha1    rvm-installer=cf0184a1fc3c0854da5acc1134fac150461d7360
18 18
 BuildRequires:  ruby
... ...
@@ -42,6 +42,8 @@ popd
42 42
 %{gemdir}
43 43
 
44 44
 %changelog
45
+*   Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 3.2.4-1
46
+-   Automatic Version Bump
45 47
 *   Wed Mar 22 2017 Chang Lee <changlee@vmware.com> 3.2.3-2
46 48
 -   Updated %check to dynamic gem version
47 49
 *   Wed Mar 22 2017 Xiaolin Li <xiaolinl@vmware.com> 3.2.3-1
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name bundler
4 4
 
5 5
 Name: rubygem-bundler
6
-Version:        1.16.4
6
+Version:        2.1.4
7 7
 Release:        1%{?dist}
8 8
 Summary:        manages an application's dependencies
9 9
 Group:          Development/Languages
10 10
 License:        MIT
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/bundler-%{version}.gem
13
-%define sha1    bundler=679793f0e618c4cc99052775f7d280adaacd35d8
13
+%define sha1    bundler=d78f5cd87af76a3c5129c33028a0ea3716fe8acd
14 14
 BuildRequires:  ruby > 2.1.0
15 15
 Provides: rubygem-bundler = %{version}
16 16
 
... ...
@@ -31,6 +31,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
31 31
 %{gemdir}
32 32
 
33 33
 %changelog
34
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 2.1.4-1
35
+-   Automatic Version Bump
34 36
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 1.16.4-1
35 37
 -   Update to version 1.16.4
36 38
 *   Mon Aug 13 2018 Srinidhi Rao <srinidhir@vmware.com> 1.16.3-1
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name concurrent-ruby
4 4
 
5 5
 Name: rubygem-concurrent-ruby
6
-Version:        1.0.5
6
+Version:        1.1.7
7 7
 Release:        1%{?dist}
8 8
 Summary:        Modern concurrency tools for Rails framework.
9 9
 Group:          Development/Languages
10 10
 License:        MIT
11 11
 URL:            https://rubygems.org/gems/concurrent-ruby/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/concurrent-ruby-%{version}.gem
13
-%define sha1    concurrent-ruby=87de0558473d73a2f7fb208c9b462cd5a894a7c6
13
+%define sha1    concurrent-ruby=24609ce8309e108cc75ab2501ec93127eb7aa6f3
14 14
 BuildRequires:  ruby
15 15
 
16 16
 %description
... ...
@@ -31,5 +31,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
31 31
 %{gemdir}
32 32
 
33 33
 %changelog
34
+*   Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 1.1.7-1
35
+-   Automatic Version Bump
34 36
 *   Fri Aug 25 2017 Kumar Kaushik <kaushikk@vmware.com> 1.0.5-1
35 37
 -   Initial build
... ...
@@ -3,7 +3,7 @@
3 3
 %global gem_name console
4 4
 
5 5
 Name: rubygem-console
6
-Version:        1.4.0
6
+Version:        1.9.0
7 7
 Release:        1%{?dist}
8 8
 Summary:        Beautiful logging for Ruby.
9 9
 Group:          Development/Libraries
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        MIT
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    console=f06b54e69f4838b23b77de56741294004f70ebb9
15
+%define sha1    console=c69eae796e7092cf55956725a309a2b44b30bb80
16 16
 BuildRequires:  ruby
17 17
 
18 18
 BuildArch: noarch
... ...
@@ -33,5 +33,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
33 33
 %{gemdir}
34 34
 
35 35
 %changelog
36
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.9.0-1
37
+-   Automatic Version Bump
36 38
 *   Wed Aug 21 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 1.4.0-1
37 39
 -   Initial build
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name cool.io
4 4
 
5 5
 Name: rubygem-cool-io
6
-Version:        1.5.3
6
+Version:        1.6.0
7 7
 Release:        1%{?dist}
8 8
 Summary:        a high performance event framework for Ruby which uses the libev C library
9 9
 Group:          Development/Languages
10 10
 License:        N/A
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/cool.io-%{version}.gem
13
-%define sha1    cool.io=a29fa2b9aafdbb017481906c658d425e47c38264
13
+%define sha1    cool.io=7fd26857eba28eb0b71b85c84e7872e21e2d8291
14 14
 BuildRequires:  ruby
15 15
 Provides: rubygem-cool-io = %{version}
16 16
 
... ...
@@ -30,5 +30,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
30 30
 %{gemdir}
31 31
 
32 32
 %changelog
33
+*   Fri Jul 24 2020 Gerrit Photon <photon-checkins@vmware.com> 1.6.0-1
34
+-   Automatic Version Bump
33 35
 *   Tue Jul 24 2018 Srinidhi Rao <srinidhir@vmware.com> 1.5.3-1
34 36
 -   Initial build
... ...
@@ -4,9 +4,11 @@
4 4
 
5 5
 Name: rubygem-dig_rb
6 6
 Version:        1.0.1
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        Array/Hash/Struct#dig backfill for ruby
9 9
 Group:          Development/Languages
10
+Vendor:         VMware, Inc.
11
+Distribution:   Photon
10 12
 License:        MIT
11 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 14
 Source0:        https://rubygems.org/downloads/dig_rb-%{version}.gem
... ...
@@ -30,5 +32,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
30 30
 %{gemdir}
31 31
 
32 32
 %changelog
33
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 1.0.1-2
34
+-   Rebuilt using ruby-2.7.1
33 35
 *   Tue Jul 24 2018 Srinidhi Rao <srinidhir@vmware.com> 1.0.1-1
34 36
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-domain_name
6 6
 Version:        0.5.20190701
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        This is a Domain Name manipulation library for Ruby.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -35,5 +35,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
35 35
 %{gemdir}
36 36
 
37 37
 %changelog
38
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 0.5.20190701-2
39
+-   Rebuilt using ruby-2.7.1
38 40
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 0.5.20190701-1
39 41
 -   Initial build
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name ffi
4 4
 
5 5
 Name: rubygem-ffi
6
-Version:        1.9.25
7
-Release:        3%{?dist}
6
+Version:        1.13.1
7
+Release:        1%{?dist}
8 8
 Summary:        Ruby FFI library
9 9
 Group:          Development/Languages
10 10
 License:        BSD-2-Clause
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/ffi-%{version}.gem
13
-%define sha1    ffi=86fa011857f977254ccf39f507587310f9ade768
13
+%define sha1    ffi=cfa25e7a3760c3ec16723cb8263d9b7a52d0eadf
14 14
 BuildRequires:  ruby > 2.1.0
15 15
 
16 16
 %description
... ...
@@ -30,6 +30,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
30 30
 %exclude /usr/lib/ruby/gems/2.5.0/gems/ffi-1.9.25/ext/ffi_c/libffi-%{_arch}-linux/include/ffitarget.h
31 31
 
32 32
 %changelog
33
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.13.1-1
34
+-   Automatic Version Bump
33 35
 *   Tue Sep 25 2018 Ajay Kaher <akaher@vmware.com> 1.9.25-3
34 36
 -   Adding aarch64 support.
35 37
 *   Tue Sep 25 2018 Alexey Makhalov <amakhalov@vmware.com> 1.9.25-2
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-fluent-plugin-concat
6 6
 Version:        2.4.0
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        Fluentd Filter plugin to concat multiple event messages.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -34,5 +34,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
34 34
 %{gemdir}
35 35
 
36 36
 %changelog
37
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 2.4.0-2
38
+-   Rebuilt using ruby-2.7.1
37 39
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 2.4.0-1
38 40
 -   Initial build
... ...
@@ -3,7 +3,7 @@
3 3
 %global gem_name fluent-plugin-kubernetes_metadata_filter
4 4
 
5 5
 Name: rubygem-fluent-plugin-kubernetes_metadata_filter
6
-Version:        2.2.0
6
+Version:        2.5.2
7 7
 Release:        1%{?dist}
8 8
 Summary:        Fluentd Filter plugin to add Kubernetes metadata.
9 9
 Group:          Development/Libraries
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        Apache-2.0
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    fluent-plugin-kubernetes_metadata_filter=8048f933d5a5cf80be039ff6970dc7b6507085b0
15
+%define sha1    fluent-plugin-kubernetes_metadata_filter=6e8b3dff1b227a2c22ba2796ad1885ce1fa67a77
16 16
 BuildRequires:  ruby >= 2.1
17 17
 
18 18
 Requires: rubygem-fluentd >= 0.14.0, rubygem-fluentd < 2.0.0
... ...
@@ -45,5 +45,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
45 45
 %{gemdir}
46 46
 
47 47
 %changelog
48
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 2.5.2-1
49
+-   Automatic Version Bump
48 50
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 2.2.0-1
49 51
 -   Initial build
... ...
@@ -5,7 +5,7 @@
5 5
 Name:           rubygem-fluent-plugin-remote_syslog
6 6
 Summary:        Fluentd output plugin for remote syslog
7 7
 Version:        1.0.0
8
-Release:        1%{?dist}
8
+Release:        2%{?dist}
9 9
 License:        MIT
10 10
 Group:          Development/Libraries
11 11
 Vendor:         VMware, Inc.
... ...
@@ -34,5 +34,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
34 34
 %{gemdir}
35 35
 
36 36
 %changelog
37
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 1.0.0-2
38
+-   Rebuilt using ruby-2.7.1
37 39
 *   Mon Jan 27 2020 Nikolay Stanchev <nstanchev@vmware.com> 1.0.0-1
38 40
 -   Initial build
... ...
@@ -3,8 +3,8 @@
3 3
 %global gem_name fluent-plugin-s3
4 4
 
5 5
 Name: rubygem-fluent-plugin-s3
6
-Version:        1.1.6
7
-Release:        2%{?dist}
6
+Version:        1.4.0
7
+Release:        1%{?dist}
8 8
 Summary:        Amazon S3 output plugin for Fluentd event collector.
9 9
 Group:          Development/Languages
10 10
 License:        Apache 2.0
... ...
@@ -12,7 +12,7 @@ Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/fluent-plugin-s3-%{version}.gem
15
-%define sha1    fluent-plugin-s3=e911d12945058ddfc5982767c8d7cebbbf96913a
15
+%define sha1    fluent-plugin-s3=4e79e5fe29667884e653f3ef2a04a4866cc2f1fc
16 16
 BuildRequires:  ruby
17 17
 %if %{with_check}
18 18
 BuildRequires:  git
... ...
@@ -45,6 +45,8 @@ rake test
45 45
 %{gemdir}
46 46
 
47 47
 %changelog
48
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.4.0-1
49
+-   Automatic Version Bump
48 50
 *   Tue Nov 27 2018 Sujay G <gsujay@vmware.com> 1.1.6-2
49 51
 -   Added %check section
50 52
 *   Mon Sep 17 2018 srinidhira0 <srinidhir@vmware.com> 1.1.6-1
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name fluent-plugin-systemd
4 4
 
5 5
 Name: rubygem-fluent-plugin-systemd
6
-Version:        1.0.1
7
-Release:        2%{?dist}
6
+Version:        1.0.2
7
+Release:        1%{?dist}
8 8
 Summary:        This is a fluentd input plugin. It reads logs from the systemd journal.
9 9
 Group:          Development/Languages
10 10
 License:        Apache 2
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/fluent-plugin-systemd-%{version}.gem
13
-%define sha1    fluent-plugin-systemd=dd9c1e6ae7fa451822b5f244b0b92438a925670a
13
+%define sha1    fluent-plugin-systemd=7e927b3bc361ba1af7581281f3f09dfb7c64841a
14 14
 BuildRequires:  ruby
15 15
 
16 16
 Requires: rubygem-fluentd >= 0.14.11
... ...
@@ -34,6 +34,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
34 34
 %{gemdir}
35 35
 
36 36
 %changelog
37
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.0.2-1
38
+-   Automatic Version Bump
37 39
 *   Thu Aug 16 2018 Srinidhi Rao <srinidhir@vmware.com> 1.0.1-2
38 40
 -   Added the dependency on rubygem-systemd-journal
39 41
 *   Tue Jul 24 2018 Srinidhi Rao <srinidhir@vmware.com> 1.0.1-1
... ...
@@ -3,7 +3,7 @@
3 3
 %global gem_name fluent-plugin-vmware-loginsight
4 4
 
5 5
 Name: rubygem-fluent-plugin-vmware-loginsight
6
-Version:        0.1.5
6
+Version:        0.1.10
7 7
 Release:        1%{?dist}
8 8
 Summary:        Fluent output plugin to forward logs to VMware Log Insight.
9 9
 Group:          Development/Libraries
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        MIT
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    fluent-plugin-vmware-loginsight=106cbb61300329af42040b4a74c0fe31cddd97f6
15
+%define sha1    fluent-plugin-vmware-loginsight=f1817478c8d57bd35d0d197ceeab8c09af7331b9
16 16
 BuildRequires:  ruby >= 2.1
17 17
 
18 18
 Requires: rubygem-fluentd >= 0.14.10, rubygem-fluentd < 2.0.0
... ...
@@ -34,5 +34,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
34 34
 %{gemdir}
35 35
 
36 36
 %changelog
37
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 0.1.10-1
38
+-   Automatic Version Bump
37 39
 *   Fri Aug 23 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 0.1.5-1
38 40
 -   Initial build
... ...
@@ -3,7 +3,7 @@
3 3
 %global gem_name fluentd
4 4
 
5 5
 Name: rubygem-fluentd
6
-Version:        1.6.3
6
+Version:        1.11.2
7 7
 Release:        1%{?dist}
8 8
 Summary:        An open source data collector designed to scale and simplify log management
9 9
 Group:          Development/Languages
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        Apache 2
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/fluentd-%{version}.gem
15
-%define sha1    fluentd=1cfa3644b36c33ef700ea4c490060f4d9a907570
15
+%define sha1    fluentd=3a4d0b93d5b54770343c3e3b6350ecbc25b3684b
16 16
 BuildRequires:  ruby >= 2.1
17 17
 
18 18
 Requires(post): systemd
... ...
@@ -55,6 +55,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
55 55
 %{gemdir}
56 56
 
57 57
 %changelog
58
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.11.2-1
59
+-   Automatic Version Bump
58 60
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 1.6.3-1
59 61
 -   Update to version 1.6.3
60 62
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 1.2.5-1
... ...
@@ -2,14 +2,14 @@
2 2
 %global gemdir %(IFS=: R=($(gem env gempath)); echo ${R[${#R[@]}-1]})
3 3
 %define gem_name highline
4 4
 Name: rubygem-highline
5
-Version: 2.0.0
5
+Version: 2.0.3
6 6
 Release: 1%{?dist}
7 7
 Summary: A high-level IO library that provides validation, type conversion, and more for command-line interfaces
8 8
 Group: Applications/Programming
9 9
 License: BSD
10 10
 URL: https://rubygems.org/gems/%{gem_name}
11 11
 Source0: https://rubygems.org/downloads/highline-%{version}.gem
12
-%define sha1 highline=56a3956394291617b22f77faa1aff0440ae60733
12
+%define sha1 highline=125f9aad369c92cf5ff08d48e906b8aaeefcabd9
13 13
 BuildRequires: ruby
14 14
 Requires: ruby
15 15
 %description
... ...
@@ -29,6 +29,8 @@ LANG=en_US.UTF-8  rake test
29 29
 %defattr(-,root,root,-)
30 30
 %{gemdir}
31 31
 %changelog
32
+*   Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 2.0.3-1
33
+-   Automatic Version Bump
32 34
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 2.0.0-1
33 35
 -   Update to version 2.0.0
34 36
 * Tue Sep 05 2017 Chang Lee <changlee@vmware.com> 1.7.8-4
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-http-accept
6 6
 Version:        1.7.0
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        Parse Accept and Accept-Language HTTP headers.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -33,5 +33,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
33 33
 %{gemdir}
34 34
 
35 35
 %changelog
36
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 1.7.0-2
37
+-   rebuilt with ruby-2.7.1
36 38
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 1.7.0-1
37 39
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-http-cookie
6 6
 Version:        1.0.3
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        HTTP::Cookie is a Ruby library to handle HTTP Cookies based on RFC 6265.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -38,5 +38,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
38 38
 %{gemdir}
39 39
 
40 40
 %changelog
41
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 1.0.3-2
42
+-   Rebuilt using ruby-2.7.1
41 43
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 1.0.3-1
42 44
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-http-form_data
6 6
 Version:        1.0.3
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        Utility-belt to build form data request bodies. Provides support for application/x-www-form-urlencoded and multipart/form-data types.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -33,5 +33,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
33 33
 %{gemdir}
34 34
 
35 35
 %changelog
36
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 1.0.3-2
37
+-   rebuilt with ruby-2.7.1
36 38
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 1.0.3-1
37 39
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-http
6 6
 Version:        0.9.8
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        An easy-to-use client library for making requests from Ruby.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -38,5 +38,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
38 38
 %{gemdir}
39 39
 
40 40
 %changelog
41
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 0.9.8-2
42
+-   rebuilt with ruby-2.7.1
41 43
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 0.9.8-1
42 44
 -   Initial build
... ...
@@ -4,10 +4,12 @@
4 4
 
5 5
 Name: rubygem-http_parser.rb
6 6
 Version:        0.6.0
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        Provides ruby bindings to http parser
9 9
 Group:          Development/Languages
10 10
 License:        MIT
11
+Vendor:         VMware, Inc.
12
+Distribution:   Photon
11 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 14
 Source0:        https://rubygems.org/downloads/http_parser.rb-%{version}.gem
13 15
 %define sha1    http_parser.rb=0d69273a2e74b82358b19f01632e06601732a64e
... ...
@@ -30,5 +32,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
30 30
 %{gemdir}
31 31
 
32 32
 %changelog
33
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 0.6.0-2
34
+-   rebuilt with ruby-2.7.1
33 35
 *   Tue Jul 24 2018 Srinidhi Rao <srinidhir@vmware.com> 0.6.0-1
34 36
 -   Initial build
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name i18n
4 4
 
5 5
 Name: rubygem-i18n
6
-Version:        1.1.0
6
+Version:        1.8.5
7 7
 Release:        1%{?dist}
8 8
 Summary:        Support for ruby.
9 9
 Group:          Development/Languages
10 10
 License:        MIT
11 11
 URL:            https://rubygems.org/gems/i18n/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/i18n-%{version}.gem
13
-%define sha1    i18n=08ca48afa071976614d32e2b17447ff2e5f79e03
13
+%define sha1    i18n=383b7a07b6111b119d98379195773d9829e9abaf
14 14
 BuildRequires:  ruby
15 15
 
16 16
 %description
... ...
@@ -29,6 +29,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
29 29
 %{gemdir}
30 30
 
31 31
 %changelog
32
+*   Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 1.8.5-1
33
+-   Automatic Version Bump
32 34
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 1.1.0-1
33 35
 -   Update to version 1.1.0
34 36
 *   Fri Aug 25 2017 Kumar Kaushik <kaushikk@vmware.com> 0.8.6-1
... ...
@@ -4,9 +4,11 @@
4 4
 
5 5
 Name: rubygem-jmespath
6 6
 Version:        1.4.0
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        Implements JMESPath for Ruby.
9 9
 Group:          Development/Languages
10
+Vendor:         VMware, Inc.
11
+Distribution:   Photon
10 12
 License:        Apache 2.0
11 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 14
 Source0:        https://rubygems.org/downloads/jmespath-%{version}.gem
... ...
@@ -29,5 +31,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
29 29
 %{gemdir}
30 30
 
31 31
 %changelog
32
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 1.4.0-2
33
+-   rebuilt with ruby-2.7.1
32 34
 *   Mon Jul 30 2018 Srinidhi Rao <srinidhir@vmware.com> 1.4.0-1
33 35
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-kubeclient
6 6
 Version:        1.1.4
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        A client for Kubernetes REST api.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -37,5 +37,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
37 37
 %{gemdir}
38 38
 
39 39
 %changelog
40
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 1.1.4-2
41
+-   Rebuilt with ruby-2.7.1
40 42
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 1.1.4-1
41 43
 -   Initial build
... ...
@@ -2,8 +2,8 @@
2 2
 %global gemdir %(IFS=: R=($(gem env gempath)); echo ${R[${#R[@]}-1]})
3 3
 %define gem_name libxml-ruby
4 4
 Name:           rubygem-libxml-ruby
5
-Version:        3.1.0
6
-Release:        2%{?dist}
5
+Version:        3.2.0
6
+Release:        1%{?dist}
7 7
 Summary:        Provides Ruby language bindings for the GNOME Libxml2 XML toolkit
8 8
 Group:          Applications/Programming
9 9
 License:        BSD
... ...
@@ -11,7 +11,7 @@ Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 URL:            https://rubygems.org/gems/%{gem_name}
13 13
 Source0:        https://rubygems.org/downloads/libxml-ruby-%{version}.gem
14
-%define sha1    libxml-ruby=fb9e56fa6d6c9574613f4f0e3563b5f0e32eaca7
14
+%define sha1    libxml-ruby=dc4dba1a11af8854102f9455c65b63cb4e382df1
15 15
 BuildRequires:  ruby >= 2.4.0
16 16
 BuildRequires:  libxml2-devel
17 17
 Requires:       ruby >= 2.4.0
... ...
@@ -55,6 +55,8 @@ rake test
55 55
 %defattr(-,root,root,-)
56 56
 %{gemdir}
57 57
 %changelog
58
+*   Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 3.2.0-1
59
+-   Automatic Version Bump
58 60
 *   Fri Nov 23 2018 Sujay G <gsujay@vmware.com> 3.1.0-2
59 61
 -   Updated %check section
60 62
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 3.1.0-1
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-lru_redux
6 6
 Version:        1.1.0
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        An efficient, thread safe implementation of an LRU cache.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -33,5 +33,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
33 33
 %{gemdir}
34 34
 
35 35
 %changelog
36
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 1.1.0-2
37
+-   Rebuilt using ruby-2.7.1
36 38
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 1.1.0-1
37 39
 -   Initial build
... ...
@@ -3,7 +3,7 @@
3 3
 %global gem_name mime-types-data
4 4
 
5 5
 Name: rubygem-mime-types-data
6
-Version:        3.2015.1120
6
+Version:        3.2020.0512
7 7
 Release:        1%{?dist}
8 8
 Summary:        Provides a registry for information about MIME media type definitions.
9 9
 Group:          Development/Libraries
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        MIT
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    mime-types-data=7e0ba3069053eb0aa536fa9bf08f9de59d7bc5df
15
+%define sha1    mime-types-data=b88617eb20be7bf97ca26ff37480ea402a89fa3c
16 16
 BuildRequires:  ruby >= 2.0
17 17
 
18 18
 BuildArch: noarch
... ...
@@ -36,5 +36,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
36 36
 %{gemdir}
37 37
 
38 38
 %changelog
39
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 3.2020.0512-1
40
+-   Automatic Version Bump
39 41
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 3.2015.1120-1
40 42
 -   Initial build
... ...
@@ -3,7 +3,7 @@
3 3
 %global gem_name mime-types
4 4
 
5 5
 Name: rubygem-mime-types
6
-Version:        3.2.2
6
+Version:        3.3.1
7 7
 Release:        1%{?dist}
8 8
 Summary:        The mime-types library provides a library and registry for information about MIME content type definitions.
9 9
 Group:          Development/Libraries
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        MIT
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    mime-types=c1403f642bf029c7e7cc206816e2538d73b7b9bf
15
+%define sha1    mime-types=cf163ec2292220917c000f77257d42a8fce9236f
16 16
 BuildRequires:  ruby >= 2.0
17 17
 
18 18
 Requires: rubygem-mime-types-data >= 3.2015.0, rubygem-mime-types-data < 4.0.0
... ...
@@ -42,5 +42,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
42 42
 %{gemdir}
43 43
 
44 44
 %changelog
45
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 3.3.1-1
46
+-   Automatic Version Bump
45 47
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 3.2.2-1
46 48
 -   Initial build
... ...
@@ -2,17 +2,19 @@
2 2
 %global gemdir %(IFS=: R=($(gem env gempath)); echo ${R[${#R[@]}-1]})
3 3
 %global gem_name mini_portile
4 4
 
5
-Name: rubygem-mini_portile
6
-Version: 0.6.2
7
-Release: 3%{?dist}
8
-Summary: Simplistic port-like solution for developers
9
-Group: Development/Languages
10
-License: MIT
11
-URL: https://rubygems.org/gems/mini_portile/
12
-Source0: https://rubygems.org/downloads/mini_portile-%{version}.gem
5
+Name:           rubygem-mini_portile
6
+Version:        0.6.2
7
+Release:        4%{?dist}
8
+Summary:        Simplistic port-like solution for developers
9
+Group:          Development/Languages
10
+Vendor:         VMware, Inc.
11
+Distribution:   Photon
12
+License:        MIT
13
+URL:            https://rubygems.org/gems/mini_portile/
14
+Source0:        https://rubygems.org/downloads/mini_portile-%{version}.gem
13 15
 %define sha1 mini_portile=696b940eb4ff8076a2080684046da1d2b10f41b8
14
-BuildRequires: ruby
15
-Requires: ruby
16
+BuildRequires:  ruby
17
+Requires:       ruby
16 18
 %description
17 19
 Simplistic port-like solution for developers. It provides a standard and simplified way to compile against dependency libraries without messing up your system.
18 20
 
... ...
@@ -28,6 +30,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
28 28
 %{gemdir}
29 29
 
30 30
 %changelog
31
+* Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 0.6.2-4
32
+- Rebuilt with ruby-2.7.1
31 33
 * Wed Jan 25 2017 Anish Swaminathan <anishs@vmware.com> 0.6.2-3
32 34
 - Bump up release number to reflect ruby upgrade
33 35
 * Tue May 24 2016 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 0.6.2-2
... ...
@@ -4,14 +4,14 @@
4 4
 
5 5
 Summary:        Simplistic port-like solution for developers
6 6
 Name:           rubygem-mini_portile2
7
-Version:        2.3.0
7
+Version:        2.5.0
8 8
 Release:        1%{?dist}
9 9
 Group:          Development/Languages
10 10
 License:        MIT
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        https://rubygems.org/downloads/mini_portile2-%{version}.gem
14
-%define sha1    mini_portile2=1d0197130a5dc018aead990c20bc6f5717ba9e61
14
+%define sha1    mini_portile2=9fbd2e4af6def403acb37ec39b4434ba8f5558f8
15 15
 BuildRequires:  ruby
16 16
 Requires:       ruby
17 17
 %description
... ...
@@ -29,6 +29,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
29 29
 %{gemdir}
30 30
 
31 31
 %changelog
32
+*   Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 2.5.0-1
33
+-   Automatic Version Bump
32 34
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 2.3.0-1
33 35
 -   Update to version 2.3.0
34 36
 *   Wed Mar 22 2017 Xiaolin Li <xiaolinl@vmware.com> 2.1.0-1
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name msgpack
4 4
 
5 5
 Name: rubygem-msgpack
6
-Version:        1.2.4
6
+Version:        1.3.3
7 7
 Release:        1%{?dist}
8 8
 Summary:        A binary-based efficient object serialization library
9 9
 Group:          Development/Languages
10 10
 License:        Apache 2.0
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/msgpack-%{version}.gem
13
-%define sha1    msgpack=d5a0a24034e704de7bc9a56c1497ad5e83cf123e
13
+%define sha1    msgpack=2f24b39cb4a42cc1d5405eeb46c5ebe21b5a9e27
14 14
 BuildRequires:  ruby
15 15
 Provides: rubygem-msgpack = %{version}
16 16
 
... ...
@@ -32,5 +32,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
32 32
 %{gemdir}
33 33
 
34 34
 %changelog
35
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.3.3-1
36
+-   Automatic Version Bump
35 37
 *   Tue Jul 24 2018 Srinidhi Rao <srinidhir@vmware.com> 1.2.4-1
36 38
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-netrc
6 6
 Version:        0.11.0
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        This library can read and update netrc files, preserving formatting including comments and whitespace.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -33,5 +33,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
33 33
 %{gemdir}
34 34
 
35 35
 %changelog
36
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 0.11.0-2
37
+-   Rebuilt using ruby-2.7.1
36 38
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 0.11.0-1
37 39
 -   Initial build
... ...
@@ -3,8 +3,8 @@
3 3
 %global gem_name nio4r
4 4
 
5 5
 Name: rubygem-nio4r
6
-Version:        2.4.0
7
-Release:        2%{?dist}
6
+Version:        2.5.2
7
+Release:        1%{?dist}
8 8
 Summary:        Cross-platform asynchronous I/O primitives for scalable network clients and servers.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        MIT
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    nio4r=dbad76d9a1a7d130aebd1c6d1d5c59a0c2fcacb9
15
+%define sha1    nio4r=39ad93e566cf491fc0f480459cf79110fe77498a
16 16
 BuildRequires:  gmp-devel
17 17
 BuildRequires:  ruby >= 2.3.0
18 18
 
... ...
@@ -33,6 +33,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
33 33
 %{gemdir}
34 34
 
35 35
 %changelog
36
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 2.5.2-1
37
+-   Automatic Version Bump
36 38
 *   Wed Sep 4 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 2.4.0-2
37 39
 -   Enabled build for non x86_64 build archs
38 40
 *   Wed Aug 21 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 2.4.0-1
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Summary:        Nokogiri is an HTML, XML, SAX, and Reader parser.
6 6
 Name:           rubygem-nokogiri
7
-Version:        1.8.4
7
+Version:        1.10.9
8 8
 Release:        1%{?dist}
9 9
 License:        MIT
10 10
 Group:          Development/Languages
... ...
@@ -12,7 +12,7 @@ Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 URL:            https://rubygems.org/gems/nokogiri/
14 14
 Source0:        https://rubygems.org/downloads/nokogiri-%{version}.gem
15
-%define sha1    nokogiri=2375a4e4519baaee09815dbe9fc19c31832b8d28
15
+%define sha1    nokogiri=916da49de950beff304dac6069c92a3950888f1a
16 16
 BuildRequires:  ruby >= 2.4.0
17 17
 BuildRequires:  rubygem-mini_portile2
18 18
 BuildRequires:  libxml2-devel
... ...
@@ -35,6 +35,8 @@ NOKOGIRI_USE_SYSTEM_LIBRARIES=1 gem install -V --local --force --install-dir %{b
35 35
 %{gemdir}
36 36
 
37 37
 %changelog
38
+*   Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 1.10.9-1
39
+-   Automatic Version Bump
38 40
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 1.8.4-1
39 41
 -   Update to version 1.8.4
40 42
 *   Thu Apr 13 2017 Siju Maliakkal <smaliakkal@vmware.com> 1.7.1-2
... ...
@@ -3,8 +3,8 @@
3 3
 %global gem_name oj
4 4
 
5 5
 Name: rubygem-oj
6
-Version:        3.3.10
7
-Release:        2%{?dist}
6
+Version:        3.10.13
7
+Release:        1%{?dist}
8 8
 Summary:        The fastest JSON parser and object serializer.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        MIT
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    oj=2ef19745ffca587e5e9cd3c88b77854f6f996588
15
+%define sha1    oj=4ffc30e642d20974f2fd7141ecf5358287da41e2
16 16
 BuildRequires:  ruby >= 2.0
17 17
 BuildRequires:  gmp-devel
18 18
 
... ...
@@ -32,6 +32,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
32 32
 %{gemdir}
33 33
 
34 34
 %changelog
35
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 3.10.13-1
36
+-   Automatic Version Bump
35 37
 *   Wed Sep 4 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 3.3.10-2
36 38
 -   Enabled build for non x86_64 build archs
37 39
 *   Wed Aug 21 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 3.3.10-1
... ...
@@ -3,7 +3,7 @@
3 3
 %global gem_name protocol-hpack
4 4
 
5 5
 Name: rubygem-protocol-hpack
6
-Version:        1.4.1
6
+Version:        1.4.2
7 7
 Release:        1%{?dist}
8 8
 Summary:        A compresssor and decompressor for HTTP 2.0 HPACK.
9 9
 Group:          Development/Libraries
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        MIT
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    protocol-hpack=06f6a9e2fa1d38dec5724ced2bcc55f0c4eeb1c4
15
+%define sha1    protocol-hpack=eb126382026e825577ae2dee206c613ee6076d24
16 16
 BuildRequires:  ruby
17 17
 
18 18
 BuildArch: noarch
... ...
@@ -33,5 +33,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
33 33
 %{gemdir}
34 34
 
35 35
 %changelog
36
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.4.2-1
37
+-   Automatic Version Bump
36 38
 *   Wed Aug 21 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 1.4.1-1
37 39
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-protocol-http
6 6
 Version:        0.12.1
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        Provides abstractions to handle HTTP protocols.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -33,5 +33,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
33 33
 %{gemdir}
34 34
 
35 35
 %changelog
36
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 0.12.1-2
37
+-   Rebuild the gem with ruby-2.7.1
36 38
 *   Wed Aug 21 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 0.12.1-1
37 39
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-protocol-http1
6 6
 Version:        0.9.0
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        A low level implementation of the HTTP/1 protocol.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -35,5 +35,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
35 35
 %{gemdir}
36 36
 
37 37
 %changelog
38
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 0.9.0-2
39
+-   Rebuilt with ruby-2.7.1
38 40
 *   Wed Aug 21 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 0.9.0-1
39 41
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-protocol-http2
6 6
 Version:        0.9.5
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        A low level implementation of the HTTP/2 protocol.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -36,5 +36,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
36 36
 %{gemdir}
37 37
 
38 38
 %changelog
39
+*   Wed Sep 2 2020 Sujay G <gsujay@vmware.com> 0.9.5-2
40
+-   Rebuilt with ruby-2.7.1
39 41
 *   Wed Aug 21 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 0.9.5-1
40 42
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-public_suffix
6 6
 Version:        3.1.1
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        PublicSuffix can parse and decompose a domain name into top level domain, domain and subdomains.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -33,5 +33,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
33 33
 %{gemdir}
34 34
 
35 35
 %changelog
36
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 3.1.1-2
37
+-   Built with ruby-2.7.1
36 38
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 3.1.1-1
37 39
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Summary:        Ruby interface to the VMware vSphere API.
6 6
 Name:           rubygem-rbvmomi
7
-Version:        1.13.0
7
+Version:        3.0.0
8 8
 Release:        1%{?dist}
9 9
 Group:          Development/Languages
10 10
 License:        MIT
... ...
@@ -12,7 +12,7 @@ Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 URL:            https://github.com/vmware/rbvmomi
14 14
 Source0:        http://rubygems.org/gems/rbvmomi-%{version}.gem
15
-%define sha1    rbvmomi=eea5a20fded425356f538f2e94f59a42f7b8c388
15
+%define sha1    rbvmomi=0066c36a09a24f1d0df6e1d25a1c184d3cb35437
16 16
 BuildRequires:  ruby
17 17
 Requires:       ruby
18 18
 
... ...
@@ -35,6 +35,8 @@ rake test
35 35
 %{gemdir}
36 36
 
37 37
 %changelog
38
+*   Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 3.0.0-1
39
+-   Automatic Version Bump
38 40
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 1.13.0-1
39 41
 -   Update to version 1.13.0
40 42
 *   Fri Jun 23 2017 Chang Lee <changlee@vmware.com> 1.10.0-2
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-recursive-open-struct
6 6
 Version:        1.0.0
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        A subclass of OpenStruct that allows nested hashes to be treated in a recursive fashion
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -34,5 +34,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
34 34
 %{gemdir}
35 35
 
36 36
 %changelog
37
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 1.0.0-2
38
+-   rebuilt with ruby-2.7.1
37 39
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 1.0.0-1
38 40
 -   Initial build
... ...
@@ -5,7 +5,7 @@
5 5
 Name:           rubygem-remote_syslog_sender
6 6
 Summary:        Message sender that sends directly to a remote syslog endpoint (Support UDP, TCP, TCP+TLS)
7 7
 Version:        1.2.1
8
-Release:        2%{?dist}
8
+Release:        3%{?dist}
9 9
 License:        MIT
10 10
 Group:          Development/Libraries
11 11
 Vendor:         VMware, Inc.
... ...
@@ -35,6 +35,8 @@ patch -d %{buildroot}/%{gemdir}/gems/%{gem_name}-%{version} -p1 < %{PATCH0}
35 35
 %{gemdir}
36 36
 
37 37
 %changelog
38
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 1.2.1-3
39
+-   Rebuilt using ruby-2.7.1
38 40
 *   Wed Mar 11 2020 Nikolay Stanchev <nstanchev@vmware.com> 1.2.1-2
39 41
 *   Mon Jan 27 2020 Nikolay Stanchev <nstanchev@vmware.com> 1.2.1-1
40 42
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-rest-client
6 6
 Version:        2.1.0
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        A simple HTTP and REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -37,5 +37,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
37 37
 %{gemdir}
38 38
 
39 39
 %changelog
40
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 2.1.0-2
41
+-   rebuilt with ruby-2.7.1
40 42
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 2.1.0-1
41 43
 -   Initial build
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name serverengine
4 4
 
5 5
 Name: rubygem-serverengine
6
-Version:        2.0.7
6
+Version:        2.2.1
7 7
 Release:        1%{?dist}
8 8
 Summary:        A framework to implement robust multiprocess servers like Unicorn
9 9
 Group:          Development/Languages
10 10
 License:        Apache 2
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/serverengine-%{version}.gem
13
-%define sha1    serverengine=e3901a234a7e4ae66428536621af71e273c8af8a
13
+%define sha1    serverengine=d6f704b8ce4d05c029a548f28783086828c8fc84
14 14
 BuildRequires:  ruby > 2.1.0
15 15
 Provides: rubygem-serverengine = %{version}
16 16
 
... ...
@@ -30,5 +30,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
30 30
 %{gemdir}
31 31
 
32 32
 %changelog
33
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 2.2.1-1
34
+-   Automatic Version Bump
33 35
 *   Tue Jul 24 2018 Srinidhi Rao <srinidhir@vmware.com> 2.0.7-1
34 36
 -   Initial build
... ...
@@ -4,9 +4,11 @@
4 4
 
5 5
 Name: rubygem-sigdump
6 6
 Version:        0.2.4
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        signal handler which dumps backtrace of running threads
9 9
 Group:          Development/Languages
10
+Vendor:         VMware, Inc.
11
+Distribution:   Photon
10 12
 License:        MIT
11 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 14
 Source0:        https://rubygems.org/downloads/sigdump-%{version}.gem
... ...
@@ -32,5 +34,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
32 32
 %{gemdir}
33 33
 
34 34
 %changelog
35
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 0.2.4-2
36
+-   rebuilt using ruby-2.7.1
35 37
 *   Tue Jul 24 2018 Srinidhi Rao <srinidhir@vmware.com> 0.2.4-1
36 38
 -   Initial build
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name strptime
4 4
 
5 5
 Name: rubygem-strptime
6
-Version:        0.2.3
6
+Version:        0.2.4
7 7
 Release:        1%{?dist}
8 8
 Summary:        a fast strptime/strftime engine which uses VM
9 9
 Group:          Development/Languages
10 10
 License:        BSD 2
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/strptime-%{version}.gem
13
-%define sha1    strptime=b4749bb078a1e89ebf2eb010ebfa54ac65112114
13
+%define sha1    strptime=71cc865de8002a43ff9a3002bdfde3241ecc3f9b
14 14
 BuildRequires:  ruby
15 15
 Provides: rubygem-strptime = %{version}
16 16
 
... ...
@@ -30,5 +30,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
30 30
 %{gemdir}
31 31
 
32 32
 %changelog
33
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 0.2.4-1
34
+-   Automatic Version Bump
33 35
 *   Tue Jul 24 2018 Srinidhi Rao <srinidhir@vmware.com> 0.2.3-1
34 36
 -   Initial build
... ...
@@ -5,7 +5,7 @@
5 5
 Name:           rubygem-syslog_protocol
6 6
 Summary:        Syslog Protocol
7 7
 Version:        0.9.2
8
-Release:        1%{?dist}
8
+Release:        2%{?dist}
9 9
 License:        MIT
10 10
 Group:          Development/Libraries
11 11
 Vendor:         VMware, Inc.
... ...
@@ -32,5 +32,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
32 32
 %{gemdir}
33 33
 
34 34
 %changelog
35
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 0.9.2-2
36
+-   Rebuilt using ruby-2.7.1
35 37
 *   Mon Jan 27 2020 Nikolay Stanchev <nstanchev@vmware.com> 0.9.2-1
36 38
 -   Initial build
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name systemd-journal
4 4
 
5 5
 Name: rubygem-systemd-journal
6
-Version:        1.3.3
6
+Version:        1.4.2
7 7
 Release:        1%{?dist}
8 8
 Summary:        Provides the ability to navigate and read entries from the systemd journal in ruby
9 9
 Group:          Development/Languages
10 10
 License:        MIT
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/systemd-journal-%{version}.gem
13
-%define sha1    systemd-journal=3861d36e84af55a30418fc0909df623274250c66
13
+%define sha1    systemd-journal=68531140d09415377e0f64f450a52b94935e0618
14 14
 BuildRequires:  ruby > 2.1.0
15 15
 
16 16
 Requires: rubygem-ffi >= 1.9.0
... ...
@@ -34,5 +34,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
34 34
 %{gemdir}
35 35
 
36 36
 %changelog
37
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.4.2-1
38
+-   Automatic Version Bump
37 39
 *   Mon Aug 13 2018 Srinidhi Rao <srinidhir@vmware.com> 1.3.3-1
38 40
 -   Initial build
... ...
@@ -3,7 +3,7 @@
3 3
 %define gem_name terminal-table
4 4
 Name:           rubygem-terminal-table
5 5
 Version:        1.8.0
6
-Release:        1%{?dist}
6
+Release:        2%{?dist}
7 7
 Summary:        Simple, feature rich ascii table generation library
8 8
 Group:          Applications/Programming
9 9
 Vendor:         VMware, Inc.
... ...
@@ -15,17 +15,24 @@ Source0:        https://rubygems.org/downloads/terminal-table-%{version}.gem
15 15
 BuildRequires:  ruby
16 16
 Requires:       ruby
17 17
 Requires:       rubygem-unicode-display_width
18
+
18 19
 %description
19 20
 Simple, feature rich ascii table generation library
21
+
20 22
 %prep
21 23
 %setup -q -c -T
24
+
22 25
 %build
23 26
 %install
24 27
 gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
28
+
25 29
 %files
26 30
 %defattr(-,root,root,-)
27 31
 %{gemdir}
32
+
28 33
 %changelog
34
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 1.8.0-2
35
+-   Rebuilt using ruby-2.7.1
29 36
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 1.8.0-1
30 37
 -   Update to version 1.8.0
31 38
 *   Wed Mar 29 2017 Xiaolin Li <xiaolinl@vmware.com> 1.7.3-2
... ...
@@ -4,9 +4,11 @@
4 4
 
5 5
 Name: rubygem-thread_safe
6 6
 Version:        0.3.6
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        Thread safe programming support for Ruby.
9 9
 Group:          Development/Languages
10
+Vendor:         VMware, Inc.
11
+Distribution:   Photon
10 12
 License:        MIT
11 13
 URL:            https://rubygems.org/gems/activesupport/thread_safe/%{version}
12 14
 Source0:        https://rubygems.org/downloads/thread_safe-%{version}.gem
... ...
@@ -29,5 +31,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
29 29
 %{gemdir}
30 30
 
31 31
 %changelog
32
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 0.3.6-2
33
+-   Rebuilt using ruby-2.7.1
32 34
 *   Fri Aug 25 2017 Kumar Kaushik <kaushikk@vmware.com> 0.3.6-1
33 35
 -   Initial build
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-timers
6 6
 Version:        4.3.0
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        Schedule procs to run after a certain time, or at periodic intervals, using any API that accepts a timeout.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -33,5 +33,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
33 33
 %{gemdir}
34 34
 
35 35
 %changelog
36
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 4.3.0-2
37
+-   Rebuilt using ruby-2.7.1
36 38
 *   Wed Aug 21 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 4.3.0-1
37 39
 -   Initial build
... ...
@@ -2,8 +2,8 @@
2 2
 %global gemdir %(IFS=: R=($(gem env gempath)); echo ${R[${#R[@]}-1]})
3 3
 %define gem_name trollop
4 4
 Name:           rubygem-trollop
5
-Version:        2.9.9
6
-Release:        2%{?dist}
5
+Version:        2.9.10
6
+Release:        1%{?dist}
7 7
 Summary:        Commandline option parser for Ruby
8 8
 Group:          Applications/Programming
9 9
 License:        BSD
... ...
@@ -11,7 +11,7 @@ Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 URL: https://rubygems.org/gems/%{gem_name}
13 13
 Source0: https://rubygems.org/downloads/trollop-%{version}.gem
14
-%define sha1 trollop=744730e58c4c56b5d652e210cb36974593eb1556
14
+%define sha1 trollop=2957df69faed52eac64ab67c43c5de7e38fd6d61
15 15
 BuildRequires: ruby
16 16
 %if %{with_check}
17 17
 BuildRequires: git
... ...
@@ -34,6 +34,8 @@ rake test
34 34
 %defattr(-,root,root,-)
35 35
 %{gemdir}
36 36
 %changelog
37
+* Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 2.9.10-1
38
+- Automatic Version Bump
37 39
 * Tue Nov 27 2018 Sujay G <gsujay@vmware.com> 2.9.9-2
38 40
 - Added %check section
39 41
 * Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 2.9.9-1
... ...
@@ -3,14 +3,14 @@
3 3
 %global gem_name tzinfo-data
4 4
 
5 5
 Name: rubygem-tzinfo-data
6
-Version:        1.2018.5
6
+Version:        1.2020.1
7 7
 Release:        1%{?dist}
8 8
 Summary:        data from the IANA Time Zone database packaged as Ruby modules
9 9
 Group:          Development/Languages
10 10
 License:        MIT
11 11
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 12
 Source0:        https://rubygems.org/downloads/tzinfo-data-%{version}.gem
13
-%define sha1    tzinfo-data=2ba2850326a7d62d147caf8dc35ae6314cf75b91
13
+%define sha1    tzinfo-data=ef368779f674bbdc4ea68f9c2e3fa2c49e847a2d
14 14
 BuildRequires:  ruby
15 15
 Provides: rubygem-tzinfo-data = %{version}
16 16
 
... ...
@@ -31,5 +31,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
31 31
 %{gemdir}
32 32
 
33 33
 %changelog
34
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 1.2020.1-1
35
+-   Automatic Version Bump
34 36
 *   Tue Jul 24 2018 Srinidhi Rao <srinidhir@vmware.com> 1.2018.5-1
35 37
 -   Initial build
... ...
@@ -3,8 +3,8 @@
3 3
 %global gem_name tzinfo
4 4
 
5 5
 Name: rubygem-tzinfo
6
-Version:        1.2.5
7
-Release:        2%{?dist}
6
+Version:        2.0.2
7
+Release:        1%{?dist}
8 8
 Summary:        Timezone related support for Ruby.
9 9
 Group:          Development/Languages
10 10
 License:        MIT
... ...
@@ -12,7 +12,7 @@ Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 URL:            https://rubygems.org/gems/tzinfo/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/tzinfo-%{version}.gem
15
-%define sha1    tzinfo=c63e819a4ef646956bef31acec7d39ddccaff35c
15
+%define sha1    tzinfo=24f7381a309ebc405803aa3c05be659982c3c4ae
16 16
 BuildRequires:  ruby
17 17
 
18 18
 %description
... ...
@@ -36,6 +36,8 @@ rake test
36 36
 %{gemdir}
37 37
 
38 38
 %changelog
39
+*   Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 2.0.2-1
40
+-   Automatic Version Bump
39 41
 *   Tue Nov 27 2018 Sujay G <gsujay@vmware.com> 1.2.5-2
40 42
 -   Added %check section
41 43
 *   Tue Aug 14 2018 Srinidhi Rao <srinidhir@vmware.com> 1.2.5-1
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Name: rubygem-unf
6 6
 Version:        0.1.4
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        This is a wrapper library to bring Unicode Normalization Form support to Ruby/JRuby.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -34,5 +34,7 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
34 34
 %{gemdir}
35 35
 
36 36
 %changelog
37
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 0.1.4-2
38
+-   rebuilt with ruby-2.7.1
37 39
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 0.1.4-1
38 40
 -   Initial build
... ...
@@ -3,8 +3,8 @@
3 3
 %global gem_name unf_ext
4 4
 
5 5
 Name: rubygem-unf_ext
6
-Version:        0.0.7.6
7
-Release:        2%{?dist}
6
+Version:        0.0.7.7
7
+Release:        1%{?dist}
8 8
 Summary:        Unicode Normalization Form support library for CRuby.
9 9
 Group:          Development/Libraries
10 10
 Vendor:         VMware, Inc.
... ...
@@ -12,7 +12,7 @@ Distribution:   Photon
12 12
 License:        MIT
13 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
14 14
 Source0:        https://rubygems.org/downloads/%{gem_name}-%{version}.gem
15
-%define sha1    unf_ext=e1d4eb2d5832e6c6f58c0384c3c33521042cc498
15
+%define sha1    unf_ext=d0d10680d5bb965d1186ccefb6c01a35e31c4a56
16 16
 BuildRequires:  ruby
17 17
 BuildRequires:  gmp-devel
18 18
 
... ...
@@ -32,6 +32,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
32 32
 %{gemdir}
33 33
 
34 34
 %changelog
35
+*   Thu Jul 16 2020 Gerrit Photon <photon-checkins@vmware.com> 0.0.7.7-1
36
+-   Automatic Version Bump
35 37
 *   Wed Sep 4 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 0.0.7.6-2
36 38
 -   Enabled build for non x86_64 build archs
37 39
 *   Thu Aug 22 2019 Stanislav Hadjiiski <hadjiiskis@vmware.com> 0.0.7.6-1
... ...
@@ -4,15 +4,15 @@
4 4
 
5 5
 Summary:        Unicode::DisplayWidth.
6 6
 Name:           rubygem-unicode-display_width
7
-Version:        1.4.0
8
-Release:        2%{?dist}
7
+Version:        1.7.0
8
+Release:        1%{?dist}
9 9
 Group:          Development/Languages
10 10
 License:        MIT
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 URL:            https://github.com/janlelis/unicode-display_width
14 14
 Source0:        http://rubygems.org/gems/unicode-display_width-%{version}.gem
15
-%define sha1    unicode-display_width=a00ac98ae5d5a065b9b12eb040a8ea792b7a8acc
15
+%define sha1    unicode-display_width=6d743a99b24181c979b99f09df161fb2a2d983bf
16 16
 BuildRequires:  ruby
17 17
 Requires:       ruby
18 18
 
... ...
@@ -37,6 +37,8 @@ rake test
37 37
 %{gemdir}
38 38
 
39 39
 %changelog
40
+*   Mon Jun 22 2020 Gerrit Photon <photon-checkins@vmware.com> 1.7.0-1
41
+-   Automatic Version Bump
40 42
 *   Thu Nov 22 2018 Sujay G <gsujay@vmware.com> 1.4.0-2
41 43
 -   Updated %check
42 44
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 1.4.0-1
... ...
@@ -4,9 +4,11 @@
4 4
 
5 5
 Name: rubygem-yajl-ruby
6 6
 Version:        1.4.1
7
-Release:        1%{?dist}
7
+Release:        2%{?dist}
8 8
 Summary:        Ruby C bindings to the excellent Yajl JSON stream-based parser library.
9 9
 Group:          Development/Languages
10
+Vendor:         VMware, Inc.
11
+Distribution:   Photon
10 12
 License:        MIT
11 13
 URL:            https://rubygems.org/gems/%{gem_name}/versions/%{version}
12 14
 Source0:        https://rubygems.org/downloads/yajl-ruby-%{version}.gem
... ...
@@ -30,6 +32,8 @@ gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
30 30
 %{gemdir}
31 31
 
32 32
 %changelog
33
+*   Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 1.4.1-2
34
+-   Rebuilt using ruby-2.7.1
33 35
 *   Tue Sep 11 2018 srinidhira0 <srinidhir@vmware.com> 1.4.1-1
34 36
 -   Update to version 1.4.1
35 37
 *   Tue Jul 24 2018 Srinidhi Rao <srinidhir@vmware.com> 1.4.0-1
... ...
@@ -1,22 +1,30 @@
1 1
 %global debug_package %{nil}
2 2
 %global gemdir %(IFS=: R=($(gem env gempath)); echo ${R[${#R[@]}-1]})
3 3
 %define gem_name zip
4
-Name: rubygem-zip
5
-Version: 2.0.2
6
-Release: 5%{?dist}
7
-Summary: Ruby library for reading and writing Zip files
8
-Group: Applications/Programming
9
-License: BSD
4
+
5
+Name:           rubygem-zip
6
+Version:        2.0.2
7
+Release:        6%{?dist}
8
+Summary:        Ruby library for reading and writing Zip files
9
+Group:          Applications/Programming
10
+License:        BSD
11
+Vendor:         VMware, Inc.
12
+Distribution:   Photon
10 13
 URL: https://rubygems.org/gems/%{gem_name}
11 14
 Source0: https://rubygems.org/downloads/zip-%{version}.gem
12 15
 %define sha1 zip=6fabc32da123f7013b2db804273df428a50bc6a4
16
+
13 17
 BuildRequires: ruby
14 18
 Requires: ruby
19
+
15 20
 %description
16 21
 Ruby library for reading and writing Zip files
22
+
17 23
 %prep
18 24
 %setup -q -c -T
25
+
19 26
 %build
27
+
20 28
 %install
21 29
 gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{SOURCE0}
22 30
 
... ...
@@ -30,6 +38,8 @@ rake test
30 30
 %{gemdir}
31 31
 
32 32
 %changelog
33
+* Wed Sep 02 2020 Sujay G <gsujay@vmware.com> 2.0.2-6
34
+- Rebuilt using ruby-2.7.1
33 35
 * Fri Jun 23 2017 Chang Lee <changlee@vmware.com> 2.0.2-5
34 36
 - Updated %check
35 37
 * Wed Jan 25 2017 Anish Swaminathan <anishs@vmware.com> 2.0.2-4