Sync from SUSE:ALP:Source:Standard:1.0 rubygem-nokogiri revision 9a42e8d6c44fbdffe4dc28ddb2d859ce
This commit is contained in:
commit
008be9a0a3
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
99
gem2rpm.yml
Normal file
99
gem2rpm.yml
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
# ---
|
||||||
|
# ## used by gem2rpm
|
||||||
|
# :summary: this is a custom summary
|
||||||
|
# ## used by gem2rpm
|
||||||
|
# :description: |-
|
||||||
|
# this is a custom description
|
||||||
|
#
|
||||||
|
# it can be multiline
|
||||||
|
# ## used by gem2rpm
|
||||||
|
# :license: MIT or Ruby
|
||||||
|
# ## used by gem2rpm and gem_packages
|
||||||
|
# :version_suffix: '-1.10'
|
||||||
|
# ## used by gem2rpm and gem_packages
|
||||||
|
# :disable_docs: true
|
||||||
|
# ## used by gem2rpm
|
||||||
|
# :disable_automatic_rdoc_dep: true
|
||||||
|
# ## used by gem2rpm
|
||||||
|
:preamble: |-
|
||||||
|
%if 0%{?suse_version} == 1500
|
||||||
|
%define rb_build_versions ruby31 ruby27
|
||||||
|
%define rb_build_ruby_abis ruby:3.1.0 ruby:2.7.0
|
||||||
|
%endif
|
||||||
|
BuildRequires: %{rubygem mini_portile2 >= 2.8}
|
||||||
|
BuildRequires: %{rubygem openssl}
|
||||||
|
BuildRequires: %{rubygem pkg-config}
|
||||||
|
BuildRequires: libxml2-devel >= 2.6.21
|
||||||
|
BuildRequires: libxslt-devel
|
||||||
|
# BuildRequires: foobar
|
||||||
|
# Requires: foobar
|
||||||
|
# ## used by gem2rpm
|
||||||
|
# :patches:
|
||||||
|
# no-more-mini_portile.patch: -p0
|
||||||
|
:sources:
|
||||||
|
- rubygem-nokogiri-rpmlintrc
|
||||||
|
# - foo.desktop
|
||||||
|
# - bar.desktop
|
||||||
|
# :gem_install_args: '....'
|
||||||
|
# ## used by gem2rpm
|
||||||
|
:pre_install: |-
|
||||||
|
%gem_unpack
|
||||||
|
perl -p -i.back -e 's/.*mini_portile.*//g' %{mod_full_name}.gemspec
|
||||||
|
diff -urN %{mod_full_name}.gemspec{.back,} ||:
|
||||||
|
rm -f %{mod_full_name}.gemspec.back
|
||||||
|
|
||||||
|
MINI_PORTILE2_VERSION="2.8.2"
|
||||||
|
|
||||||
|
if grep -q "~> ${MINI_PORTILE2_VERSION}" ext/nokogiri/extconf.rb ; then
|
||||||
|
perl -p -i.back -e 's/~> ${MINI_PORTILE2_VERSION}/>= ${MINI_PORTILE2_VERSION}/g' ext/nokogiri/extconf.rb
|
||||||
|
diff -urN ext/nokogiri/extconf.rb{.back,} ||:
|
||||||
|
rm -f ext/nokogiri/extconf.rb.back
|
||||||
|
else
|
||||||
|
echo "Check which version of mini_portile2 we need to build nokogiri now"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
find -type f -print0 | xargs -0 touch -r %{S:0}
|
||||||
|
%gem_build
|
||||||
|
cd ..
|
||||||
|
export NOKOGIRI_USE_SYSTEM_LIBRARIES=1
|
||||||
|
:post_install: |-
|
||||||
|
rm -rvf %{buildroot}%{_libdir}/ruby/gems/*/gems/%{mod_full_name}/ports
|
||||||
|
# %if 0%{?use_system_libev}
|
||||||
|
# export USE_VENDORED_LIBEV="no"
|
||||||
|
# %endif
|
||||||
|
# ## used by gem2rpm
|
||||||
|
# :post_install: |-
|
||||||
|
# # delete custom files here or do other fancy stuff
|
||||||
|
# install -D -m 0644 %{S:1} %{buildroot}%{_bindir}/gem2rpm-opensuse
|
||||||
|
# ## used by gem2rpm
|
||||||
|
# :testsuite_command: |-
|
||||||
|
# (pushd %{buildroot}%{gem_base}/gems/%{mod_full_name} && rake test)
|
||||||
|
# ## used by gem2rpm
|
||||||
|
# :filelist: |-
|
||||||
|
# /usr/bin/gem2rpm-opensuse
|
||||||
|
# ## used by gem2rpm
|
||||||
|
# :scripts:
|
||||||
|
# :post: |-
|
||||||
|
# /bin/echo foo
|
||||||
|
# ## used by gem_packages
|
||||||
|
# :main:
|
||||||
|
# :preamble: |-
|
||||||
|
# Requires: util-linux
|
||||||
|
# Recommends: pwgen
|
||||||
|
# :filelist: |-
|
||||||
|
# /usr/bin/gem2rpm-opensuse
|
||||||
|
# ## used by gem_packages
|
||||||
|
# :custom:
|
||||||
|
# apache:
|
||||||
|
# :preamble: |-
|
||||||
|
# Requires: .....
|
||||||
|
# :filelist: |-
|
||||||
|
# /etc/apache2/conf.d/passenger.conf
|
||||||
|
# :summary: Custom summary is optional
|
||||||
|
# :description: |-
|
||||||
|
# Custom description is optional
|
||||||
|
#
|
||||||
|
# bar
|
||||||
|
# :post: |-
|
||||||
|
# /bin/echo foo
|
||||||
|
#
|
BIN
nokogiri-1.15.5.gem
(Stored with Git LFS)
Normal file
BIN
nokogiri-1.15.5.gem
(Stored with Git LFS)
Normal file
Binary file not shown.
1
rubygem-nokogiri-rpmlintrc
Normal file
1
rubygem-nokogiri-rpmlintrc
Normal file
@ -0,0 +1 @@
|
|||||||
|
addFilter("devel-file-in-non-devel-package")
|
2385
rubygem-nokogiri.changes
Normal file
2385
rubygem-nokogiri.changes
Normal file
File diff suppressed because it is too large
Load Diff
100
rubygem-nokogiri.spec
Normal file
100
rubygem-nokogiri.spec
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
#
|
||||||
|
# spec file for package rubygem-nokogiri
|
||||||
|
#
|
||||||
|
# Copyright (c) 2023 SUSE LLC
|
||||||
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
|
||||||
|
# All sections marked as MANUAL, license headers, summaries and descriptions
|
||||||
|
# can be maintained in that file. Please consult this file before editing any
|
||||||
|
# of those fields
|
||||||
|
#
|
||||||
|
|
||||||
|
Name: rubygem-nokogiri
|
||||||
|
Version: 1.15.5
|
||||||
|
Release: 0
|
||||||
|
%define mod_name nokogiri
|
||||||
|
%define mod_full_name %{mod_name}-%{version}
|
||||||
|
# MANUAL
|
||||||
|
%if 0%{?suse_version} == 1500
|
||||||
|
%define rb_build_versions ruby31 ruby27
|
||||||
|
%define rb_build_ruby_abis ruby:3.1.0 ruby:2.7.0
|
||||||
|
%endif
|
||||||
|
BuildRequires: %{rubygem mini_portile2 >= 2.8}
|
||||||
|
BuildRequires: %{rubygem openssl}
|
||||||
|
BuildRequires: %{rubygem pkg-config}
|
||||||
|
BuildRequires: libxml2-devel >= 2.6.21
|
||||||
|
BuildRequires: libxslt-devel
|
||||||
|
# /MANUAL
|
||||||
|
BuildRequires: ruby-macros >= 5
|
||||||
|
BuildRequires: %{rubydevel >= 2.7.0}
|
||||||
|
BuildRequires: %{rubygem gem2rpm}
|
||||||
|
BuildRequires: %{rubygem rdoc > 3.10}
|
||||||
|
BuildRequires: update-alternatives
|
||||||
|
URL: https://nokogiri.org
|
||||||
|
Source: https://rubygems.org/gems/%{mod_full_name}.gem
|
||||||
|
Source1: rubygem-nokogiri-rpmlintrc
|
||||||
|
Source2: gem2rpm.yml
|
||||||
|
Summary: Nokogiri (鋸) makes it easy and painless to work with XML and HTML
|
||||||
|
License: MIT
|
||||||
|
PreReq: update-alternatives
|
||||||
|
|
||||||
|
%description
|
||||||
|
Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.
|
||||||
|
It provides a
|
||||||
|
sensible, easy-to-understand API for reading, writing, modifying, and querying
|
||||||
|
documents. It is
|
||||||
|
fast and standards-compliant by relying on native parsers like libxml2,
|
||||||
|
libgumbo, or xerces.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
|
||||||
|
%build
|
||||||
|
|
||||||
|
%install
|
||||||
|
# MANUAL
|
||||||
|
%gem_unpack
|
||||||
|
perl -p -i.back -e 's/.*mini_portile.*//g' %{mod_full_name}.gemspec
|
||||||
|
diff -urN %{mod_full_name}.gemspec{.back,} ||:
|
||||||
|
rm -f %{mod_full_name}.gemspec.back
|
||||||
|
|
||||||
|
MINI_PORTILE2_VERSION="2.8.2"
|
||||||
|
|
||||||
|
if grep -q "~> ${MINI_PORTILE2_VERSION}" ext/nokogiri/extconf.rb ; then
|
||||||
|
perl -p -i.back -e 's/~> ${MINI_PORTILE2_VERSION}/>= ${MINI_PORTILE2_VERSION}/g' ext/nokogiri/extconf.rb
|
||||||
|
diff -urN ext/nokogiri/extconf.rb{.back,} ||:
|
||||||
|
rm -f ext/nokogiri/extconf.rb.back
|
||||||
|
else
|
||||||
|
echo "Check which version of mini_portile2 we need to build nokogiri now"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
find -type f -print0 | xargs -0 touch -r %{S:0}
|
||||||
|
%gem_build
|
||||||
|
cd ..
|
||||||
|
export NOKOGIRI_USE_SYSTEM_LIBRARIES=1
|
||||||
|
# /MANUAL
|
||||||
|
%gem_install \
|
||||||
|
--symlink-binaries \
|
||||||
|
--doc-files="LICENSE.md README.md" \
|
||||||
|
-f
|
||||||
|
%gem_cleanup
|
||||||
|
# MANUAL
|
||||||
|
rm -rvf %{buildroot}%{_libdir}/ruby/gems/*/gems/%{mod_full_name}/ports
|
||||||
|
# /MANUAL
|
||||||
|
|
||||||
|
%gem_packages
|
||||||
|
|
||||||
|
%changelog
|
Loading…
Reference in New Issue
Block a user