Compare commits
47 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1f3cfd59d3 | ||
|
|
1f297d749b | ||
|
|
8fc7300271 | ||
|
|
1d6602c7c5 | ||
|
|
39714be813 | ||
|
|
77b0ae3124 | ||
|
|
861f76c99b | ||
|
|
04bc982fb0 | ||
|
|
fddd250578 | ||
|
|
c6d039accb | ||
|
|
666a15fa95 | ||
|
|
9c9c219df7 | ||
|
|
8d17959621 | ||
|
|
152534a9d8 | ||
|
|
b3b9162ae9 | ||
|
|
03c47bea67 | ||
|
|
af9392fc7f | ||
|
|
23520e6409 | ||
|
|
20c6883e49 | ||
|
|
cae24dcf52 | ||
|
|
17242015ca | ||
|
|
c5c4c42268 | ||
|
|
1a4b47ff2a | ||
|
|
747ee2d93f | ||
|
|
43246b1956 | ||
|
|
57a43da04a | ||
|
|
16d4bc9090 | ||
|
|
e36905f46d | ||
|
|
6639fa3f0f | ||
|
|
0027aa639b |
||
|
|
6db1b109c7 | ||
|
|
2c3d706175 | ||
|
|
39a48ec539 |
||
|
|
1964d0352d | ||
|
|
64b148daca | ||
|
|
d474a7b8fa | ||
|
|
17ea9c99cc | ||
|
|
f2f2a32e7e | ||
|
|
c35001293e | ||
|
|
890bfeecca | ||
|
|
0f4968cb17 | ||
|
|
b1194bd128 | ||
|
|
04044ef194 | ||
|
|
59435f3fc0 | ||
|
|
b7cb4474af | ||
|
|
60c07ad416 | ||
|
|
a27dbecf2e |
5 changed files with 225 additions and 178 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
||||||
/redcarpet-2.1.1.gem
|
/redcarpet-*gem
|
||||||
|
/redcarpet-*-test-missing-files.tar.gz
|
||||||
|
|
|
||||||
35
redcarpet-create-missing-test-files.sh
Normal file
35
redcarpet-create-missing-test-files.sh
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
echo "$0 <VERSION>"
|
||||||
|
}
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -x
|
||||||
|
|
||||||
|
if [ $# -lt 1 ] ; then
|
||||||
|
usage
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
VERSION=$1
|
||||||
|
|
||||||
|
GEMNAME=redcarpet
|
||||||
|
TMPDIR=$(mktemp -d /var/tmp/${GEMNAME}-XXXXXX)
|
||||||
|
CURDIR=$(pwd)
|
||||||
|
GITTOPDIR=${GEMNAME}-${VERSION}
|
||||||
|
|
||||||
|
pushd $TMPDIR
|
||||||
|
|
||||||
|
git clone http://github.com/vmg/${GEMNAME} ${GITTOPDIR}
|
||||||
|
cd ${GEMNAME}-$VERSION
|
||||||
|
|
||||||
|
git checkout -b fedora-$VERSION v$VERSION || true
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
tar czf $CURDIR/${GEMNAME}-${VERSION}-test-missing-files.tar.gz \
|
||||||
|
${GITTOPDIR}/test/ \
|
||||||
|
|
||||||
|
popd
|
||||||
|
rm -rf $TMPDIR
|
||||||
|
|
||||||
|
|
@ -1,127 +0,0 @@
|
||||||
diff --git a/test/redcarpet_test.rb b/test/redcarpet_test.rb
|
|
||||||
index 70e40ea..67bea67 100644
|
|
||||||
--- a/test/redcarpet_test.rb
|
|
||||||
+++ b/test/redcarpet_test.rb
|
|
||||||
@@ -83,8 +83,7 @@ EOS
|
|
||||||
|
|
||||||
<p><script>BAD</script></p>
|
|
||||||
|
|
||||||
-<p><img src="/favicon.ico" />
|
|
||||||
-
|
|
||||||
+<p><img src="/favicon.ico" /></p>
|
|
||||||
EOE
|
|
||||||
|
|
||||||
markdown = render_with(@rndr[:escape_html], source)
|
|
||||||
@@ -93,7 +92,7 @@ EOE
|
|
||||||
|
|
||||||
def test_that_filter_html_works
|
|
||||||
markdown = render_with(@rndr[:no_html], 'Through <em>NO</em> <script>DOUBLE NO</script>')
|
|
||||||
- html_equal "<p>Through NO DOUBLE NO</p>", markdown
|
|
||||||
+ html_equal "<p>Through NO DOUBLE NO</p>\n", markdown
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_filter_html_doesnt_break_two_space_hard_break
|
|
||||||
@@ -141,21 +140,21 @@ class MarkdownTest < Test::Unit::TestCase
|
|
||||||
|
|
||||||
def test_that_simple_one_liner_goes_to_html
|
|
||||||
assert_respond_to @markdown, :render
|
|
||||||
- html_equal "<p>Hello World.</p>", @markdown.render("Hello World.")
|
|
||||||
+ html_equal "<p>Hello World.</p>\n", @markdown.render("Hello World.")
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_that_inline_markdown_goes_to_html
|
|
||||||
markdown = @markdown.render('_Hello World_!')
|
|
||||||
- html_equal "<p><em>Hello World</em>!</p>", markdown
|
|
||||||
+ html_equal "<p><em>Hello World</em>!</p>\n", markdown
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_that_inline_markdown_starts_and_ends_correctly
|
|
||||||
markdown = render_with({:no_intra_emphasis => true}, '_start _ foo_bar bar_baz _ end_ *italic* **bold** <a>_blah_</a>')
|
|
||||||
|
|
||||||
- html_equal "<p><em>start _ foo_bar bar_baz _ end</em> <em>italic</em> <strong>bold</strong> <a><em>blah</em></a></p>", markdown
|
|
||||||
+ html_equal "<p><em>start _ foo_bar bar_baz _ end</em> <em>italic</em> <strong>bold</strong> <a><em>blah</em></a></p>\n", markdown
|
|
||||||
|
|
||||||
markdown = @markdown.render("Run 'rake radiant:extensions:rbac_base:migrate'")
|
|
||||||
- html_equal "<p>Run 'rake radiant:extensions:rbac_base:migrate'</p>", markdown
|
|
||||||
+ html_equal "<p>Run 'rake radiant:extensions:rbac_base:migrate'</p>\n", markdown
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_that_urls_are_not_doubly_escaped
|
|
||||||
@@ -249,7 +248,7 @@ class MarkdownTest < Test::Unit::TestCase
|
|
||||||
|
|
||||||
def test_whitespace_after_urls
|
|
||||||
rd = render_with({:autolink => true}, "Japan: http://www.abc.net.au/news/events/japan-quake-2011/beforeafter.htm (yes, japan)")
|
|
||||||
- exp = %{<p>Japan: <a href="http://www.abc.net.au/news/events/japan-quake-2011/beforeafter.htm">http://www.abc.net.au/news/events/japan-quake-2011/beforeafter.htm</a> (yes, japan)</p>}
|
|
||||||
+ exp = %{<p>Japan: <a href="http://www.abc.net.au/news/events/japan-quake-2011/beforeafter.htm">http://www.abc.net.au/news/events/japan-quake-2011/beforeafter.htm</a> (yes, japan)</p>\n}
|
|
||||||
html_equal exp, rd
|
|
||||||
end
|
|
||||||
|
|
||||||
@@ -269,7 +268,7 @@ class MarkdownTest < Test::Unit::TestCase
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_infinite_loop_in_header
|
|
||||||
- html_equal @markdown.render(<<-header), "<h1>Body</h1>"
|
|
||||||
+ html_equal @markdown.render(<<-header), "<h1>Body</h1>\n"
|
|
||||||
######
|
|
||||||
#Body#
|
|
||||||
######
|
|
||||||
@@ -313,7 +312,7 @@ fenced
|
|
||||||
|
|
||||||
def test_that_headers_are_linkable
|
|
||||||
markdown = @markdown.render('### Hello [GitHub](http://github.com)')
|
|
||||||
- html_equal "<h3>Hello <a href=\"http://github.com\">GitHub</a></h3>", markdown
|
|
||||||
+ html_equal "<h3>Hello <a href=\"http://github.com\">GitHub</a></h3>\n", markdown
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_autolinking_with_ent_chars
|
|
||||||
@@ -338,7 +337,7 @@ class CustomRenderTest < Test::Unit::TestCase
|
|
||||||
|
|
||||||
def test_simple_overload
|
|
||||||
md = Redcarpet::Markdown.new(SimpleRender)
|
|
||||||
- html_equal "<p>This is <em class=\"cool\">just</em> a test</p>",
|
|
||||||
+ html_equal "<p>This is <em class=\"cool\">just</em> a test</p>\n",
|
|
||||||
md.render("This is *just* a test")
|
|
||||||
end
|
|
||||||
|
|
||||||
@@ -358,36 +357,36 @@ end
|
|
||||||
class RedcarpetCompatTest < Test::Unit::TestCase
|
|
||||||
def test_simple_compat_api
|
|
||||||
html = RedcarpetCompat.new("This is_just_a test").to_html
|
|
||||||
- html_equal "<p>This is<em>just</em>a test</p>", html
|
|
||||||
+ html_equal "<p>This is<em>just</em>a test</p>\n", html
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_compat_api_enables_extensions
|
|
||||||
html = RedcarpetCompat.new("This is_just_a test", :no_intra_emphasis).to_html
|
|
||||||
- html_equal "<p>This is_just_a test</p>", html
|
|
||||||
+ html_equal "<p>This is_just_a test</p>\n", html
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_compat_api_knows_fenced_code_extension
|
|
||||||
text = "```ruby\nx = 'foo'\n```"
|
|
||||||
html = RedcarpetCompat.new(text, :fenced_code).to_html
|
|
||||||
- html_equal "<pre><code class=\"ruby\">x = 'foo'\n</code></pre>", html
|
|
||||||
+ html_equal "<pre><code class=\"ruby\">x = 'foo'\n</code></pre>\n", html
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_compat_api_ignores_gh_blockcode_extension
|
|
||||||
text = "```ruby\nx = 'foo'\n```"
|
|
||||||
html = RedcarpetCompat.new(text, :fenced_code, :gh_blockcode).to_html
|
|
||||||
- html_equal "<pre><code class=\"ruby\">x = 'foo'\n</code></pre>", html
|
|
||||||
+ html_equal "<pre><code class=\"ruby\">x = 'foo'\n</code></pre>\n", html
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_compat_api_knows_no_intraemphasis_extension
|
|
||||||
html = RedcarpetCompat.new("This is_just_a test", :no_intraemphasis).to_html
|
|
||||||
- html_equal "<p>This is_just_a test</p>", html
|
|
||||||
+ html_equal "<p>This is_just_a test</p>\n", html
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_translate_outdated_extensions
|
|
||||||
# these extensions are no longer used
|
|
||||||
exts = [:gh_blockcode, :no_tables, :smart, :strict]
|
|
||||||
html = RedcarpetCompat.new('"TEST"', *exts).to_html
|
|
||||||
- html_equal "<p>"TEST"</p>", html
|
|
||||||
+ html_equal "<p>"TEST"</p>\n", html
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
@ -1,49 +1,45 @@
|
||||||
%global gem_name redcarpet
|
%global gem_name redcarpet
|
||||||
%global gem_extinstdir %{gem_extdir_mri}/lib
|
|
||||||
|
|
||||||
Summary: A fast, safe and extensible Markdown to (X)HTML parser
|
Name: rubygem-%{gem_name}
|
||||||
Name: rubygem-%{gem_name}
|
Version: 3.6.1
|
||||||
Version: 2.1.1
|
Release: 3%{?dist}
|
||||||
Release: 7%{?dist}
|
|
||||||
Group: Development/Languages
|
|
||||||
License: ISC
|
|
||||||
URL: http://github.com/tanoku/redcarpet
|
|
||||||
Source0: http://rubygems.org/gems/%{gem_name}-%{version}.gem
|
|
||||||
Patch0: rubygem-redcarpet-libxml2-2.8-fix.patch
|
|
||||||
Requires: ruby(release)
|
|
||||||
BuildRequires: rubygems-devel
|
|
||||||
BuildRequires: ruby-devel
|
|
||||||
BuildRequires: rubygem(minitest)
|
|
||||||
BuildRequires: rubygem(rake)
|
|
||||||
BuildRequires: rubygem(nokogiri)
|
|
||||||
BuildRequires: rubygem(rdoc)
|
|
||||||
|
|
||||||
Provides: rubygem(%{gem_name}) = %{version}
|
|
||||||
|
|
||||||
|
Summary: A fast, safe and extensible Markdown to (X)HTML parser
|
||||||
|
# SPDX confirmed
|
||||||
|
License: MIT
|
||||||
|
URL: http://github.com/vmg/redcarpet
|
||||||
|
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
||||||
|
Source1: %{gem_name}-%{version}-test-missing-files.tar.gz
|
||||||
|
# Source1 is created by $ bash %%SOURCE2 %%version
|
||||||
|
Source2: %{gem_name}-create-missing-test-files.sh
|
||||||
|
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: ruby(release)
|
||||||
|
BuildRequires: rubygems-devel
|
||||||
|
BuildRequires: ruby-devel
|
||||||
|
BuildRequires: rubygem(test-unit)
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A fast, safe and extensible Markdown to (X)HTML parser
|
A fast, safe and extensible Markdown to (X)HTML parser.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Documentation for %{name}
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
%package doc
|
%description doc
|
||||||
Summary: Documentation for %{name}
|
Documentation for %{name}.
|
||||||
Group: Documentation
|
|
||||||
Requires: %{name} = %{version}-%{release}
|
|
||||||
BuildArch: noarch
|
|
||||||
|
|
||||||
%description doc
|
|
||||||
Documentation for %{name}
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -c -T
|
%setup -q -n %{gem_name}-%{version} -b1
|
||||||
%gem_install -n %{SOURCE0}
|
cp -p ../%{gem_name}-%{version}.gemspec .
|
||||||
|
|
||||||
pushd .%{gem_instdir}
|
|
||||||
%patch0 -p1
|
|
||||||
popd
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
gem build ./%{gem_name}-%{version}.gemspec
|
||||||
|
%gem_install
|
||||||
|
|
||||||
|
# https://github.com/vmg/redcarpet/pull/503
|
||||||
|
chmod a-x .%{gem_instdir}/ext/redcarpet/html.c
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p %{buildroot}%{gem_dir}
|
mkdir -p %{buildroot}%{gem_dir}
|
||||||
|
|
@ -53,37 +49,178 @@ mkdir -p %{buildroot}%{_bindir}
|
||||||
cp -a ./%{_bindir}/* %{buildroot}%{_bindir}
|
cp -a ./%{_bindir}/* %{buildroot}%{_bindir}
|
||||||
chmod 755 %{buildroot}%{_bindir}/redcarpet
|
chmod 755 %{buildroot}%{_bindir}/redcarpet
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{gem_extinstdir}
|
mkdir -p %{buildroot}%{gem_extdir_mri}
|
||||||
mv %{buildroot}%{gem_instdir}/lib/redcarpet.so %{buildroot}%{gem_extinstdir}
|
cp -a .%{gem_extdir_mri}/{gem.build_complete,*.so} \
|
||||||
|
%{buildroot}%{gem_extdir_mri}/
|
||||||
|
|
||||||
# Fix permissions
|
# cleanups
|
||||||
chmod 644 ./%{gem_instdir}/COPYING
|
pushd %{buildroot}%{gem_instdir}
|
||||||
|
# Prevent dangling symlink in -debuginfo.
|
||||||
|
rm -rf \
|
||||||
|
Gemfile \
|
||||||
|
Rakefile \
|
||||||
|
ext/ \
|
||||||
|
test/ \
|
||||||
|
%{gem_name}.gemspec \
|
||||||
|
%{nil}
|
||||||
|
popd
|
||||||
|
rm -f %{buildroot}%{gem_cache}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
cp -a test/ .%{gem_instdir}/
|
||||||
|
|
||||||
pushd .%{gem_instdir}
|
pushd .%{gem_instdir}
|
||||||
ruby -rubygems -Ilib test/redcarpet_test.rb
|
env \
|
||||||
|
RUBYOPT=-Ilib:$(dirs +1)%{gem_extdir_mri}:test \
|
||||||
|
ruby -e 'Dir.glob "./test/**/*_test.rb", &method(:require)'
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%dir %{gem_instdir}
|
%dir %{gem_instdir}
|
||||||
|
%license %{gem_instdir}/COPYING
|
||||||
|
%doc %{gem_instdir}/README.markdown
|
||||||
|
|
||||||
%{_bindir}/redcarpet
|
%{_bindir}/redcarpet
|
||||||
|
|
||||||
%{gem_instdir}/bin
|
%{gem_instdir}/bin
|
||||||
%exclude %{gem_instdir}/ext
|
|
||||||
%{gem_libdir}
|
%{gem_libdir}
|
||||||
%{gem_extinstdir}
|
%{gem_extdir_mri}
|
||||||
%{gem_cache}
|
|
||||||
%{gem_spec}
|
%{gem_spec}
|
||||||
%doc %{gem_instdir}/COPYING
|
|
||||||
%doc %{gem_instdir}/README.markdown
|
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%{gem_instdir}/Rakefile
|
|
||||||
%{gem_instdir}/test
|
|
||||||
%{gem_instdir}/%{gem_name}.gemspec
|
|
||||||
%doc %{gem_docdir}
|
%doc %{gem_docdir}
|
||||||
|
%{gem_instdir}/CHANGELOG.md
|
||||||
|
%{gem_instdir}/CONTRIBUTING.md
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jan 08 2026 Vít Ondruch <vondruch@redhat.com> - 3.6.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_4.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 27 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.6.1-1
|
||||||
|
- 3.6.1
|
||||||
|
|
||||||
|
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.0-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 08 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.6.0-7
|
||||||
|
- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_3.4
|
||||||
|
|
||||||
|
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.0-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 03 2024 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.6.0-4
|
||||||
|
- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_3.3
|
||||||
|
|
||||||
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Apr 30 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.6.0-2
|
||||||
|
- 3.6.0
|
||||||
|
- License changed to MIT (SPDX confimred)
|
||||||
|
- CVE-2020-26298 is fixed in this version
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-25
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 04 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.3.2-24
|
||||||
|
- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_3.2
|
||||||
|
|
||||||
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-23
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 26 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.3.2-22
|
||||||
|
- F-36: rebuild against ruby31
|
||||||
|
- modernize spec file, especially move %%gem_install to %%build
|
||||||
|
to fix FTBFS with package_notes
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-21
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-20
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-19
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 6 2021 Vít Ondruch <vondruch@redhat.com> - 3.3.2-18
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.0
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-17
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-16
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 17 2020 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.3.2-15
|
||||||
|
- F-32: rebuild against ruby27
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 17 2019 Vít Ondruch <vondruch@redhat.com> - 3.3.2-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.6
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 3.3.2-9
|
||||||
|
- Rebuilt for switch to libxcrypt
|
||||||
|
|
||||||
|
* Thu Jan 04 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.3.2-8
|
||||||
|
- F-28: rebuild for ruby25
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 11 2017 Vít Ondruch <vondruch@redhat.com> - 3.3.2-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.4
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 11 2016 Vít Ondruch <vondruch@redhat.com> - 3.3.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.3
|
||||||
|
|
||||||
|
* Wed Jul 08 2015 Vít Ondruch <vondruch@redhat.com> - 3.3.2-1
|
||||||
|
- Update to Redcarpet 3.3.2.
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 16 2015 Vít Ondruch <vondruch@redhat.com> - 2.1.1-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.2
|
||||||
|
|
||||||
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Apr 17 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.1-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1
|
||||||
|
|
||||||
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
* Thu Mar 14 2013 Josef Stribny <jstribny@redhat.com> - 2.1.1-7
|
* Thu Mar 14 2013 Josef Stribny <jstribny@redhat.com> - 2.1.1-7
|
||||||
- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0
|
- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0
|
||||||
|
|
||||||
|
|
|
||||||
3
sources
3
sources
|
|
@ -1 +1,2 @@
|
||||||
9fb22c5a84d5068362d78c95505dd307 redcarpet-2.1.1.gem
|
SHA512 (redcarpet-3.6.1.gem) = 220452e147507604394ff5f3f2747cfc17da1e467bd59a54ed47ec46d2ffdaa1f505eb2a1c62723639d20f674e5e84014d55cf1b5d55b65c7ddee2d363a03812
|
||||||
|
SHA512 (redcarpet-3.6.1-test-missing-files.tar.gz) = 1af8292c4289092b8adf2252e0586d7ec70120058690072087a6bf942ab1d10a25062078df506a45a9d45fe3075ec7cff8a489aa8f06c6b8fb2d1bb51ceba441
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue