File php-pear-HTMLPurifier.spec of Package php-pear-HTMLPurifier
#
# spec file for package php-pear-HTMLPurifier
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2011, 2013 Weberhofer GmbH, Vienna, Austria
#
# 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/
#
%define pear_name HTMLPurifier
Name: php-pear-HTMLPurifier
Version: 4.14.0
Release: 0
Summary: Standards-compliant HTML filter library written in PHP
License: LGPL-2.1-or-later
Group: Development/Libraries/Other
URL: http://htmlpurifier.org/
Source0: http://htmlpurifier.org/get/%{pear_name}-%{version}.tgz
BuildRequires: php-devel
BuildRequires: php-pear-channel-htmlpurifier
BuildRequires: php7-pear
Requires: php-pear-channel-htmlpurifier
Requires: php-xmlreader
Requires: php-xmlwriter
Requires: php7-pear
Provides: php-pear(hp/%{pear_name}) = %{version}
Provides: php-pear(htmlpurifier.org/%{pear_name}) = %{version}
Provides: php-pear(htmlpurifier/%{pear_name}) = %{version}
# PHP5 last used in openSUSE:Leap_42.3
Provides: php5-pear-%{pear_name} = %{version}
Obsoletes: php5-pear-%{pear_name} < %{version}
Provides: php7-pear-%{pear_name} = %{version}
Obsoletes: php7-pear-%{pear_name} < %{version}
BuildArch: noarch
%description
HTML Purifier will not only remove all malicious code (better known as XSS)
with a thoroughly audited, secure yet permissive whitelist, it will also make
sure your documents are standards compliant, something only achievable with a
comprehensive knowledge of W3C's specifications. Tired of using BBCode due to
the current landscape of deficient or insecure HTML filters? Have a WYSIWYG
editor but never been able to use it? Looking for high-quality,
standards-compliant, open-source components for that application you're
building? HTML Purifier is for you!
%prep
%setup -q -n %{pear_name}-%{version}
# move package.xml when needed
[ -f ../package.xml ] && mv ../package.xml .
%build
%install
%{__pear} install --nodeps --offline --packagingroot %{buildroot} package.xml
install -D -m 0644 package.xml %{buildroot}%{php_pearxmldir}/%{pear_name}.xml
%{php_pear_gen_filelist}
%post
if [ "$1" = "1" ]; then
# on "rpm -ivh"
%{__pear} install --nodeps --soft --force --register-only %{php_pearxmldir}/%{pear_name}.xml || :
fi
if [ "$1" = "2" ]; then
# on "rpm -Uvh"
%{__pear} upgrade --offline --register-only %{php_pearxmldir}/%{pear_name}.xml || :
fi
%postun
if [ "$1" = "0" ]; then
# on "rpm -e"
%{__pear} uninstall --nodeps --ignore-errors --register-only pear.php.net/%{pear_name} || :
fi
%files -f %{name}.files
%docdir %{pear_docdir}
%exclude %{pear_metadir}/.??*
%exclude %{pear_testdir}
%changelog