https://github.com/openSUSE/geekodoc/releases/tag/v0.9.9 * Geekodoc * Allow lowercase Values in format attribute (#29) * Add list elements in taskprerequisites (#25) * Novdoc * No changes OBS-URL: https://build.opensuse.org/package/show/Documentation:Tools/geekodoc?expand=0&rev=14
107 lines
3.1 KiB
RPMSpec
107 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package geekodoc
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: geekodoc
|
|
Version: 0.9.9
|
|
Release: 0
|
|
Summary: DocBook based RNG Schema for SUSE Documentation
|
|
License: GPL-3.0
|
|
Group: Productivity/Publishing/DocBook
|
|
Url: https://github.com/openSUSE/geekodoc/archive/%{name}-%{version}.tar.gz
|
|
Source: %{name}-%{version}.tar.gz
|
|
BuildRequires: docbook_5 >= 5.1
|
|
BuildRequires: make
|
|
BuildRequires: python3-rnginline
|
|
BuildRequires: python3-setuptools
|
|
BuildRequires: trang
|
|
Requires: sgml-skel >= 0.7
|
|
Requires(post): sgml-skel >= 0.7
|
|
Requires(postun): sgml-skel >= 0.7
|
|
Conflicts: suse-xsl-stylesheets < 2.0.6
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
GeekoDoc is a RELAX NG schema used for current SUSE documentation.
|
|
|
|
%package -n novdoc
|
|
Version: 1.0_%{version}
|
|
Release: 0
|
|
Summary: DocBook based Schema for older SUSE Documentation
|
|
Group: Productivity/Publishing/DocBook
|
|
Conflicts: suse-xsl-stylesheets < 2.0.6
|
|
|
|
%description -n novdoc
|
|
NovDoc is a DTD/RELAX NG schema used for older SUSE documentation.
|
|
|
|
%prep
|
|
%setup -q
|
|
[[ -d geekodoc/tests ]] && rm -rf geekodoc/tests
|
|
|
|
%build
|
|
touch geekodoc/rng/geekodoc5.rnc
|
|
# GeekoDoc
|
|
make %{?_smp_mflags} VERBOSE=1 -C geekodoc/rng
|
|
make %{?_smp_mflags} VERBOSE=1 -C geekodoc/rng geekodoc5-flat.rng geekodoc5.rng
|
|
|
|
# Novdoc
|
|
make %{?_smp_mflags} VERBOSE=1 -C novdoc/rng
|
|
|
|
%install
|
|
install -d %{buildroot}%{_datadir}/xml %{buildroot}%{_sysconfdir}/xml/catalog.d
|
|
cp -R geekodoc novdoc %{buildroot}%{_datadir}/xml/
|
|
cp catalog.d/* %{buildroot}%{_sysconfdir}/xml/catalog.d/
|
|
|
|
# Fixup catalog paths
|
|
sed -i'' 's#"\.\./#"%{_datadir}/xml/#' %{buildroot}%{_sysconfdir}/xml/catalog.d/*
|
|
|
|
%post
|
|
update-xml-catalog
|
|
|
|
%postun
|
|
update-xml-catalog
|
|
|
|
%post -n novdoc
|
|
update-xml-catalog
|
|
|
|
if [ ! -f %{_sysconfdir}/xml/suse-catalog.xml -a -x %{_bindir}/edit-xml-catalog ] ; then
|
|
# susexsl entry
|
|
edit-xml-catalog --group --catalog %{_sysconfdir}/xml/suse-catalog.xml \
|
|
--del suse_schemas
|
|
edit-xml-catalog --group --catalog %{_sysconfdir}/xml/suse-catalog.xml \
|
|
--del novdoc-1.0
|
|
fi
|
|
exit 0
|
|
|
|
%postun -n novdoc
|
|
update-xml-catalog
|
|
|
|
%files
|
|
%license LICENSE
|
|
%config %{_sysconfdir}/xml/catalog.d/geekodoc.xml
|
|
%{_datadir}/xml/geekodoc
|
|
%{_datadir}/xml/geekodoc/*
|
|
%exclude %{_datadir}/xml/geekodoc/tests/*
|
|
|
|
%files -n novdoc
|
|
%license LICENSE
|
|
%config %{_sysconfdir}/xml/catalog.d/novdoc.xml
|
|
%{_datadir}/xml/novdoc
|
|
%{_datadir}/xml/novdoc/*
|
|
|
|
%changelog
|