From 9d2262b5eb1f943bb2e65548fe0369821752f753 Mon Sep 17 00:00:00 2001 From: derks Date: Thu, 8 Apr 2010 16:11:26 +0000 Subject: [PATCH 01/46] Initial import. --- .cvsignore | 1 + import.log | 1 + rubygem-parseconfig.spec | 65 ++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 68 insertions(+) create mode 100644 import.log create mode 100644 rubygem-parseconfig.spec diff --git a/.cvsignore b/.cvsignore index e69de29..cbf30c6 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +parseconfig-0.5.2.gem diff --git a/import.log b/import.log new file mode 100644 index 0000000..0a509bb --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +rubygem-parseconfig-0_5_2-3_fc12:HEAD:rubygem-parseconfig-0.5.2-3.fc12.src.rpm:1270743073 diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec new file mode 100644 index 0000000..a32227f --- /dev/null +++ b/rubygem-parseconfig.spec @@ -0,0 +1,65 @@ +%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) +%global gemname parseconfig +%global geminstdir %{gemdir}/gems/%{gemname}-%{version} + +Summary: Ruby Configuration File Parser +Name: rubygem-%{gemname} +Version: 0.5.2 +Release: 3%{?dist} +Group: Development/Languages +License: MIT +URL: http://www.5dollarwhitebox.org +Source0: http://rubygems.org/downloads/%{gemname}-%{version}.gem +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires: rubygems, ruby(abi) >= 1.8 +BuildRequires: rubygems +BuildArch: noarch +Provides: rubygem(%{gemname}) = %{version} + +%description +ParseConfig is a Ruby class written to parse standard *nix style configuration +files in the format of 'param = value'. The key benefit is that your ruby +scripts can use the same configuration files of most unix/linux +applications. + +%prep + +%build +# pass, nothing to do + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}%{gemdir} +gem install --local --install-dir %{buildroot}%{gemdir} --force %{SOURCE0} + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%{gemdir}/cache/%{gemname}-%{version}.gem +%{gemdir}/specifications/%{gemname}-%{version}.gemspec +%dir %{geminstdir} +%dir %{geminstdir}/lib/ +%{geminstdir}/lib/parseconfig.rb +%doc %{gemdir}/doc/%{gemname}-%{version}/ +%doc %{geminstdir}/Changelog +%doc %{geminstdir}/LICENSE +%doc %{geminstdir}/README +%doc %{geminstdir}/demo.conf +%doc %{geminstdir}/demo.rb + +%changelog +* Mon Apr 05 2010 BJ Dierkes - 0.5.2-3 +- Removed comment from Source0, URL no longer changes +- Resolved duplicate file listing + +* Mon Apr 05 2010 BJ Dierkes - 0.5.2-2 +- Added geminstdir to file list +- Requires: ruby(abi) >= 1.8 +- Removed check +- Updated for current rubygems download url +- Removed unused macros ruby_sitelib, installroot + +* Sat Feb 27 2010 BJ Dierkes - 0.5.2-1 +- Initial spec, borrowed from rubygem-cobbler diff --git a/sources b/sources index e69de29..ff6e8fb 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +12907f53149caceaa64f17689eb21840 parseconfig-0.5.2.gem From ceddc3d619980e41d4a868a3a43517d1a324331d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 11:53:21 +0000 Subject: [PATCH 02/46] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 9940ad9..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: rubygem-parseconfig -# $Id$ -NAME := rubygem-parseconfig -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index 0a509bb..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -rubygem-parseconfig-0_5_2-3_fc12:HEAD:rubygem-parseconfig-0.5.2-3.fc12.src.rpm:1270743073 From 0d2519651166432d69649d39f0fb864c95adfeaa Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 9 Feb 2011 04:27:55 -0600 Subject: [PATCH 03/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index a32227f..6be17af 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -5,7 +5,7 @@ Summary: Ruby Configuration File Parser Name: rubygem-%{gemname} Version: 0.5.2 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Languages License: MIT URL: http://www.5dollarwhitebox.org @@ -50,6 +50,9 @@ rm -rf %{buildroot} %doc %{geminstdir}/demo.rb %changelog +* Wed Feb 09 2011 Fedora Release Engineering - 0.5.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Mon Apr 05 2010 BJ Dierkes - 0.5.2-3 - Removed comment from Source0, URL no longer changes - Resolved duplicate file listing From 2872e0dab8e7818d0a32585cce9bb7a576594dc9 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 21:18:49 -0600 Subject: [PATCH 04/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 6be17af..c07fc9b 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -5,7 +5,7 @@ Summary: Ruby Configuration File Parser Name: rubygem-%{gemname} Version: 0.5.2 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Languages License: MIT URL: http://www.5dollarwhitebox.org @@ -50,6 +50,9 @@ rm -rf %{buildroot} %doc %{geminstdir}/demo.rb %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 0.5.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Wed Feb 09 2011 Fedora Release Engineering - 0.5.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 46153b15ddec2040c6459f40f1888bcc4f1c4a42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ondruch?= Date: Fri, 3 Feb 2012 12:10:19 +0100 Subject: [PATCH 05/46] Rebuilt for Ruby 1.9.3. --- rubygem-parseconfig.spec | 46 +++++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index c07fc9b..37d3d29 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -1,20 +1,19 @@ -%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) -%global gemname parseconfig -%global geminstdir %{gemdir}/gems/%{gemname}-%{version} +%global gem_name parseconfig Summary: Ruby Configuration File Parser -Name: rubygem-%{gemname} +Name: rubygem-%{gem_name} Version: 0.5.2 -Release: 5%{?dist} +Release: 6%{?dist} Group: Development/Languages License: MIT URL: http://www.5dollarwhitebox.org -Source0: http://rubygems.org/downloads/%{gemname}-%{version}.gem +Source0: http://rubygems.org/downloads/%{gem_name}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: rubygems, ruby(abi) >= 1.8 -BuildRequires: rubygems +Requires: ruby(rubygems), ruby(abi) >= 1.9.1 +BuildRequires: rubygems-devel +BuildRequires: ruby-devel BuildArch: noarch -Provides: rubygem(%{gemname}) = %{version} +Provides: rubygem(%{gem_name}) = %{version} %description ParseConfig is a Ruby class written to parse standard *nix style configuration @@ -29,27 +28,30 @@ applications. %install rm -rf %{buildroot} -mkdir -p %{buildroot}%{gemdir} -gem install --local --install-dir %{buildroot}%{gemdir} --force %{SOURCE0} +mkdir -p %{buildroot}%{gem_dir} +gem install --local --install-dir %{buildroot}%{gem_dir} --force %{SOURCE0} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) -%{gemdir}/cache/%{gemname}-%{version}.gem -%{gemdir}/specifications/%{gemname}-%{version}.gemspec -%dir %{geminstdir} -%dir %{geminstdir}/lib/ -%{geminstdir}/lib/parseconfig.rb -%doc %{gemdir}/doc/%{gemname}-%{version}/ -%doc %{geminstdir}/Changelog -%doc %{geminstdir}/LICENSE -%doc %{geminstdir}/README -%doc %{geminstdir}/demo.conf -%doc %{geminstdir}/demo.rb +%{gem_cache} +%{gem_spec} +%dir %{gem_instdir} +%dir %{gem_libdir}/ +%{gem_libdir}/parseconfig.rb +%doc %{gem_docdir}/ +%doc %{gem_instdir}/Changelog +%doc %{gem_instdir}/LICENSE +%doc %{gem_instdir}/README +%doc %{gem_instdir}/demo.conf +%doc %{gem_instdir}/demo.rb %changelog +* Fri Feb 03 2012 Vít Ondruch - 0.5.2-6 +- Rebuilt for Ruby 1.9.3. + * Sat Jan 14 2012 Fedora Release Engineering - 0.5.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 306297f52230ca2416bfb5ce699d47c3c24626e3 Mon Sep 17 00:00:00 2001 From: BJ Dierkes Date: Tue, 12 Jun 2012 02:58:23 -0500 Subject: [PATCH 06/46] latest sources 1.0.2 --- rubygem-parseconfig.spec | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 37d3d29..8c3ed34 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,24 +2,22 @@ Summary: Ruby Configuration File Parser Name: rubygem-%{gem_name} -Version: 0.5.2 -Release: 6%{?dist} +Version: 1.0.2 +Release: 1%{?dist} Group: Development/Languages License: MIT -URL: http://www.5dollarwhitebox.org +URL: http://github.com/derks/ruby-parseconfig Source0: http://rubygems.org/downloads/%{gem_name}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: ruby(rubygems), ruby(abi) >= 1.9.1 -BuildRequires: rubygems-devel -BuildRequires: ruby-devel +Requires: ruby(rubygems), ruby(abi) >= 1.8.7 +BuildRequires: rubygems-devel +BuildRequires: ruby-devel BuildArch: noarch Provides: rubygem(%{gem_name}) = %{version} %description -ParseConfig is a Ruby class written to parse standard *nix style configuration -files in the format of 'param = value'. The key benefit is that your ruby -scripts can use the same configuration files of most unix/linux -applications. +ParseConfig provides simple parsing of standard configuration files in the +form of 'param = value'. It also supports nested [group] sections. %prep @@ -44,11 +42,12 @@ rm -rf %{buildroot} %doc %{gem_docdir}/ %doc %{gem_instdir}/Changelog %doc %{gem_instdir}/LICENSE -%doc %{gem_instdir}/README -%doc %{gem_instdir}/demo.conf -%doc %{gem_instdir}/demo.rb +%doc %{gem_instdir}/README.md %changelog +* Tue Jun 12 2012 BJ Dierkes - 1.0.2-1 +- Latest sources from upstream. + * Fri Feb 03 2012 Vít Ondruch - 0.5.2-6 - Rebuilt for Ruby 1.9.3. From 96b28dd744fba8c4f378093c3c1f2400e6373c1b Mon Sep 17 00:00:00 2001 From: BJ Dierkes Date: Tue, 12 Jun 2012 03:03:17 -0500 Subject: [PATCH 07/46] run tests in check --- rubygem-parseconfig.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 8c3ed34..d6d4fe3 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -10,7 +10,7 @@ URL: http://github.com/derks/ruby-parseconfig Source0: http://rubygems.org/downloads/%{gem_name}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(rubygems), ruby(abi) >= 1.8.7 -BuildRequires: rubygems-devel +BuildRequires: rubygems-devel, rubygem-rspec BuildRequires: ruby-devel BuildArch: noarch Provides: rubygem(%{gem_name}) = %{version} @@ -29,6 +29,9 @@ rm -rf %{buildroot} mkdir -p %{buildroot}%{gem_dir} gem install --local --install-dir %{buildroot}%{gem_dir} --force %{SOURCE0} +%check +bash utils/run-tests.sh + %clean rm -rf %{buildroot} @@ -47,6 +50,7 @@ rm -rf %{buildroot} %changelog * Tue Jun 12 2012 BJ Dierkes - 1.0.2-1 - Latest sources from upstream. +- Run tests in %%check * Fri Feb 03 2012 Vít Ondruch - 0.5.2-6 - Rebuilt for Ruby 1.9.3. From d7c117f53014673530286844da5c90b5feedfcd8 Mon Sep 17 00:00:00 2001 From: BJ Dierkes Date: Tue, 12 Jun 2012 03:04:43 -0500 Subject: [PATCH 08/46] commit sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index cbf30c6..5ca00d2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ parseconfig-0.5.2.gem +/parseconfig-1.0.2.gem diff --git a/sources b/sources index ff6e8fb..e187d10 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -12907f53149caceaa64f17689eb21840 parseconfig-0.5.2.gem +58dac67900241ae0760666237dc2386c parseconfig-1.0.2.gem From c5f6612844d8be4092b55ebcd96880d3acc47647 Mon Sep 17 00:00:00 2001 From: BJ Dierkes Date: Tue, 12 Jun 2012 03:05:39 -0500 Subject: [PATCH 09/46] only requires ruby >= 1.8.6 --- rubygem-parseconfig.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index d6d4fe3..36a4b12 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -9,7 +9,7 @@ License: MIT URL: http://github.com/derks/ruby-parseconfig Source0: http://rubygems.org/downloads/%{gem_name}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: ruby(rubygems), ruby(abi) >= 1.8.7 +Requires: ruby(rubygems), ruby(abi) >= 1.8.6 BuildRequires: rubygems-devel, rubygem-rspec BuildRequires: ruby-devel BuildArch: noarch From ddd738e1c8e0ea659ced52b2e4bf85ffc783bf85 Mon Sep 17 00:00:00 2001 From: BJ Dierkes Date: Tue, 12 Jun 2012 03:41:57 -0500 Subject: [PATCH 10/46] fix tests --- .gitignore | 1 + rubygem-parseconfig.spec | 16 +++++++++++++++- sources | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5ca00d2..fe97599 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ parseconfig-0.5.2.gem /parseconfig-1.0.2.gem +/rubygem-parseconfig-1.0.2-tests.tgz diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 36a4b12..d9a438f 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -8,6 +8,16 @@ Group: Development/Languages License: MIT URL: http://github.com/derks/ruby-parseconfig Source0: http://rubygems.org/downloads/%{gem_name}-%{version}.gem + +# For testing - per http://fedoraproject.org/wiki/Packaging:Ruby#Test_suites_not_included_in_the_package +# +# $ git clone git@github.com:derks/ruby-parseconfig.git +# $ cd ruby-parseconfig +# $ git checkout 1.0.2 +# $ tar -czf rubygem-parseconfig-1.0.2-tests.tgz tests/ +# +Source1: %{gem_name}-%{version}-tests.tgz + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(rubygems), ruby(abi) >= 1.8.6 BuildRequires: rubygems-devel, rubygem-rspec @@ -20,6 +30,8 @@ ParseConfig provides simple parsing of standard configuration files in the form of 'param = value'. It also supports nested [group] sections. %prep +%setup -q -D -T -n %{gem_name}-%{version} +tar -xzf %{SOURCE1} %build # pass, nothing to do @@ -30,7 +42,9 @@ mkdir -p %{buildroot}%{gem_dir} gem install --local --install-dir %{buildroot}%{gem_dir} --force %{SOURCE0} %check -bash utils/run-tests.sh +pushd tests + rspec test_parseconfig.rb +popd %clean rm -rf %{buildroot} diff --git a/sources b/sources index e187d10..73f1211 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -58dac67900241ae0760666237dc2386c parseconfig-1.0.2.gem +75e6f490e1653fcb27689f0331b7e39d rubygem-parseconfig-1.0.2-tests.tgz From 3ff8723d555b3afcc93aee1fe483fb597de871c4 Mon Sep 17 00:00:00 2001 From: BJ Dierkes Date: Tue, 12 Jun 2012 03:51:11 -0500 Subject: [PATCH 11/46] dont run test suit for now --- rubygem-parseconfig.spec | 18 +----------------- sources | 2 +- 2 files changed, 2 insertions(+), 18 deletions(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index d9a438f..eba7c45 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -8,16 +8,6 @@ Group: Development/Languages License: MIT URL: http://github.com/derks/ruby-parseconfig Source0: http://rubygems.org/downloads/%{gem_name}-%{version}.gem - -# For testing - per http://fedoraproject.org/wiki/Packaging:Ruby#Test_suites_not_included_in_the_package -# -# $ git clone git@github.com:derks/ruby-parseconfig.git -# $ cd ruby-parseconfig -# $ git checkout 1.0.2 -# $ tar -czf rubygem-parseconfig-1.0.2-tests.tgz tests/ -# -Source1: %{gem_name}-%{version}-tests.tgz - BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(rubygems), ruby(abi) >= 1.8.6 BuildRequires: rubygems-devel, rubygem-rspec @@ -30,7 +20,7 @@ ParseConfig provides simple parsing of standard configuration files in the form of 'param = value'. It also supports nested [group] sections. %prep -%setup -q -D -T -n %{gem_name}-%{version} +%setup -q -D -T -c -n %{gem_name}-%{version} tar -xzf %{SOURCE1} %build @@ -41,11 +31,6 @@ rm -rf %{buildroot} mkdir -p %{buildroot}%{gem_dir} gem install --local --install-dir %{buildroot}%{gem_dir} --force %{SOURCE0} -%check -pushd tests - rspec test_parseconfig.rb -popd - %clean rm -rf %{buildroot} @@ -64,7 +49,6 @@ rm -rf %{buildroot} %changelog * Tue Jun 12 2012 BJ Dierkes - 1.0.2-1 - Latest sources from upstream. -- Run tests in %%check * Fri Feb 03 2012 Vít Ondruch - 0.5.2-6 - Rebuilt for Ruby 1.9.3. diff --git a/sources b/sources index 73f1211..e187d10 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -75e6f490e1653fcb27689f0331b7e39d rubygem-parseconfig-1.0.2-tests.tgz +58dac67900241ae0760666237dc2386c parseconfig-1.0.2.gem From 7f6a3b6e21ff3f87c835b9d25124ae989c3774ae Mon Sep 17 00:00:00 2001 From: BJ Dierkes Date: Tue, 12 Jun 2012 03:52:56 -0500 Subject: [PATCH 12/46] dont run test suit for now --- rubygem-parseconfig.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index eba7c45..6984e39 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -20,8 +20,6 @@ ParseConfig provides simple parsing of standard configuration files in the form of 'param = value'. It also supports nested [group] sections. %prep -%setup -q -D -T -c -n %{gem_name}-%{version} -tar -xzf %{SOURCE1} %build # pass, nothing to do From 1aa61fc8528f6e1665d5068fb57714aa4df25c0c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 13:15:36 -0500 Subject: [PATCH 13/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 6984e39..185ba4b 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -3,7 +3,7 @@ Summary: Ruby Configuration File Parser Name: rubygem-%{gem_name} Version: 1.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://github.com/derks/ruby-parseconfig @@ -45,6 +45,9 @@ rm -rf %{buildroot} %doc %{gem_instdir}/README.md %changelog +* Sat Jul 21 2012 Fedora Release Engineering - 1.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Tue Jun 12 2012 BJ Dierkes - 1.0.2-1 - Latest sources from upstream. From 7dcb6888fda7e218c9734e25871f35b381c96973 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 16:57:57 -0600 Subject: [PATCH 14/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 185ba4b..cf1244d 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -3,7 +3,7 @@ Summary: Ruby Configuration File Parser Name: rubygem-%{gem_name} Version: 1.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: MIT URL: http://github.com/derks/ruby-parseconfig @@ -45,6 +45,9 @@ rm -rf %{buildroot} %doc %{gem_instdir}/README.md %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 1.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sat Jul 21 2012 Fedora Release Engineering - 1.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 4c289d243f95d0f8ac1ead1273b7632df26c98cb Mon Sep 17 00:00:00 2001 From: Bohuslav Kabrda Date: Tue, 19 Mar 2013 08:19:12 +0100 Subject: [PATCH 15/46] Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0 --- rubygem-parseconfig.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index cf1244d..e3cdffe 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -3,13 +3,13 @@ Summary: Ruby Configuration File Parser Name: rubygem-%{gem_name} Version: 1.0.2 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Languages License: MIT URL: http://github.com/derks/ruby-parseconfig Source0: http://rubygems.org/downloads/%{gem_name}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: ruby(rubygems), ruby(abi) >= 1.8.6 +Requires: ruby(rubygems), ruby(release) BuildRequires: rubygems-devel, rubygem-rspec BuildRequires: ruby-devel BuildArch: noarch @@ -27,7 +27,7 @@ form of 'param = value'. It also supports nested [group] sections. %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gem_dir} -gem install --local --install-dir %{buildroot}%{gem_dir} --force %{SOURCE0} +%gem_install -n %{SOURCE0} -d %{buildroot}%{gem_dir} %clean rm -rf %{buildroot} @@ -45,6 +45,9 @@ rm -rf %{buildroot} %doc %{gem_instdir}/README.md %changelog +* Tue Mar 19 2013 Bohuslav Kabrda - 1.0.2-4 +- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0 + * Thu Feb 14 2013 Fedora Release Engineering - 1.0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 88afe9b60862a851d35f1103cfc0c690fbddddac Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 09:36:49 -0500 Subject: [PATCH 16/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index e3cdffe..9fd6060 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -3,7 +3,7 @@ Summary: Ruby Configuration File Parser Name: rubygem-%{gem_name} Version: 1.0.2 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Languages License: MIT URL: http://github.com/derks/ruby-parseconfig @@ -45,6 +45,9 @@ rm -rf %{buildroot} %doc %{gem_instdir}/README.md %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 1.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Tue Mar 19 2013 Bohuslav Kabrda - 1.0.2-4 - Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0 From c35ccd2b800145edb5f5996960febdffad165064 Mon Sep 17 00:00:00 2001 From: BJ Dierkes Date: Thu, 27 Mar 2014 17:18:00 -0500 Subject: [PATCH 17/46] Latest sources 1.0.4 --- .gitignore | 1 + rubygem-parseconfig.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index fe97599..4bdbfaf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ parseconfig-0.5.2.gem /parseconfig-1.0.2.gem /rubygem-parseconfig-1.0.2-tests.tgz +/parseconfig-1.0.4.gem diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 9fd6060..4a547d8 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,8 +2,8 @@ Summary: Ruby Configuration File Parser Name: rubygem-%{gem_name} -Version: 1.0.2 -Release: 5%{?dist} +Version: 1.0.4 +Release: 1%{?dist} Group: Development/Languages License: MIT URL: http://github.com/derks/ruby-parseconfig @@ -45,6 +45,9 @@ rm -rf %{buildroot} %doc %{gem_instdir}/README.md %changelog +* Fri Mar 28 2014 BJ Dierkes - 1.0.4-1 +- Latest sources from upstream. + * Sun Aug 04 2013 Fedora Release Engineering - 1.0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild diff --git a/sources b/sources index e187d10..78d9389 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -58dac67900241ae0760666237dc2386c parseconfig-1.0.2.gem +e0d058cf3d28058cb07b7f951279c80c parseconfig-1.0.4.gem From 1e5e0d61fc5e00f9c9c3dbcbc2a610d62bd68c43 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 23:57:43 -0500 Subject: [PATCH 18/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 4a547d8..ba4cb9d 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -3,7 +3,7 @@ Summary: Ruby Configuration File Parser Name: rubygem-%{gem_name} Version: 1.0.4 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://github.com/derks/ruby-parseconfig @@ -45,6 +45,9 @@ rm -rf %{buildroot} %doc %{gem_instdir}/README.md %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 1.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Fri Mar 28 2014 BJ Dierkes - 1.0.4-1 - Latest sources from upstream. From 812027c340a218d1a3c9db5ffb1bf3e8e2f3c0b0 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 18 Jun 2015 23:35:24 +0000 Subject: [PATCH 19/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index ba4cb9d..b58f8f1 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -3,7 +3,7 @@ Summary: Ruby Configuration File Parser Name: rubygem-%{gem_name} Version: 1.0.4 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: MIT URL: http://github.com/derks/ruby-parseconfig @@ -45,6 +45,9 @@ rm -rf %{buildroot} %doc %{gem_instdir}/README.md %changelog +* Thu Jun 18 2015 Fedora Release Engineering - 1.0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 1.0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From bd044b9f5487b4f4271a708e847a1f729ec755c6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 23:04:36 +0000 Subject: [PATCH 20/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index b58f8f1..f082b05 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -3,7 +3,7 @@ Summary: Ruby Configuration File Parser Name: rubygem-%{gem_name} Version: 1.0.4 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Languages License: MIT URL: http://github.com/derks/ruby-parseconfig @@ -45,6 +45,9 @@ rm -rf %{buildroot} %doc %{gem_instdir}/README.md %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 1.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Jun 18 2015 Fedora Release Engineering - 1.0.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 2185f9dbbe4a4e67046f1c7a02c0635ad65db2f5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 12:34:49 +0000 Subject: [PATCH 21/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index f082b05..4834614 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -3,7 +3,7 @@ Summary: Ruby Configuration File Parser Name: rubygem-%{gem_name} Version: 1.0.4 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Languages License: MIT URL: http://github.com/derks/ruby-parseconfig @@ -45,6 +45,9 @@ rm -rf %{buildroot} %doc %{gem_instdir}/README.md %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 1.0.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Thu Feb 04 2016 Fedora Release Engineering - 1.0.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From e23e93029f781c2a68e52e56d66f40c8f0921ee6 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Mon, 13 Mar 2017 15:15:01 +0900 Subject: [PATCH 22/46] Rewrite spec, update to the modern style --- rubygem-parseconfig.spec | 82 +++++++++++++++++++++++++--------------- 1 file changed, 51 insertions(+), 31 deletions(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 4834614..3366880 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -1,50 +1,70 @@ -%global gem_name parseconfig +%global gem_name parseconfig -Summary: Ruby Configuration File Parser -Name: rubygem-%{gem_name} -Version: 1.0.4 -Release: 5%{?dist} -Group: Development/Languages -License: MIT -URL: http://github.com/derks/ruby-parseconfig -Source0: http://rubygems.org/downloads/%{gem_name}-%{version}.gem -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: ruby(rubygems), ruby(release) -BuildRequires: rubygems-devel, rubygem-rspec -BuildRequires: ruby-devel -BuildArch: noarch -Provides: rubygem(%{gem_name}) = %{version} +Name: rubygem-%{gem_name} +Version: 1.0.4 +Release: 6%{?dist} + +Summary: Config File Parser for Standard Unix/Linux Type Config Files +License: MIT +URL: http://github.com/datafolklabs/ruby-parseconfig/ +Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem + +BuildRequires: ruby(release) +BuildRequires: rubygems-devel +BuildArch: noarch %description -ParseConfig provides simple parsing of standard configuration files in the +ParseConfig provides simple parsing of standard configuration files in the form of 'param = value'. It also supports nested [group] sections. -%prep +%package doc +Summary: Documentation for %{name} +Group: Documentation +Requires: %{name} = %{version}-%{release} +BuildArch: noarch + +%description doc +Documentation for %{name}. + +%prep +gem unpack %{SOURCE0} +%setup -q -D -T -n %{gem_name}-%{version} +gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec %build -# pass, nothing to do +gem build %{gem_name}.gemspec +%gem_install %install -rm -rf %{buildroot} mkdir -p %{buildroot}%{gem_dir} -%gem_install -n %{SOURCE0} -d %{buildroot}%{gem_dir} +cp -a .%{gem_dir}/* \ + %{buildroot}%{gem_dir}/ -%clean -rm -rf %{buildroot} +pushd %{buildroot} +rm -rf \ + .%{gem_cache} \ + %{nil} + +%check +pushd .%{gem_instdir} + +popd %files -%defattr(-,root,root,-) -%{gem_cache} +%dir %{gem_instdir} +%doc %{gem_instdir}/Changelog +%doc %{gem_instdir}/README.md +%license %{gem_instdir}/LICENSE +%{gem_libdir}/ %{gem_spec} -%dir %{gem_instdir} -%dir %{gem_libdir}/ -%{gem_libdir}/parseconfig.rb -%doc %{gem_docdir}/ -%doc %{gem_instdir}/Changelog -%doc %{gem_instdir}/LICENSE -%doc %{gem_instdir}/README.md + +%files doc +%doc %{gem_docdir} %changelog +* Mon Mar 13 2017 Mamoru TASAKA - 1.0.4-6 +- Rewrite spec, update to the modern style + * Sat Feb 11 2017 Fedora Release Engineering - 1.0.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From d5e24621d67853943b712673b70a6e2d8d7c317d Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Mon, 13 Mar 2017 15:35:28 +0900 Subject: [PATCH 23/46] 1.0.8 --- .gitignore | 2 ++ parseconfig-create-test-suite.sh | 20 ++++++++++++++++++++ rubygem-parseconfig.spec | 18 ++++++++++++------ sources | 3 ++- 4 files changed, 36 insertions(+), 7 deletions(-) create mode 100644 parseconfig-create-test-suite.sh diff --git a/.gitignore b/.gitignore index 4bdbfaf..ebe21d5 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ parseconfig-0.5.2.gem /parseconfig-1.0.2.gem /rubygem-parseconfig-1.0.2-tests.tgz /parseconfig-1.0.4.gem +/parseconfig-1.0.8.gem +/rubygem-parseconfig-1.0.8-tests.tar.gz diff --git a/parseconfig-create-test-suite.sh b/parseconfig-create-test-suite.sh new file mode 100644 index 0000000..dc6d4a1 --- /dev/null +++ b/parseconfig-create-test-suite.sh @@ -0,0 +1,20 @@ +#!/bin/bash +set -x +set -e + +ORIGDIR=$(pwd) + +TMPDIR=$(mktemp -d /var/tmp/parseconfig-XXXXXX) +pushd $TMPDIR + +git clone https://github.com/datafolklabs/ruby-parseconfig.git +pushd ruby-parseconfig + +VERSION=$(cat lib/parseconfig.rb | sed -n -e "s|^.*Version.*=.*'\(.*\)'|\1|p") +TARGZ=rubygem-parseconfig-${VERSION}-tests.tar.gz + +tar czf $TARGZ tests/ +mv $TARGZ $ORIGDIR + +popd +rm -rf $TMPDIR diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 3366880..f0e1a1e 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -1,13 +1,16 @@ %global gem_name parseconfig Name: rubygem-%{gem_name} -Version: 1.0.4 -Release: 6%{?dist} +Version: 1.0.8 +Release: 1%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT URL: http://github.com/datafolklabs/ruby-parseconfig/ Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem +Source1: rubygem-parseconfig-%{version}-tests.tar.gz +# Source1 is created by Source2 +Source2: parseconfig-create-test-suite.sh BuildRequires: ruby(release) BuildRequires: rubygems-devel @@ -28,7 +31,7 @@ Documentation for %{name}. %prep gem unpack %{SOURCE0} -%setup -q -D -T -n %{gem_name}-%{version} +%setup -q -D -T -n %{gem_name}-%{version} -a 1 gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec %build @@ -46,9 +49,9 @@ rm -rf \ %{nil} %check -pushd .%{gem_instdir} - -popd +cd tests +ruby ./test_parseconfig.rb +cd .. %files %dir %{gem_instdir} @@ -62,6 +65,9 @@ popd %doc %{gem_docdir} %changelog +* Mon Mar 13 2017 Mamoru TASAKA - 1.0.8-1 +- 1.0.8 + * Mon Mar 13 2017 Mamoru TASAKA - 1.0.4-6 - Rewrite spec, update to the modern style diff --git a/sources b/sources index 78d9389..cc8b8b7 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ -e0d058cf3d28058cb07b7f951279c80c parseconfig-1.0.4.gem +SHA512 (parseconfig-1.0.8.gem) = 81180248b992288b6223bee6cbc04bd6d8f740e31e79b8fbb643e3ad296dc0a11e8acc523dea8097a9d1e4c25c46087d8780609e0e4916f90cbdf0132a31c1ae +SHA512 (rubygem-parseconfig-1.0.8-tests.tar.gz) = bb2a7393574289c0422cd1c518fdc43e0958d5f2db9b3d6ce273375dc6afc745fe1e22357981f38436bc2717d2f7876257bd8e6a7890c3381dedc87c11cada9e From c58156e2ae869cb7ed0d33e0ea9228ff8fea275b Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Mon, 13 Mar 2017 15:45:34 +0900 Subject: [PATCH 24/46] fix BR --- rubygem-parseconfig.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index f0e1a1e..760f471 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -13,6 +13,7 @@ Source1: rubygem-parseconfig-%{version}-tests.tar.gz Source2: parseconfig-create-test-suite.sh BuildRequires: ruby(release) +BuildRequires: rubygem(rspec) BuildRequires: rubygems-devel BuildArch: noarch From d115ba9aa59f376f522d60b0fb5af9dc1e95c198 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 17:32:54 +0000 Subject: [PATCH 25/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 760f471..b0c07ec 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.0.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -66,6 +66,9 @@ cd .. %doc %{gem_docdir} %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.0.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Mon Mar 13 2017 Mamoru TASAKA - 1.0.8-1 - 1.0.8 From a40e819877ebd2bad58f2dbd438b3c8f2c1c7fdd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 14:30:52 +0000 Subject: [PATCH 26/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index b0c07ec..7f0fd6b 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.0.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -66,6 +66,9 @@ cd .. %doc %{gem_docdir} %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 1.0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 1.0.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From ddaf3453feddc1bef6854ffd3b8abb1b270be6c6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 04:32:55 +0000 Subject: [PATCH 27/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 7f0fd6b..cd73f63 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.0.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -66,6 +66,9 @@ cd .. %doc %{gem_docdir} %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 1.0.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 1.0.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From b6ec5240f4b9de2803f1a17332b6ade37b060c04 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:23 +0100 Subject: [PATCH 28/46] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- rubygem-parseconfig.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index cd73f63..9431ca0 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -23,7 +23,6 @@ form of 'param = value'. It also supports nested [group] sections. %package doc Summary: Documentation for %{name} -Group: Documentation Requires: %{name} = %{version}-%{release} BuildArch: noarch From a79a174efe4f3053ad2ba6fc48cf207b6a27c2ac Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 2 Feb 2019 12:43:14 +0000 Subject: [PATCH 29/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 9431ca0..423a818 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.0.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -65,6 +65,9 @@ cd .. %doc %{gem_docdir} %changelog +* Sat Feb 02 2019 Fedora Release Engineering - 1.0.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 1.0.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 7df52afa66af011ad70a6c42f5785aff1b78a9b1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 19:49:29 +0000 Subject: [PATCH 30/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 423a818..e0f5312 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.0.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -65,6 +65,9 @@ cd .. %doc %{gem_docdir} %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 1.0.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Feb 02 2019 Fedora Release Engineering - 1.0.8-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 8323a049c5fd32b14dcb1e69741900624396e7e6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 19:02:34 +0000 Subject: [PATCH 31/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index e0f5312..ee7ba71 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.0.8 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -65,6 +65,9 @@ cd .. %doc %{gem_docdir} %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 1.0.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Jul 26 2019 Fedora Release Engineering - 1.0.8-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From f7b734a33cb560c91dc3bc00cd77a9f9d99c51d7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 06:48:46 +0000 Subject: [PATCH 32/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index ee7ba71..f4523ed 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.0.8 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -65,6 +65,9 @@ cd .. %doc %{gem_docdir} %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 1.0.8-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Thu Jan 30 2020 Fedora Release Engineering - 1.0.8-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 98e778c104ec7638590816a8db9e6eadfc6be742 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Tue, 12 Jan 2021 15:47:10 +0900 Subject: [PATCH 33/46] 1.1.0 --- .gitignore | 2 ++ parseconfig-create-test-suite.sh | 2 +- rubygem-parseconfig.spec | 7 +++++-- sources | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index ebe21d5..502675c 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ parseconfig-0.5.2.gem /parseconfig-1.0.4.gem /parseconfig-1.0.8.gem /rubygem-parseconfig-1.0.8-tests.tar.gz +/rubygem-parseconfig-1.1.0-tests.tar.gz +/parseconfig-1.1.0.gem diff --git a/parseconfig-create-test-suite.sh b/parseconfig-create-test-suite.sh index dc6d4a1..bd6c02b 100644 --- a/parseconfig-create-test-suite.sh +++ b/parseconfig-create-test-suite.sh @@ -10,7 +10,7 @@ pushd $TMPDIR git clone https://github.com/datafolklabs/ruby-parseconfig.git pushd ruby-parseconfig -VERSION=$(cat lib/parseconfig.rb | sed -n -e "s|^.*Version.*=.*'\(.*\)'|\1|p") +VERSION=$(cat lib/version.rb | sed -n -e "s|^.*VERSION[ \t]*=[ \t]*'\(.*\)'.*|\1|p") TARGZ=rubygem-parseconfig-${VERSION}-tests.tar.gz tar czf $TARGZ tests/ diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index f4523ed..840c2d5 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -1,8 +1,8 @@ %global gem_name parseconfig Name: rubygem-%{gem_name} -Version: 1.0.8 -Release: 8%{?dist} +Version: 1.1.0 +Release: 1%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -65,6 +65,9 @@ cd .. %doc %{gem_docdir} %changelog +* Tue Jan 12 2021 Mamoru TASAKA - 1.1.0-1 +- 1.1.0 + * Wed Jul 29 2020 Fedora Release Engineering - 1.0.8-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index cc8b8b7..05438b2 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (parseconfig-1.0.8.gem) = 81180248b992288b6223bee6cbc04bd6d8f740e31e79b8fbb643e3ad296dc0a11e8acc523dea8097a9d1e4c25c46087d8780609e0e4916f90cbdf0132a31c1ae -SHA512 (rubygem-parseconfig-1.0.8-tests.tar.gz) = bb2a7393574289c0422cd1c518fdc43e0958d5f2db9b3d6ce273375dc6afc745fe1e22357981f38436bc2717d2f7876257bd8e6a7890c3381dedc87c11cada9e +SHA512 (rubygem-parseconfig-1.1.0-tests.tar.gz) = 256a48293eb7ab3e380d057caad98db24b10357c1ca6a30b0b7ae190f05ec72cc542b1c8c875fd6cb37bcd8b71736f9e13ca6e6b6220444a10be7431e332e130 +SHA512 (parseconfig-1.1.0.gem) = d8fde7bd0936a82f9c0d2268993e243d7fa111144509b232b93eec1873f8e06bded64178684067c5518142223f69de49e1d8a1007282376a8227c2c2f9f8afa0 From 554ab34c6238e2947b931e2331acc0700f18da8a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 16:15:34 +0000 Subject: [PATCH 34/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 840c2d5..f911a56 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -65,6 +65,9 @@ cd .. %doc %{gem_docdir} %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jan 12 2021 Mamoru TASAKA - 1.1.0-1 - 1.1.0 From cb5767980e4ff0aa27cbc425dd8092243d6de476 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 12:26:06 +0000 Subject: [PATCH 35/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index f911a56..b5e8097 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -65,6 +65,9 @@ cd .. %doc %{gem_docdir} %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 1.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 1.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From e864933d48cdd6ce5aa4468a4281af7a3e2426b1 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Fri, 1 Oct 2021 13:17:36 +0900 Subject: [PATCH 36/46] moderize spec file --- rubygem-parseconfig.spec | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index b5e8097..1978af6 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -30,14 +30,15 @@ BuildArch: noarch Documentation for %{name}. %prep -gem unpack %{SOURCE0} -%setup -q -D -T -n %{gem_name}-%{version} -a 1 -gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec +%setup -q -n %{gem_name}-%{version} -a 1 +mv ../%{gem_name}-%{version}.gemspec . %build -gem build %{gem_name}.gemspec +gem build %{gem_name}-%{version}.gemspec %gem_install +cp -a ./tests .%{gem_instdir} + %install mkdir -p %{buildroot}%{gem_dir} cp -a .%{gem_dir}/* \ @@ -46,6 +47,7 @@ cp -a .%{gem_dir}/* \ pushd %{buildroot} rm -rf \ .%{gem_cache} \ + .%{gem_instdir}/tests/ \ %{nil} %check From d0eb32cbb91c079b7247498a32539c2d865bb851 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Fri, 1 Oct 2021 13:32:16 +0900 Subject: [PATCH 37/46] 1.1.2 --- rubygem-parseconfig.spec | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 1978af6..5cc2c1f 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -1,8 +1,8 @@ %global gem_name parseconfig Name: rubygem-%{gem_name} -Version: 1.1.0 -Release: 3%{?dist} +Version: 1.1.2 +Release: 1%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -33,6 +33,10 @@ Documentation for %{name}. %setup -q -n %{gem_name}-%{version} -a 1 mv ../%{gem_name}-%{version}.gemspec . +# 1.1.2 only +# https://github.com/datafolklabs/ruby-parseconfig/issues/39 +sed -i lib/version.rb -e "\@VERSION@s|'.*'|'%{version}'|" + %build gem build %{gem_name}-%{version}.gemspec %gem_install @@ -67,6 +71,9 @@ cd .. %doc %{gem_docdir} %changelog +* Fri Oct 1 2021 Mamoru TASAKA - 1.1.2-1 +- 1.1.2 + * Fri Jul 23 2021 Fedora Release Engineering - 1.1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 04bb2e2c7e3f1699d7a0346236e55c965d56d3ee Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Fri, 1 Oct 2021 13:32:37 +0900 Subject: [PATCH 38/46] upload source --- .gitignore | 2 ++ sources | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 502675c..27b117e 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ parseconfig-0.5.2.gem /rubygem-parseconfig-1.0.8-tests.tar.gz /rubygem-parseconfig-1.1.0-tests.tar.gz /parseconfig-1.1.0.gem +/parseconfig-1.1.2.gem +/rubygem-parseconfig-1.1.2-tests.tar.gz diff --git a/sources b/sources index 05438b2..74d5c48 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (rubygem-parseconfig-1.1.0-tests.tar.gz) = 256a48293eb7ab3e380d057caad98db24b10357c1ca6a30b0b7ae190f05ec72cc542b1c8c875fd6cb37bcd8b71736f9e13ca6e6b6220444a10be7431e332e130 -SHA512 (parseconfig-1.1.0.gem) = d8fde7bd0936a82f9c0d2268993e243d7fa111144509b232b93eec1873f8e06bded64178684067c5518142223f69de49e1d8a1007282376a8227c2c2f9f8afa0 +SHA512 (parseconfig-1.1.2.gem) = efd154d330ad2d11ae3afafcfd1b62ac0281b6d8ffbf7e8f41efe1ebda4980c09b4bd9e32296bb69da5558d39947852593a4837c9c37eb8cc7f31b8174f68c13 +SHA512 (rubygem-parseconfig-1.1.2-tests.tar.gz) = 2f9921d1245c54022d358dae0fd165fd8155e8ac3578bf53da190ca75049a475e6ada946eeb8829e5dc46a31e8e7bc5a98714cb2437112f90fffe0209d7c19d8 From 1ec2fa4a255007de35ad72e1cf13928bd2be56c5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 18:58:20 +0000 Subject: [PATCH 39/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 5cc2c1f..f183b02 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -71,6 +71,9 @@ cd .. %doc %{gem_docdir} %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 1.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Oct 1 2021 Mamoru TASAKA - 1.1.2-1 - 1.1.2 From e8ccb0ea9fd76c3d5fe0fd60a9756e5b780ac3b3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 02:00:40 +0000 Subject: [PATCH 40/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index f183b02..5461378 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -71,6 +71,9 @@ cd .. %doc %{gem_docdir} %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 1.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Fri Jan 21 2022 Fedora Release Engineering - 1.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From d6edc74fc94249d29ca296e9d9c70cb0826d0942 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 20 Jan 2023 20:52:05 +0000 Subject: [PATCH 41/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 5461378..594a9fb 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -71,6 +71,9 @@ cd .. %doc %{gem_docdir} %changelog +* Fri Jan 20 2023 Fedora Release Engineering - 1.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 1.1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 1c0f140d4b24f792ae1c80ab299692aed8a1d37b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jul 2023 18:06:52 +0000 Subject: [PATCH 42/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 594a9fb..5e6fd0c 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.1.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -71,6 +71,9 @@ cd .. %doc %{gem_docdir} %changelog +* Fri Jul 21 2023 Fedora Release Engineering - 1.1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Fri Jan 20 2023 Fedora Release Engineering - 1.1.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 8bfa63b73d98aaba5dbfe851b9ecc2c9bae7b62d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jan 2024 17:14:41 +0000 Subject: [PATCH 43/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 5e6fd0c..ac79d97 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.1.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -71,6 +71,9 @@ cd .. %doc %{gem_docdir} %changelog +* Fri Jan 26 2024 Fedora Release Engineering - 1.1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jul 21 2023 Fedora Release Engineering - 1.1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 122bafd6808060bd87166a63e320251a51440c9f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 19:42:57 +0000 Subject: [PATCH 44/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index ac79d97..6622331 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.1.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -71,6 +71,9 @@ cd .. %doc %{gem_docdir} %changelog +* Fri Jul 19 2024 Fedora Release Engineering - 1.1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Fri Jan 26 2024 Fedora Release Engineering - 1.1.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 7af47fdec3685ee7195b271180f3945f9c785af9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 23:44:49 +0000 Subject: [PATCH 45/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index 6622331..d2275eb 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.1.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -71,6 +71,9 @@ cd .. %doc %{gem_docdir} %changelog +* Sat Jan 18 2025 Fedora Release Engineering - 1.1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 19 2024 Fedora Release Engineering - 1.1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 7cacf51691fdc4b8cb0c6062addf7b34b8f8b82a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 12:39:13 +0000 Subject: [PATCH 46/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- rubygem-parseconfig.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rubygem-parseconfig.spec b/rubygem-parseconfig.spec index d2275eb..5b5b6ac 100644 --- a/rubygem-parseconfig.spec +++ b/rubygem-parseconfig.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Version: 1.1.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Config File Parser for Standard Unix/Linux Type Config Files License: MIT @@ -71,6 +71,9 @@ cd .. %doc %{gem_docdir} %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1.1.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sat Jan 18 2025 Fedora Release Engineering - 1.1.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild