diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..69e5767 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/loofah-2.0.3.gem diff --git a/.rh-ror42-rubygem-loofah.metadata b/.rh-ror42-rubygem-loofah.metadata new file mode 100644 index 0000000..fad2347 --- /dev/null +++ b/.rh-ror42-rubygem-loofah.metadata @@ -0,0 +1 @@ +da00db084b21106056c7c09e8608392439db90ec SOURCES/loofah-2.0.3.gem diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/0001-Updating-test-to-support-libxml-2.9.3-behavior.patch b/SOURCES/0001-Updating-test-to-support-libxml-2.9.3-behavior.patch new file mode 100644 index 0000000..90f3fa2 --- /dev/null +++ b/SOURCES/0001-Updating-test-to-support-libxml-2.9.3-behavior.patch @@ -0,0 +1,25 @@ +From 9770574d0d2ede35e8a8f0fc17c91f6765f8c3a6 Mon Sep 17 00:00:00 2001 +From: Mike Dalessio +Date: Sun, 10 Jan 2016 23:55:25 -0500 +Subject: [PATCH] Updating test to support libxml 2.9.3 behavior + +Closes #96 +--- + test/assets/testdata_sanitizer_tests1.dat | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/test/assets/testdata_sanitizer_tests1.dat b/test/assets/testdata_sanitizer_tests1.dat +index a9efbbc..940ba7c 100644 +--- a/test/assets/testdata_sanitizer_tests1.dat ++++ b/test/assets/testdata_sanitizer_tests1.dat +@@ -345,6 +345,7 @@ + "name": "should_sanitize_script_tag_with_multiple_open_brackets", + "input": "<", + "output": "alert(\"XSS\");//", ++ "xhtml": "<<script>alert('XSS');//<</script>", + "rexml": "Ill-formed XHTML!" + }, + +-- +2.4.3 + diff --git a/SPECS/rubygem-loofah.spec b/SPECS/rubygem-loofah.spec new file mode 100644 index 0000000..d76de4d --- /dev/null +++ b/SPECS/rubygem-loofah.spec @@ -0,0 +1,130 @@ +%{?scl:%scl_package rubygem-%{gem_name}} +%{!?scl:%global pkg_name %{name}} + +%global gem_name loofah + +Name: %{?scl_prefix}rubygem-%{gem_name} +Version: 2.0.3 +Release: 3%{?dist} +Summary: Manipulate and transform HTML/XML documents and fragments +Group: Development/Languages +License: MIT +URL: https://github.com/flavorjones/loofah +Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem +Patch0001: 0001-Updating-test-to-support-libxml-2.9.3-behavior.patch + +Requires: %{?scl_prefix_ruby}ruby(release) +Requires: %{?scl_prefix_ruby}ruby(rubygems) +Requires: %{?scl_prefix}rubygem(nokogiri) >= 1.6.6.2 +BuildRequires: %{?scl_prefix_ruby}ruby(release) +BuildRequires: %{?scl_prefix_ruby}rubygems-devel +BuildRequires: %{?scl_prefix}rubygem(nokogiri) >= 1.6.6.2 +BuildRequires: %{?scl_prefix_ruby}rubygem(minitest) +BuildRequires: %{?scl_prefix}rubygem(rr) +BuildArch: noarch +Provides: %{?scl_prefix}rubygem(%{gem_name}) = %{version} + +%description +Loofah is a general library for manipulating and transforming HTML/XML +documents and fragments. It's built on top of Nokogiri and libxml2, so +it's fast and has a nice API. +Loofah excels at HTML sanitization (XSS prevention). It includes some +nice HTML sanitizers, which are based on HTML5lib's whitelist, so it +most likely won't make your codes less secure. + +%package doc +Summary: Documentation for %{pkg_name} +Group: Documentation +Requires: %{?scl_prefix}%{pkg_name} = %{version}-%{release} +BuildArch: noarch + +%description doc +Documentation for %{pkg_name} + +%prep +%{?scl:scl enable %{scl} - << \EOF} +gem unpack %{SOURCE0} +%{?scl:EOF} + +%autosetup -p 1 -D -T -n %{gem_name}-%{version} + +%{?scl:scl enable %{scl} - << \EOF} +gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec +%{?scl:EOF} + +# Remove developer-only files. +for f in .gemtest Gemfile Rakefile; do + rm $f + sed -i "s|\"$f\",*||g" %{gem_name}.gemspec +done + +%build +%{?scl:scl enable %{scl} - << \EOF} +gem build %{gem_name}.gemspec +%gem_install +%{?scl:EOF} + + +%install +mkdir -p %{buildroot}%{gem_dir} +cp -a .%{gem_dir}/* \ + %{buildroot}%{gem_dir}/ + +%check +pushd .%{gem_instdir} +%{?scl:scl enable %{scl} - << \EOF} + ruby -I"lib:test" -e \ + 'Dir.glob "./test/**/test_*.rb", &method(:require)' +%{?scl:EOF} +popd + +%files +%dir %{gem_instdir} +%license %{gem_instdir}/MIT-LICENSE.txt +%doc %{gem_instdir}/README.rdoc +%{gem_libdir} +%exclude %{gem_cache} +%{gem_spec} + +%files doc +%doc %{gem_docdir} +%doc %{gem_instdir}/Manifest.txt +%doc %{gem_instdir}/CHANGELOG.rdoc +%exclude %{gem_instdir}/benchmark +%exclude %{gem_instdir}/test + +%changelog +* Mon Feb 22 2016 Pavel Valena - 2.0.3-3 +- Add scl macros + +* Thu Feb 04 2016 Fedora Release Engineering - 2.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Jan 11 2016 Ken Dreyer - 2.0.3-1 +- Update to loofah 2.0.3 (rhbz#1256165) +- Use %%autosetup macro +- Drop macros for Fedora 20 (it is now EOL) +- Drop unneeded %%license definition + +* Thu Jun 18 2015 Fedora Release Engineering - 2.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon May 25 2015 Ken Dreyer - 2.0.2-1 +- Update to loofah 2.0.2 (rhbz#1218819) +- Drop patch to skip failing test (it works now, with Nokogiri 1.6.6.2) +- Drop Fedora 19 support +- Use %%license macro + +* Thu Sep 11 2014 Ken Dreyer - 2.0.1-1 +- Update to loofah 2.0.1 (RHBZ #1132898) +- Drop upstreamed RR patch + +* Sun Jun 08 2014 Fedora Release Engineering - 2.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Mon May 12 2014 Ken Dreyer - 2.0.0-1 +- Update to loofah 2.0.0 (RHBZ #1096760) +- Adjustments for https://fedoraproject.org/wiki/Changes/Ruby_2.1 + +* Sat Dec 28 2013 Ken Dreyer - 1.2.1-1 +- Initial package