From 4cf1b66bd3b959ed966d281e5ee65b8e327ed5ea9ee5ec377803790edd95d600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Sat, 4 May 2024 02:12:18 +0200 Subject: [PATCH] Sync from SUSE:SLFO:Main xmltoman revision 7249fd630c5f0f6fa3c4409dc46f8a96 --- .gitattributes | 23 +++++++++++++++++++ xmltoman-0.4.tar.gz | 3 +++ xmltoman.changes | 20 +++++++++++++++++ xmltoman.spec | 54 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 100 insertions(+) create mode 100644 .gitattributes create mode 100644 xmltoman-0.4.tar.gz create mode 100644 xmltoman.changes create mode 100644 xmltoman.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/xmltoman-0.4.tar.gz b/xmltoman-0.4.tar.gz new file mode 100644 index 0000000..a39c6fe --- /dev/null +++ b/xmltoman-0.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ab86b74fe364a866d84c14b20cbd42a09fa85c629deeff52376bbf890854feb +size 15136 diff --git a/xmltoman.changes b/xmltoman.changes new file mode 100644 index 0000000..4058ea8 --- /dev/null +++ b/xmltoman.changes @@ -0,0 +1,20 @@ +------------------------------------------------------------------- +Fri Feb 21 10:45:17 UTC 2020 - Antonio Larrosa + +- Add missing Requires: perl(XML::Parser) + +------------------------------------------------------------------- +Thu May 2 07:40:13 UTC 2019 - Martin Hauke + +- Fix Source-URL + +------------------------------------------------------------------- +Fri Apr 26 21:52:50 UTC 2019 - Martin Hauke + +- Specfile cleanup + +------------------------------------------------------------------- +Wed Mar 14 00:50:38 UTC 2018 - luc14n0@linuxmail.org + +- Initial openSUSE package, version 0.4. + diff --git a/xmltoman.spec b/xmltoman.spec new file mode 100644 index 0000000..da81e65 --- /dev/null +++ b/xmltoman.spec @@ -0,0 +1,54 @@ +# +# spec file for package xmltoman +# +# Copyright (c) 2020 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: xmltoman +Version: 0.4 +Release: 0 +Summary: Scripts to convert xml to man pages or html +License: GPL-2.0-only +Group: Development/Tools/Doc Generators +URL: https://github.com/Distrotech/xmltoman +Source: https://github.com/Distrotech/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz +BuildRequires: perl(XML::Parser) +Requires: perl(XML::Parser) +BuildArch: noarch + +%description +xmltoman and xmlmantohtml are two very simple scripts for converting xml +to groff or html. + +%prep +%setup -q + +%build +%make_build PREFIX=%{_prefix} + +%install +%make_install PREFIX=%{_prefix} + +%files +%license COPYING +%doc ChangeLog README +%{_bindir}/xmlmantohtml +%{_bindir}/xmltoman +%dir %{_datadir}/xmltoman +%{_datadir}/xmltoman/xmltoman.css +%{_datadir}/xmltoman/xmltoman.dtd +%{_datadir}/xmltoman/xmltoman.xsl + +%changelog