Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e361c26ece | |||
| eb8d9046b7 | |||
| a8d02c7d84 |
@@ -0,0 +1 @@
|
|||||||
|
Sphinx-0.6.5.tar.gz
|
||||||
@@ -1 +0,0 @@
|
|||||||
Sphinx-0.6.6.tar.gz
|
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
# Makefile for source rpm: python-sphinx
|
||||||
|
# $Id$
|
||||||
|
NAME := python-sphinx
|
||||||
|
SPECFILE = $(firstword $(wildcard *.spec))
|
||||||
|
|
||||||
|
define find-makefile-common
|
||||||
|
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||||
|
endef
|
||||||
|
|
||||||
|
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||||
|
|
||||||
|
ifeq ($(MAKEFILE_COMMON),)
|
||||||
|
# attept a checkout
|
||||||
|
define checkout-makefile-common
|
||||||
|
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||||
|
endef
|
||||||
|
|
||||||
|
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||||
|
endif
|
||||||
|
|
||||||
|
include $(MAKEFILE_COMMON)
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# Parent 552e51b26229a9a918c76a401f2f487bf81f2ee6
|
||||||
|
|
||||||
|
Index: Sphinx-0.6.5/sphinx/builders/html.py
|
||||||
|
===================================================================
|
||||||
|
--- Sphinx-0.6.5.orig/sphinx/builders/html.py
|
||||||
|
+++ Sphinx-0.6.5/sphinx/builders/html.py
|
||||||
|
@@ -10,6 +10,7 @@
|
||||||
|
"""
|
||||||
|
|
||||||
|
import os
|
||||||
|
+import sys
|
||||||
|
import codecs
|
||||||
|
import posixpath
|
||||||
|
import cPickle as pickle
|
||||||
|
@@ -91,10 +92,15 @@ class StandaloneHTMLBuilder(Builder):
|
||||||
|
self.link_suffix = self.out_suffix
|
||||||
|
|
||||||
|
if self.config.language is not None:
|
||||||
|
- jsfile = path.join(package_dir, 'locale', self.config.language,
|
||||||
|
- 'LC_MESSAGES', 'sphinx.js')
|
||||||
|
- if path.isfile(jsfile):
|
||||||
|
- self.script_files.append('_static/translations.js')
|
||||||
|
+ jsfile_list = [path.join(package_dir, 'locale',
|
||||||
|
+ self.config.language, 'LC_MESSAGES', 'sphinx.js'),
|
||||||
|
+ path.join(sys.prefix, 'share/sphinx/locale',
|
||||||
|
+ self.config.language, 'sphinx.js')]
|
||||||
|
+
|
||||||
|
+ for jsfile in jsfile_list:
|
||||||
|
+ if path.isfile(jsfile):
|
||||||
|
+ self.script_files.append('_static/translations.js')
|
||||||
|
+ break
|
||||||
|
|
||||||
|
def init_templates(self):
|
||||||
|
Theme.init_themes(self)
|
||||||
|
@@ -528,11 +534,15 @@ class StandaloneHTMLBuilder(Builder):
|
||||||
|
f.close()
|
||||||
|
# then, copy translations JavaScript file
|
||||||
|
if self.config.language is not None:
|
||||||
|
- jsfile = path.join(package_dir, 'locale', self.config.language,
|
||||||
|
- 'LC_MESSAGES', 'sphinx.js')
|
||||||
|
- if path.isfile(jsfile):
|
||||||
|
- copyfile(jsfile, path.join(self.outdir, '_static',
|
||||||
|
- 'translations.js'))
|
||||||
|
+ jsfile_list = [path.join(package_dir, 'locale',
|
||||||
|
+ self.config.language, 'LC_MESSAGES', 'sphinx.js'),
|
||||||
|
+ path.join(sys.prefix, 'share/sphinx/locale',
|
||||||
|
+ self.config.language, 'sphinx.js')]
|
||||||
|
+ for jsfile in jsfile_list:
|
||||||
|
+ if path.isfile(jsfile):
|
||||||
|
+ copyfile(jsfile, path.join(self.outdir, '_static',
|
||||||
|
+ 'translations.js'))
|
||||||
|
+ break
|
||||||
|
# then, copy over all user-supplied static files
|
||||||
|
if self.theme:
|
||||||
|
staticdirnames = [path.join(themepath, 'static')
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# Parent 5da6d572bd088b04711b3bf70991c976d8f9c605
|
||||||
|
|
||||||
|
Index: Sphinx-0.6.5/setup.py
|
||||||
|
===================================================================
|
||||||
|
--- Sphinx-0.6.5.orig/setup.py
|
||||||
|
+++ Sphinx-0.6.5/setup.py
|
||||||
|
@@ -1,10 +1,13 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
-import ez_setup
|
||||||
|
-ez_setup.use_setuptools()
|
||||||
|
+try:
|
||||||
|
+ from setuptools import setup, find_packages
|
||||||
|
+except ImportError:
|
||||||
|
+ import ez_setup
|
||||||
|
+ ez_setup.use_setuptools()
|
||||||
|
+ from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
-from setuptools import setup, find_packages
|
||||||
|
from distutils import log
|
||||||
|
|
||||||
|
import sphinx
|
||||||
+7
-5
@@ -5,14 +5,16 @@
|
|||||||
%global upstream_name Sphinx
|
%global upstream_name Sphinx
|
||||||
|
|
||||||
Name: python-sphinx
|
Name: python-sphinx
|
||||||
Version: 0.6.6
|
Version: 0.6.5
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Python documentation generator
|
Summary: Python documentation generator
|
||||||
|
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: http://sphinx.pocoo.org/
|
URL: http://sphinx.pocoo.org/
|
||||||
Source0: http://pypi.python.org/packages/source/S/%{upstream_name}/%{upstream_name}-%{version}.tar.gz
|
Source0: http://pypi.python.org/packages/source/S/%{upstream_name}/%{upstream_name}-%{version}.tar.gz
|
||||||
|
Patch0: %{name}-0.6.5_setuptools.patch
|
||||||
|
Patch1: %{name}-0.6.5_move_locale_files_outside_sitelib.patch
|
||||||
|
|
||||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@@ -75,6 +77,9 @@ This package contains documentation in reST and HTML formats.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{upstream_name}-%{version}
|
%setup -q -n %{upstream_name}-%{version}
|
||||||
|
%patch0 -p1 -b .setuptools
|
||||||
|
%patch1 -p1 -b .language_files
|
||||||
|
|
||||||
sed '1d' -i sphinx/pycode/pgen2/token.py
|
sed '1d' -i sphinx/pycode/pgen2/token.py
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@@ -148,9 +153,6 @@ make test
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue May 25 2010 Michel Salim <salimma@fedoraproject.org> - 0.6.6-1
|
|
||||||
- Update to 0.6.6
|
|
||||||
|
|
||||||
* Fri May 21 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.5-2
|
* Fri May 21 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.5-2
|
||||||
- Few minor tweaks to Gareth's spec file update
|
- Few minor tweaks to Gareth's spec file update
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user