From 56c395d799656f934ee8e697000178f2d3226442 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Nov 28 2020 22:08:36 +0000 Subject: import gl-manpages-1.1-15.20161227.el8 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a421468 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +SOURCES/gl-manpages-1.0.1.tar.bz2 +SOURCES/gl-manpages-1.1-20161227.tar.xz +SOURCES/mathml2.tgz diff --git a/.gl-manpages.metadata b/.gl-manpages.metadata new file mode 100644 index 0000000..6c016f4 --- /dev/null +++ b/.gl-manpages.metadata @@ -0,0 +1,3 @@ +dc94176431df6ba06e94bca12b4c7b4a833b853c SOURCES/gl-manpages-1.0.1.tar.bz2 +077dea3190696c0709a0f13aeb2e64447e113ac8 SOURCES/gl-manpages-1.1-20161227.tar.xz +3cd9b1db626259756215e8aa92f70feff4c77116 SOURCES/mathml2.tgz diff --git a/SOURCES/dbmathml.dtd b/SOURCES/dbmathml.dtd new file mode 100644 index 0000000..6c4dbd7 --- /dev/null +++ b/SOURCES/dbmathml.dtd @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + +%docbook; + + + + + + + + +%mathml; + + + diff --git a/SOURCES/make-gl-man-snapshot.sh b/SOURCES/make-gl-man-snapshot.sh new file mode 100644 index 0000000..c66ea96 --- /dev/null +++ b/SOURCES/make-gl-man-snapshot.sh @@ -0,0 +1,9 @@ +#!/bin/bash +TODAY=`date +%Y%m%d` +DIR=gl-manpages-1.1-$TODAY +mkdir -p $DIR +for MAN in man4 man3 man2 ; do + svn co --username anonymous --password anonymous https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/docs/$MAN/ $DIR/$MAN --depth immediates +done +find $DIR -name .svn | xargs rm -rf +tar cJf $DIR.tar.xz $DIR diff --git a/SOURCES/metainfo.xsl b/SOURCES/metainfo.xsl new file mode 100644 index 0000000..eb38dfa --- /dev/null +++ b/SOURCES/metainfo.xsl @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + consortium + opengl.org + + + + + + manual + OpenGL Manual + + + + + diff --git a/SPECS/gl-manpages.spec b/SPECS/gl-manpages.spec new file mode 100644 index 0000000..ec4e6e3 --- /dev/null +++ b/SPECS/gl-manpages.spec @@ -0,0 +1,136 @@ +%global codate 20161227 + +Name: gl-manpages +Version: 1.1 +Release: 15.%{codate}%{?dist} +Summary: OpenGL manpages + +License: MIT and Open Publication +URL: http://www.opengl.org/wiki/Getting_started/XML_Toolchain_and_Man_Pages +# see Source1 +Source0: gl-manpages-%{version}-%{codate}.tar.xz +Source1: make-gl-man-snapshot.sh +# FIXME: Bundle mathml and the Oasis dbmathl until they are packaged +Source2: http://www.oasis-open.org/docbook/xml/mathml/1.1CR1/dbmathml.dtd +Source3: http://www.w3.org/Math/DTD/mathml2.tgz +# FIXME These are the old gl-manpages source which +# still have some manpages that khronos doesn't. +# Ship until somebody in the know helps figuring whats what. +# When matching install the kronos version. +Source4: gl-manpages-1.0.1.tar.bz2 +#Silence author/version/manual etc. warnings +Source5: metainfo.xsl + +BuildArch: noarch + +BuildRequires: libxslt docbook-style-xsl docbook5-style-xsl + +%description +OpenGL manpages + +%prep +%setup -q -n %{name}-%{version}-%{codate} +tar xzf %{SOURCE3} +cp -av %{SOURCE2} mathml2/ +tar xjf %{SOURCE4} + + +%build +# FIXME Figure out what to do about the GLSL builtin functions +export BD=`pwd` +xmlcatalog --create --noout \ + --add public "-//W3C//DTD MathML 2.0//EN" "file://$BD/mathml2/mathml2.dtd" \ + --add system "http://www.w3.org/TR/MathML2/dtd/mathml2.dtd" "file://$BD/mathml2/mathml2.dtd" \ + --add public "-//OASIS//DTD DocBook MathML Module V1.1b1//EN" "file://$BD/mathml2/dbmathml.dtd" \ + --add system "http://www.oasis-open.org/docbook/xml/mathml/1.1CR1/dbmathml.dtd" "file://$BD/mathml2/dbmathml.dtd" \ + mathml2.cat +export XML_CATALOG_FILES="$BD/mathml2.cat /etc/xml/catalog" +for MAN in man3 man2 ; do + pushd $MAN + for MANP in gl*.xml ; do + xsltproc --nonet %{SOURCE5} $MANP | xsltproc --nonet /usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl - + done + popd +done +pushd man4 +for MANP in gl*.xml ; do + xsltproc --xinclude --nonet %{SOURCE5} $MANP | xsltproc --xinclude --nonet /usr/share/sgml/docbook/xsl-ns-stylesheets/manpages/docbook.xsl - +done +popd + + +%install +mkdir -p $RPM_BUILD_ROOT%{_mandir}/man3/ +cp -n {man4,man3,man2}/*.3G $RPM_BUILD_ROOT%{_mandir}/man3/ +# install the old manpages source with 3gl -> 3G +# when matchin don't clobber the khronos version +for MANP in `find gl-manpages-1.0.1 -name *.3gl` ; do + FN=${MANP//*\//} + cp -a -n $MANP $RPM_BUILD_ROOT%{_mandir}/man3/${FN/.3gl/.3G} +done +find $RPM_BUILD_ROOT%{_mandir}/man3/ -type f -size -100b | xargs sed -i -e 's/\.3gl/\.3G/' -e 's,^\.so man3G/,.so man3/,' + + +%files +%{_mandir}/man3/* + + +%changelog +* Wed Feb 07 2018 Fedora Release Engineering - 1.1-15.20161227 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1.1-14.20161227 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 1.1-13.20161227 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Dec 28 2016 Yanko Kaneti - 1.1-12.20161227 +- Use docbook5-style-xsl for building the GL4 manpages + +* Tue Dec 27 2016 Yanko Kaneti - 1.1-11.20161227 +- New upstream snapshot. + +* Wed Feb 03 2016 Fedora Release Engineering - 1.1-11.20140424 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 1.1-10.20140424 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 1.1-9.20140424 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu Apr 24 2014 Yanko Kaneti - 1.1-8.%{codate} +- New upstream snapshot +- GLSL folded into man4. +- tarball tweaks + +* Tue Nov 5 2013 Yanko Kaneti - 1.1-7.%{codate} +- New upstream snapshot. + +* Sat Aug 03 2013 Fedora Release Engineering - 1.1-7.20130122 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Feb 13 2013 Fedora Release Engineering - 1.1-6.20130122 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Tue Jan 22 2013 Yanko Kaneti - 1.1-5.%{codate} +- Newer upstream snapshot. Minor upstream rearrangement. +- Remove checkout script from sources and add to git. +- Try to actually use the bundled mathml2. Fix warnings. + +* Wed Jan 16 2013 Yanko Kaneti - 1.1-4.%{codate} +- Fix symlinked man references some more (#895986) + +* Mon Oct 15 2012 Yanko Kaneti - 1.1-3.%{codate} +- Fix symlinked man variants. +- Preserve timestamps on the older gl-manpages. + +* Tue Oct 9 2012 Yanko Kaneti - 1.1-2.%{codate} +- Re-add the older gl-manpages for those not present in khronos + +* Tue Oct 9 2012 Yanko Kaneti - 1.1-1.%{codate} +- Try building from source + +* Wed Sep 5 2012 Yanko Kaneti - 1.0.1-1 +- Initial split from mesa