html-xml-utils/html-xml-utils.spec
Sebastian Wagner 609d6ee3fb - update to version 8.0:
* selector.c, selmatch.c: Also parse and process the experimental
  ":is()" and ":where()" pseudo-classes. Correct a bug in parsing
  comma-separated selectors. Correct a bug in esc() that caused an
  empty string to fail (e.g., in [alt=""]. (The function esc() is not
  used, but could be used when debugging.)
  * tests/select14.sh: Test ":empty" in combination with another
  pseudo-class.
  * Makefile.am: Added tests select26.sh, select27.sh, select28.sh,
  select29.sh and select30.sh
  * configure.ac: Added AC_SYS_LARGEFILE to enable seek() to seek
  large files and the off_t type to be 64 bits on older, 32-bit
  systems. Also check for limits.h.
  * hxselect.1: Noted the known bug that case-insensitive selectors
  (option -i) only work with ASCII characters.

OBS-URL: https://build.opensuse.org/package/show/utilities/html-xml-utils?expand=0&rev=13
2021-11-02 20:40:42 +00:00

55 lines
1.5 KiB
RPMSpec

#
# spec file for package html-xml-utils
#
# Copyright (c) 2021 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/
#
Name: html-xml-utils
Version: 8.0
Release: 0
Summary: A number of utilities for manipulating HTML and XML files
License: W3C
Group: Development/Languages/Other
URL: https://www.w3.org/Tools/HTML-XML-utils/
Source: https://www.w3.org/Tools/HTML-XML-utils/html-xml-utils-%{version}.tar.gz
BuildRequires: bison
BuildRequires: flex
BuildRequires: libcurl-devel
BuildRequires: libidn2-devel
%description
HTML-XML-utils provides a number of utilities for manipulating and
converting HTML and XML files in various ways.
%prep
%setup -q
chmod -x ChangeLog README
%build
%configure
make %{?_smp_mflags}
%install
%make_install
rm %{buildroot}%{_datadir}/doc/%{name}/COPYING
%files
%doc ChangeLog README
%license COPYING
%{_bindir}/*
%{_mandir}/man1/*.1*
%changelog