%define srcname docutils %define elisppkgname rst-el %define prereq_ge() %(LC_ALL="C" rpm -q --queryformat 'Requires(post,preun):%%{NAME} >= %%{VERSION}' %1| grep -v "is not") Summary: an open-source text processing system written in Python Summary(ja): Pythonで書かれたテキスト処理システム Name: python-%{srcname} Version: 0.11 Release: 2%{?_dist_release} Group: Development/Languages License: Public Domain and MIT and Python and GPLv2 URL: http://docutils.sourceforge.net/ Source0: http://prdownloads.sourceforge.net/%{srcname}/%{srcname}-%{version}.tar.gz ## for rst-mode Source1: %{elisppkgname}-install.sh Source2: %{elisppkgname}-remove.sh Source3: vine-default-%{elisppkgname}.el Source4: %{elisppkgname}-init.el BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools Requires: python Requires: python-imaging Vendor: Project Vine Distribution: Vine Linux Packager: shaolin, munepi, owa Provides: docutils = %{version}-%{release} Obsoletes: docutils <= 0.5 %description Docutils is an open-source text processing system for processing plaintext documentation into useful formats, such as HTML or LaTeX. It includes reStructuredText, the easy to read, easy to use, what-you-see-is-what-you-get plaintext markup language. %description -l ja Docutilsはオープンソースのテキスト処理システムで、プレーンテキストの 文書をHTMLやLaTeXなどの使いやすいフォーマットに変換するものです。 読みやすく使いやすくWYSIWYGなプレーンテキストのマークアップ言語である reStructuresTextを含んでいます。 %package -n %{elisppkgname} Summary: Emacs support for reStructuredText Summary(ja): reStructuredText の Emacs サポート Group: Applications/Editors/Emacs Requires: emacsen Requires(post,preun): emacsen %prereq_ge emacsen-common %description -n %{elisppkgname} Emacs support for reStructuredText. %description -l ja -n %{elisppkgname} reStructuredText の Emacs サポート %prep %setup -q -n %{srcname}-%{version} # Remove a shebang from one of the library files #%__sed -i -e '/#! *\/usr\/bin\/.*python.*/{1D}' docutils/readers/python/pynodes.py %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build %install %__rm -rf $RPM_BUILD_ROOT %{__python} setup.py install --skip-build --root=$RPM_BUILD_ROOT for file in %{buildroot}/%{_bindir}/*.py; do mv $file `dirname $file`/`basename $file .py` ln -sf `basename $file .py` `dirname $file`/`basename $file` done # We want the licenses but don't need this build file %__rm -f licenses/docutils.conf # docutils only installs this if its not already on the system. Due to the # possibility that a previous version of docutils may be installed, we install # it manually here. #install -D -m644 extras/roman.py ${RPM_BUILD_ROOT}/%{python_sitelib}/roman.py ## for Emacs package mkdir -p %{buildroot}%{_datadir}/emacs/site-lisp/%{elisppkgname}/packages mkdir -p %{buildroot}%{emacsen_pkgdir}/install mkdir -p %{buildroot}%{emacsen_pkgdir}/remove # # install el files # mv tools/editors/emacs/rst.el %{buildroot}%{_datadir}/emacs/site-lisp/%{elisppkgname} cp -p %{SOURCE3} %{SOURCE4} %{buildroot}%{_datadir}/emacs/site-lisp/%{elisppkgname} # # install script (bytecompile el and install elc , remove) # %_installemacsenscript %{elisppkgname} %{SOURCE1} %_removeemacsenscript %{elisppkgname} %{SOURCE2} %clean rm -rf $RPM_BUILD_ROOT %post -n %{elisppkgname} # # bytecompile and install # if [ "$1" = 2 ]; then %_emacsenPackageRemove %{elisppkgname} fi %_addemacsenlist %{elisppkgname} %_emacsenPackageInstall %{elisppkgname} %preun -n %{elisppkgname} if [ "$1" = 0 ]; then %_emacsenPackageRemove %{elisppkgname} %_removeemacsenlist %{elisppkgname} fi %files %defattr(-,root,root) %doc BUGS.txt HISTORY.txt RELEASE-NOTES.txt docs COPYING.txt THANKS.txt FAQ.txt README.txt %doc licenses docs %{_bindir}/* %{python_sitelib}/%{srcname}/ #%{python_sitelib}/roman.* %{python_sitelib}/docutils-*.egg-info %files -n %{elisppkgname} %defattr(-,root,root) %doc BUGS.txt HISTORY.txt RELEASE-NOTES.txt COPYING.txt THANKS.txt FAQ.txt README.txt %doc licenses tools/editors %{_datadir}/emacs/site-lisp/%{elisppkgname} %{emacsen_pkgdir}/install/%{elisppkgname} %{emacsen_pkgdir}/remove/%{elisppkgname} %changelog * Sun Jan 12 2014 Yoji TOYODA 0.11-2 - rebuild with VineSeed environment * Fri Sep 06 2013 Toshiharu Kudoh 0.11-1 - new upstream release * Sun Jun 16 2013 Toshiharu Kudoh 0.10-1 - new upstream release * Sun Feb 19 2012 Yoji TOYODA 0.6-4 - rebuild with python-2.7.2 * Sat Jan 29 2011 IWAI, Masaharu 0.6-3 - new package: rst-el (Emacs Lisp) - add Source1-4 * Thu Sep 02 2010 Shu KONNO 0.6-2 - changed package-name to python-docutils from docutils - added Provides: docutils = %%{version}-%%{release} - added Obsoletes: docutils <= 0.5 - added BR: python-setuptools - added RQ: python-imaging (merged from '* Mon Aug 23 2010 Munehiro Yamamoto python-docutils-0.6-1') * Wed Feb 03 2010 Shu KONNO 0.5-3 - rebuilt with python-2.6.4 * Thu Aug 6 2009 MATSUBAYASHI Kohji - 0.5-2 - rename /usr/bin/*.py to /usr/bin/* (keep symlinking to *.py for compatibility - should be removed in the future) * Wed Jul 01 2009 Shu KONNO 0.5-1 - updated docutils to 0.5 - added BuildArch: noarch * Sun Jul 20 2008 Shu KONNO 0.4-1vl5 - rebuilt with python-2.5.2 - applied new versioning policy and spec in utf-8 * Thu Jan 31 2008 Shu KONNO 0.4-0vl4 - defined python_sitelib by using distutils.sysconfig.get_python_lib() - updated module directory with platform-independent path - added script to install extras/roman.py (missing if it's already on the system) * Sun Sep 9 2007 KANEKO Seiji 0.4-0vl2 - initial build for Vine Linux