Compare commits
No commits in common. "c10s" and "c8" have entirely different histories.
@ -1 +0,0 @@
|
|||||||
1
|
|
13
.gitignore
vendored
13
.gitignore
vendored
@ -1,11 +1,2 @@
|
|||||||
coderay-0.8.312.gem
|
SOURCES/coderay-1.1.2-tests.tgz
|
||||||
/coderay-0.9.7.gem
|
SOURCES/coderay-1.1.2.gem
|
||||||
/coderay-0.9.8.gem
|
|
||||||
/coderay-1.0.0.gem
|
|
||||||
/coderay-1.0.4.gem
|
|
||||||
/coderay-1.0.6.gem
|
|
||||||
/coderay-1.1.0.gem
|
|
||||||
/coderay-1.1.2-tests.tgz
|
|
||||||
/coderay-1.1.2.gem
|
|
||||||
/coderay-1.1.3-tests.txz
|
|
||||||
/coderay-1.1.3.gem
|
|
||||||
|
2
.rubygem-coderay.metadata
Normal file
2
.rubygem-coderay.metadata
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
6ee1b6f0ad525507e140da2bfe6f6ba35f2adbc6 SOURCES/coderay-1.1.2-tests.tgz
|
||||||
|
4a174a26a9fbb78ea68e5a7b02e1bbc6be001f5d SOURCES/coderay-1.1.2.gem
|
@ -1,30 +1,19 @@
|
|||||||
%global gem_name coderay
|
%global gem_name coderay
|
||||||
|
|
||||||
%if %{undefined rhel}
|
|
||||||
%bcond_without shoulda
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Name: rubygem-%{gem_name}
|
Name: rubygem-%{gem_name}
|
||||||
Version: 1.1.3
|
Version: 1.1.2
|
||||||
Release: 10%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Fast syntax highlighting for selected languages
|
Summary: Fast syntax highlighting for selected languages
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://coderay.rubychan.de
|
URL: http://coderay.rubychan.de
|
||||||
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
||||||
# git clone https://github.com/rubychan/coderay --no-checkout
|
# git clone https://github.com/rubychan/coderay.git && cd coderay
|
||||||
# cd coderay && git archive -v -o coderay-1.1.3-tests.txz v1.1.3 test spec
|
# git checkout v1.1.2 && tar czvf coderay-1.1.2-tests.tgz test/
|
||||||
Source1: %{gem_name}-%{version}-tests.txz
|
Source1: %{gem_name}-%{version}-tests.tgz
|
||||||
# Fix test suite for ruby 3.0 change for methods on subclass of Array
|
|
||||||
# https://github.com/rubychan/coderay/pull/255
|
|
||||||
Patch0: rubygem-coderay-1.1.3-fix-tests-Array-on-ruby-3.0.patch
|
|
||||||
BuildRequires: ruby(release)
|
BuildRequires: ruby(release)
|
||||||
BuildRequires: rubygems-devel
|
BuildRequires: rubygems-devel
|
||||||
BuildRequires: ruby >= 1.8.6
|
BuildRequires: ruby >= 1.8.6
|
||||||
BuildRequires: rubygem(test-unit)
|
BuildRequires: rubygem(test-unit)
|
||||||
BuildRequires: rubygem(rspec)
|
|
||||||
%if %{with shoulda}
|
|
||||||
BuildRequires: rubygem(shoulda-context)
|
|
||||||
%endif
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -41,11 +30,7 @@ BuildArch: noarch
|
|||||||
Documentation for %{name}.
|
Documentation for %{name}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{gem_name}-%{version} -b 1
|
%setup -q -n %{gem_name}-%{version}
|
||||||
|
|
||||||
pushd ..
|
|
||||||
%patch0 -p1
|
|
||||||
popd
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
gem build ../%{gem_name}-%{version}.gemspec
|
gem build ../%{gem_name}-%{version}.gemspec
|
||||||
@ -66,29 +51,12 @@ find %{buildroot}%{gem_instdir}/bin -type f | xargs chmod a+x
|
|||||||
|
|
||||||
%check
|
%check
|
||||||
pushd .%{gem_instdir}
|
pushd .%{gem_instdir}
|
||||||
cp -r %{_builddir}/spec .
|
tar xzvf %{SOURCE1}
|
||||||
cp -r %{_builddir}/test .
|
|
||||||
|
|
||||||
# Comment out simplecov.
|
|
||||||
for file in \
|
|
||||||
spec/spec_helper.rb \
|
|
||||||
test/executable/suite.rb \
|
|
||||||
test/functional/for_redcloth.rb \
|
|
||||||
test/functional/suite.rb \
|
|
||||||
test/unit/suite.rb; do
|
|
||||||
sed -i "/^require 'simplecov'/ s/^/#/" "${file}"
|
|
||||||
done
|
|
||||||
|
|
||||||
# See https://github.com/rubychan/coderay/blob/master/rake_tasks/test.rake
|
# See https://github.com/rubychan/coderay/blob/master/rake_tasks/test.rake
|
||||||
LANG=C.UTF-8
|
LANG=en_US.UTF-8
|
||||||
ruby ./test/functional/suite.rb
|
ruby ./test/functional/suite.rb
|
||||||
ruby ./test/functional/for_redcloth.rb
|
ruby ./test/functional/for_redcloth.rb
|
||||||
ruby ./test/unit/suite.rb
|
ruby ./test/unit/suite.rb
|
||||||
# This test depends on rubygem-shoulda-context.
|
|
||||||
%if %{with shoulda}
|
|
||||||
ruby ./test/executable/suite.rb
|
|
||||||
%endif
|
|
||||||
rspec spec
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -105,61 +73,6 @@ popd
|
|||||||
%doc %{gem_instdir}/README_INDEX.rdoc
|
%doc %{gem_instdir}/README_INDEX.rdoc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.1.3-10
|
|
||||||
- Bump release for October 2024 mass rebuild:
|
|
||||||
Resolves: RHEL-64018
|
|
||||||
|
|
||||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.1.3-9
|
|
||||||
- Bump release for June 2024 mass rebuild
|
|
||||||
|
|
||||||
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Mar 01 2021 Jun Aruga <jaruga@redhat.com> - 1.1.3-1
|
|
||||||
- update to new version
|
|
||||||
Resolves: rhbz#1842013
|
|
||||||
Resolves: rhbz#1923366
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.2-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.2-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.2-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.2-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Feb 14 2019 Jun Aruga <jaruga@redhat.com> - 1.1.2-5
|
|
||||||
- Remove extended Tokens#filter for Ruby 2.6 compatibility.
|
|
||||||
|
|
||||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.2-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Nov 18 2018 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.1.2-3
|
|
||||||
- Use C.UTF-8 locale
|
|
||||||
See https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot
|
|
||||||
|
|
||||||
* Thu Jul 26 2018 Jun Aruga <jaruga@redhat.com> - 1.1.2-2
|
* Thu Jul 26 2018 Jun Aruga <jaruga@redhat.com> - 1.1.2-2
|
||||||
- Change license and text, aligning with the output of gem2rpm.
|
- Change license and text, aligning with the output of gem2rpm.
|
||||||
|
|
@ -1,6 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-10
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
|
@ -1,8 +0,0 @@
|
|||||||
execute:
|
|
||||||
how: tmt
|
|
||||||
|
|
||||||
discover:
|
|
||||||
dist-git-source: true
|
|
||||||
dist-git-merge: true
|
|
||||||
how: fmf
|
|
||||||
dist-git-install-builddeps: true
|
|
@ -1,38 +0,0 @@
|
|||||||
diff --git a/test/unit/debug.rb b/test/unit/debug.rb
|
|
||||||
index 88baf56..b694f21 100644
|
|
||||||
--- a/test/unit/debug.rb
|
|
||||||
+++ b/test/unit/debug.rb
|
|
||||||
@@ -24,7 +24,8 @@ class DebugEncoderTest < Test::Unit::TestCase
|
|
||||||
[" \n", :space],
|
|
||||||
["[]", :method],
|
|
||||||
[:end_line, :head],
|
|
||||||
- ].flatten
|
|
||||||
+ ]
|
|
||||||
+ TEST_INPUT.flatten!
|
|
||||||
TEST_OUTPUT = <<-'DEBUG'.chomp
|
|
||||||
integer(10)operator((\\\))string<content(test)>head[
|
|
||||||
|
|
||||||
diff --git a/test/unit/statistic.rb b/test/unit/statistic.rb
|
|
||||||
index 1326dca..776774d 100644
|
|
||||||
--- a/test/unit/statistic.rb
|
|
||||||
+++ b/test/unit/statistic.rb
|
|
||||||
@@ -24,7 +24,8 @@ class StatisticEncoderTest < Test::Unit::TestCase
|
|
||||||
[" \n", :space],
|
|
||||||
["[]", :method],
|
|
||||||
[:end_line, :test],
|
|
||||||
- ].flatten
|
|
||||||
+ ]
|
|
||||||
+ TEST_INPUT.flatten!
|
|
||||||
TEST_OUTPUT = <<-'DEBUG'
|
|
||||||
|
|
||||||
Code Statistics
|
|
||||||
@@ -56,4 +57,4 @@ Token Types (7):
|
|
||||||
assert_equal TEST_OUTPUT, TEST_INPUT.statistic
|
|
||||||
end
|
|
||||||
|
|
||||||
-end
|
|
||||||
\ No newline at end of file
|
|
||||||
+end
|
|
||||||
--
|
|
||||||
2.29.2
|
|
||||||
|
|
2
sources
2
sources
@ -1,2 +0,0 @@
|
|||||||
SHA512 (coderay-1.1.3-tests.txz) = f0fbbbc674312f6e5e358af98c9b72d9ed8ca7df0dbdea696480a07aaf9bb019fc4fdeacc8546cb8baf299370df0f35bce7d61832f988161c1f058a371ac414b
|
|
||||||
SHA512 (coderay-1.1.3.gem) = 8da82467be341bdb358869c3ac63130e5e3ed314d0c9918ed26cf8a067eae149b4eb3358451c0a136b8e716304296a7dc4eb4cb385dd106f5cab5a4d1a2fe92f
|
|
@ -1,20 +0,0 @@
|
|||||||
test: |
|
|
||||||
cd $TMT_SOURCE_DIR
|
|
||||||
# Comment out simplecov.
|
|
||||||
for file in \
|
|
||||||
spec/spec_helper.rb \
|
|
||||||
test/executable/suite.rb \
|
|
||||||
test/functional/for_redcloth.rb \
|
|
||||||
test/functional/suite.rb \
|
|
||||||
test/unit/suite.rb; do
|
|
||||||
sed -i "/^require 'simplecov'/ s/^/#/" "${file}"
|
|
||||||
done
|
|
||||||
export LANG=C.UTF-8
|
|
||||||
ruby ./test/functional/suite.rb
|
|
||||||
# RedCloth is not installed and will be skipped anyway
|
|
||||||
# ruby ./test/functional/for_redcloth.rb
|
|
||||||
ruby ./test/unit/suite.rb
|
|
||||||
require:
|
|
||||||
- rubygem-coderay
|
|
||||||
tag:
|
|
||||||
- rhel-buildroot
|
|
Loading…
Reference in New Issue
Block a user