| [1741] | 1 | %global upstream_name Sphinx |
|---|
| 2 | |
|---|
| [11940] | 3 | %global py3_default 0 |
|---|
| 4 | |
|---|
| [1741] | 5 | Name: python-sphinx |
|---|
| [11940] | 6 | Version: 1.7.9 |
|---|
| [11948] | 7 | Release: 2%{?_dist_release} |
|---|
| [1741] | 8 | Summary: Python documentation generator |
|---|
| 9 | |
|---|
| 10 | Group: Development/Tools |
|---|
| 11 | |
|---|
| 12 | # Unless otherwise noted, the license for code is BSD |
|---|
| 13 | # sphinx/util/stemmer.py Public Domain |
|---|
| 14 | # sphinx/pycode/pgen2 Python |
|---|
| 15 | # jquery (MIT or GPLv2) |
|---|
| 16 | License: BSD and Public Domain and Python and (MIT or GPLv2) |
|---|
| 17 | URL: http://sphinx.pocoo.org/ |
|---|
| [11940] | 18 | Vendor: Project Vine |
|---|
| 19 | Distribution: Vine Linux |
|---|
| 20 | |
|---|
| [2258] | 21 | Source0: http://pypi.python.org/packages/source/S/%{upstream_name}/%{upstream_name}-%{version}.tar.gz |
|---|
| [11940] | 22 | Source1: python2-sphinx |
|---|
| 23 | Source2: python3-sphinx |
|---|
| 24 | Source3: zz-modules-python-sphinx.sh |
|---|
| 25 | Source4: zz-modules-python-sphinx.csh |
|---|
| 26 | Source5: README.fedora |
|---|
| 27 | # environment-modules file to select whether the py2 or py3 version of |
|---|
| 28 | # python-sphinx execuitables is default |
|---|
| 29 | Source6: default-sphinx-command.in |
|---|
| [1741] | 30 | |
|---|
| [11940] | 31 | # Make the test_latex_remote_images an expected failure |
|---|
| 32 | # since it requires an active internet connection |
|---|
| 33 | # to fetch images, which is not possible in koji or mock. |
|---|
| 34 | Patch0: xfail-test_latex_remote_images.patch |
|---|
| [11625] | 35 | |
|---|
| [11940] | 36 | # Allow extra themes to exist. We pull in python[23]-sphinx-theme-alabaster |
|---|
| 37 | # which causes that test to fail. |
|---|
| 38 | Patch1: sphinx-test_theming.diff |
|---|
| 39 | |
|---|
| [1741] | 40 | BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root |
|---|
| 41 | BuildArch: noarch |
|---|
| [11940] | 42 | BuildRequires: python-rpm-macros |
|---|
| 43 | BuildRequires: python-devel |
|---|
| [1741] | 44 | BuildRequires: python-setuptools |
|---|
| [7722] | 45 | |
|---|
| [11940] | 46 | BuildRequires: python-six |
|---|
| 47 | BuildRequires: python-jinja2 |
|---|
| 48 | BuildRequires: python-pygments |
|---|
| [1741] | 49 | BuildRequires: python-docutils |
|---|
| [11940] | 50 | BuildRequires: python-snowballstemmer |
|---|
| 51 | BuildRequires: python-babel |
|---|
| 52 | BuildRequires: python-sphinx-theme-alabaster |
|---|
| 53 | BuildRequires: python-imagesize |
|---|
| 54 | BuildRequires: python-requests |
|---|
| 55 | BuildRequires: python-packaging |
|---|
| 56 | BuildRequires: python-typing |
|---|
| 57 | BuildRequires: python-sphinxcontrib-websupport |
|---|
| [7722] | 58 | |
|---|
| [11940] | 59 | Requires: python-sphinx-locale = %{version}-%{release} |
|---|
| 60 | Requires: python-six |
|---|
| [1741] | 61 | Requires: python-jinja2 |
|---|
| 62 | Requires: python-pygments |
|---|
| [11940] | 63 | Requires: python-docutils |
|---|
| 64 | Requires: python-snowballstemmer |
|---|
| 65 | Requires: python-babel |
|---|
| 66 | Requires: python-sphinx-theme-alabaster |
|---|
| 67 | Requires: python-imagesize |
|---|
| 68 | Requires: python-requests |
|---|
| 69 | Requires: python-packaging |
|---|
| 70 | Requires: python-typing |
|---|
| [11948] | 71 | Requires: python-sphinxcontrib-websupport |
|---|
| [1741] | 72 | |
|---|
| 73 | %description |
|---|
| 74 | Sphinx is a tool that makes it easy to create intelligent and |
|---|
| 75 | beautiful documentation for Python projects (or other documents |
|---|
| 76 | consisting of multiple reStructuredText sources), written by Georg |
|---|
| 77 | Brandl. It was originally created to translate the new Python |
|---|
| 78 | documentation, but has now been cleaned up in the hope that it will be |
|---|
| 79 | useful to many other projects. |
|---|
| 80 | |
|---|
| 81 | Sphinx uses reStructuredText as its markup language, and many of its |
|---|
| 82 | strengths come from the power and straightforwardness of |
|---|
| 83 | reStructuredText and its parsing and translating suite, the Docutils. |
|---|
| 84 | |
|---|
| 85 | Although it is still under constant development, the following |
|---|
| 86 | features are already present, work fine and can be seen "in action" in |
|---|
| 87 | the Python docs: |
|---|
| 88 | |
|---|
| 89 | * Output formats: HTML (including Windows HTML Help) and LaTeX, |
|---|
| 90 | for printable PDF versions |
|---|
| 91 | * Extensive cross-references: semantic markup and automatic links |
|---|
| 92 | for functions, classes, glossary terms and similar pieces of |
|---|
| 93 | information |
|---|
| 94 | * Hierarchical structure: easy definition of a document tree, with |
|---|
| 95 | automatic links to siblings, parents and children |
|---|
| 96 | * Automatic indices: general index as well as a module index |
|---|
| 97 | * Code handling: automatic highlighting using the Pygments highlighter |
|---|
| 98 | * Various extensions are available, e.g. for automatic testing of |
|---|
| 99 | snippets and inclusion of appropriately formatted docstrings. |
|---|
| 100 | |
|---|
| 101 | |
|---|
| [11940] | 102 | %package -n python3-sphinx |
|---|
| 103 | Summary: Python documentation generator |
|---|
| 104 | Group: Development/Tools |
|---|
| 105 | |
|---|
| 106 | BuildRequires: python3-rpm-macros |
|---|
| 107 | BuildRequires: python3-devel |
|---|
| 108 | BuildRequires: python3-setuptools |
|---|
| 109 | |
|---|
| 110 | BuildRequires: python3-six |
|---|
| 111 | BuildRequires: python3-jinja2 |
|---|
| 112 | BuildRequires: python3-pygments |
|---|
| 113 | BuildRequires: python3-docutils |
|---|
| 114 | BuildRequires: python3-snowballstemmer |
|---|
| 115 | BuildRequires: python3-babel |
|---|
| 116 | BuildRequires: python3-sphinx-theme-alabaster |
|---|
| 117 | BuildRequires: python3-imagesize |
|---|
| 118 | BuildRequires: python3-requests |
|---|
| 119 | BuildRequires: python3-packaging |
|---|
| 120 | BuildRequires: python3-sphinxcontrib-websupport |
|---|
| 121 | |
|---|
| 122 | Requires: python-sphinx-locale = %{version}-%{release} |
|---|
| 123 | Requires: python3-six |
|---|
| 124 | Requires: python3-jinja2 |
|---|
| 125 | Requires: python3-pygments |
|---|
| 126 | Requires: python3-docutils |
|---|
| 127 | Requires: python3-snowballstemmer |
|---|
| 128 | Requires: python3-babel |
|---|
| 129 | Requires: python3-sphinx-theme-alabaster |
|---|
| 130 | Requires: python3-imagesize |
|---|
| 131 | Requires: python3-requests |
|---|
| 132 | Requires: python3-packaging |
|---|
| 133 | Requires: python3-sphinxcontrib-websupport |
|---|
| 134 | |
|---|
| 135 | %description -n python3-sphinx |
|---|
| 136 | Sphinx is a tool that makes it easy to create intelligent and |
|---|
| 137 | beautiful documentation for Python projects (or other documents |
|---|
| 138 | consisting of multiple reStructuredText sources), written by Georg |
|---|
| 139 | Brandl. It was originally created to translate the new Python |
|---|
| 140 | documentation, but has now been cleaned up in the hope that it will be |
|---|
| 141 | useful to many other projects. |
|---|
| 142 | |
|---|
| 143 | Sphinx uses reStructuredText as its markup language, and many of its |
|---|
| 144 | strengths come from the power and straightforwardness of |
|---|
| 145 | reStructuredText and its parsing and translating suite, the Docutils. |
|---|
| 146 | |
|---|
| 147 | Although it is still under constant development, the following |
|---|
| 148 | features are already present, work fine and can be seen "in action" in |
|---|
| 149 | the Python docs: |
|---|
| 150 | |
|---|
| 151 | * Output formats: HTML (including Windows HTML Help) and LaTeX, |
|---|
| 152 | for printable PDF versions |
|---|
| 153 | * Extensive cross-references: semantic markup and automatic links |
|---|
| 154 | for functions, classes, glossary terms and similar pieces of |
|---|
| 155 | information |
|---|
| 156 | * Hierarchical structure: easy definition of a document tree, with |
|---|
| 157 | automatic links to siblings, parents and children |
|---|
| 158 | * Automatic indices: general index as well as a module index |
|---|
| 159 | * Code handling: automatic highlighting using the Pygments highlighter |
|---|
| 160 | * Various extensions are available, e.g. for automatic testing of |
|---|
| 161 | snippets and inclusion of appropriately formatted docstrings. |
|---|
| 162 | |
|---|
| 163 | %package locale |
|---|
| 164 | Summary: Locale files for %{name} |
|---|
| 165 | Group: Development/Tools |
|---|
| 166 | License: BSD |
|---|
| 167 | |
|---|
| 168 | %description locale |
|---|
| 169 | Sphinx is a tool that makes it easy to create intelligent and |
|---|
| 170 | beautiful documentation for Python projects (or other documents |
|---|
| 171 | consisting of multiple reStructuredText sources), written by Georg |
|---|
| 172 | Brandl. It was originally created to translate the new Python |
|---|
| 173 | documentation, but has now been cleaned up in the hope that it will be |
|---|
| 174 | useful to many other projects. |
|---|
| 175 | |
|---|
| 176 | This package contains locale files for Sphinx |
|---|
| 177 | |
|---|
| [1741] | 178 | %package doc |
|---|
| 179 | Summary: Documentation for %{name} |
|---|
| 180 | Group: Documentation |
|---|
| 181 | License: BSD |
|---|
| 182 | Requires: %{name} = %{version}-%{release} |
|---|
| 183 | |
|---|
| 184 | |
|---|
| 185 | %description doc |
|---|
| 186 | Sphinx is a tool that makes it easy to create intelligent and |
|---|
| 187 | beautiful documentation for Python projects (or other documents |
|---|
| 188 | consisting of multiple reStructuredText sources), written by Georg |
|---|
| 189 | Brandl. It was originally created to translate the new Python |
|---|
| 190 | documentation, but has now been cleaned up in the hope that it will be |
|---|
| 191 | useful to many other projects. |
|---|
| 192 | |
|---|
| 193 | This package contains documentation in reST and HTML formats. |
|---|
| 194 | |
|---|
| 195 | |
|---|
| 196 | %prep |
|---|
| [11940] | 197 | %autosetup -n %{upstream_name}-%{version} -p1 |
|---|
| [1741] | 198 | |
|---|
| [11940] | 199 | cp %{SOURCE5} . |
|---|
| 200 | |
|---|
| 201 | # fix line encoding of bundled jquery.js |
|---|
| 202 | perl -pi -e 's/\r//' ./sphinx/themes/basic/static/jquery.js |
|---|
| 203 | |
|---|
| 204 | %if 0%{?with_python3} |
|---|
| 205 | rm -rf %{py3dir} |
|---|
| 206 | cp -a . %{py3dir} |
|---|
| 207 | %endif # with_python3 |
|---|
| 208 | |
|---|
| [1741] | 209 | %build |
|---|
| [11940] | 210 | %{py_build} |
|---|
| 211 | %{py3_build} |
|---|
| 212 | |
|---|
| 213 | export PYTHONPATH=$PWD |
|---|
| [1741] | 214 | pushd doc |
|---|
| [11940] | 215 | export SPHINXBUILD="%{__python3} ../sphinx/cmd/build.py" |
|---|
| 216 | |
|---|
| 217 | make html SPHINXBUILD="$SPHINXBUILD" |
|---|
| 218 | make man SPHINXBUILD="$SPHINXBUILD" |
|---|
| 219 | rm -rf _build/html/.buildinfo |
|---|
| 220 | mv _build/html .. |
|---|
| [1741] | 221 | popd |
|---|
| 222 | |
|---|
| 223 | |
|---|
| 224 | %install |
|---|
| 225 | %__rm -rf %{buildroot} |
|---|
| 226 | |
|---|
| [11940] | 227 | %{py3_install} |
|---|
| 228 | install -d %{buildroot}%{_libexecdir}/python3-sphinx |
|---|
| 229 | for i in sphinx-{apidoc,autogen,build,quickstart}; do |
|---|
| 230 | mv %{buildroot}%{_bindir}/$i %{buildroot}%{_bindir}/$i-%{python3_version} |
|---|
| 231 | ln -s $i-%{python3_version} %{buildroot}%{_bindir}/$i-3 |
|---|
| 232 | ln -s %{_bindir}/$i-3 %{buildroot}%{_libexecdir}/python3-sphinx/$i |
|---|
| 233 | done |
|---|
| [1741] | 234 | |
|---|
| [11940] | 235 | %{py_install} |
|---|
| 236 | install -d %{buildroot}%{_libexecdir}/python2-sphinx |
|---|
| 237 | install -d %{buildroot}%{_libexecdir}/python2-sphinx |
|---|
| 238 | for i in sphinx-{apidoc,autogen,build,quickstart}; do |
|---|
| 239 | mv %{buildroot}%{_bindir}/$i %{buildroot}%{_bindir}/$i-%{python_version} |
|---|
| 240 | ln -s $i-%{python_version} %{buildroot}%{_bindir}/$i-2 |
|---|
| 241 | ln -s %{_bindir}/$i-2 %{buildroot}%{_libexecdir}/python2-sphinx/$i |
|---|
| 242 | done |
|---|
| [1741] | 243 | |
|---|
| [11940] | 244 | pushd doc |
|---|
| [1741] | 245 | # Deliver man pages |
|---|
| [11940] | 246 | install -d %{buildroot}%{_mandir}/man1 |
|---|
| 247 | for f in _build/man/sphinx-*.1; |
|---|
| 248 | do |
|---|
| 249 | ### TODO: these are all the same. Do we really need to ship them three |
|---|
| 250 | ### times or is it fine to just ship them as e.g. sphinx-build.1 |
|---|
| 251 | cp -p $f %{buildroot}%{_mandir}/man1/$(basename $f) |
|---|
| 252 | cp -p $f %{buildroot}%{_mandir}/man1/$(basename $f | sed -e "s|.1$|-%{python_version}.1|") |
|---|
| 253 | cp -p $f %{buildroot}%{_mandir}/man1/$(basename $f | sed -e "s|.1$|-%{python3_version}.1|") |
|---|
| 254 | done |
|---|
| [1741] | 255 | |
|---|
| [11940] | 256 | # Remove language files, they're identical to the ones from the |
|---|
| 257 | # Python 2 build that will be moved to /usr/share below |
|---|
| 258 | find %{buildroot}%{python3_sitelib}/sphinx/locale -maxdepth 1 -mindepth 1 -type d -not -path '*/\.*' -exec rm -rf '{}' \; |
|---|
| 259 | popd |
|---|
| 260 | |
|---|
| 261 | # Clean up non-python files |
|---|
| 262 | rm -f %{buildroot}%{python_sitelib}/sphinx/locale/.DS_Store |
|---|
| 263 | rm -rf %{buildroot}%{python_sitelib}/sphinx/locale/.tx |
|---|
| 264 | rm -f %{buildroot}%{python3_sitelib}/sphinx/locale/.DS_Store |
|---|
| 265 | rm -rf %{buildroot}%{python3_sitelib}/sphinx/locale/.tx |
|---|
| 266 | |
|---|
| [1741] | 267 | # Deliver rst files |
|---|
| [11940] | 268 | rm -rf doc/_build |
|---|
| 269 | sed -i 's|python ../sphinx-build.py|/usr/bin/sphinx-build|' doc/Makefile |
|---|
| 270 | mv doc reST |
|---|
| [1741] | 271 | |
|---|
| [11940] | 272 | # Move language files to /usr/share; |
|---|
| 273 | # patch to support this incorporated in 0.6.6 |
|---|
| [1741] | 274 | pushd %{buildroot}%{python_sitelib} |
|---|
| 275 | |
|---|
| [11940] | 276 | for lang in `find sphinx/locale -maxdepth 1 -mindepth 1 -type d -not -path '*/\.*' -printf "%f "`; |
|---|
| [1741] | 277 | do |
|---|
| 278 | install -d %{buildroot}%{_datadir}/sphinx/locale/$lang |
|---|
| 279 | install -d %{buildroot}%{_datadir}/locale/$lang/LC_MESSAGES |
|---|
| [11940] | 280 | mv sphinx/locale/$lang/LC_MESSAGES/sphinx.js \ |
|---|
| [1741] | 281 | %{buildroot}%{_datadir}/sphinx/locale/$lang/ |
|---|
| [11940] | 282 | mv sphinx/locale/$lang/LC_MESSAGES/sphinx.mo \ |
|---|
| [1741] | 283 | %{buildroot}%{_datadir}/locale/$lang/LC_MESSAGES/ |
|---|
| [11940] | 284 | rm -rf sphinx/locale/$lang |
|---|
| [1741] | 285 | done |
|---|
| 286 | popd |
|---|
| [11940] | 287 | |
|---|
| 288 | #install -d %{buildroot}%{_modulesdir}/python-sphinx |
|---|
| 289 | #install -m 0644 %{SOURCE1} %{buildroot}%{_modulesdir}/python-sphinx/ |
|---|
| 290 | #sed -i 's|@python2_sphinx_dir@|%{_libexecdir}/python2-sphinx|' %{buildroot}%{_modulesdir}/python-sphinx/python2-sphinx |
|---|
| 291 | #install -m 0644 %{SOURCE2} %{buildroot}%{_modulesdir}/python-sphinx/ |
|---|
| 292 | #sed -i 's|@python3_sphinx_dir@|%{_libexecdir}/python3-sphinx|' %{buildroot}%{_modulesdir}/python-sphinx/python3-sphinx |
|---|
| 293 | |
|---|
| 294 | install -d %{buildroot}%{_sysconfdir}/profile.d |
|---|
| 295 | install -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/profile.d/zz-modules-python-sphinx.sh |
|---|
| 296 | install -m 0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/profile.d/zz-modules-python-sphinx.csh |
|---|
| 297 | |
|---|
| 298 | %if %{py3_default} |
|---|
| 299 | #sed 's/@PYTHONVER@/3/' < %{SOURCE6} > %{buildroot}%{_modulesdir}/python-sphinx/.version |
|---|
| 300 | |
|---|
| 301 | # These symlinks establish a default for when a package is first installed (and |
|---|
| 302 | # therefore, environment modules is not loaded). The user can immediately |
|---|
| 303 | # switch them by using module swap python-sphinx/python2-sphinx |
|---|
| 304 | for filename in sphinx-{build,apidoc,autogen,quickstart} ; do |
|---|
| 305 | ln -s %{_libexecdir}/python3-sphinx/$filename %{buildroot}%{_bindir}/$filename |
|---|
| 306 | done |
|---|
| 307 | |
|---|
| 308 | %else |
|---|
| 309 | #sed 's/@PYTHONVER@/2/' < %{SOURCE6} > %{buildroot}%{_modulesdir}/python-sphinx/.version |
|---|
| 310 | |
|---|
| 311 | # These symlinks establish a default for when a package is first installed (and |
|---|
| 312 | # therefore, environment modules is not loaded). The user can immediately |
|---|
| 313 | # switch them by using module swap python-sphinx/python3-sphinx |
|---|
| 314 | for filename in sphinx-{build,apidoc,autogen,quickstart} ; do |
|---|
| 315 | ln -s %{_libexecdir}/python2-sphinx/$filename %{buildroot}%{_bindir}/$filename |
|---|
| 316 | done |
|---|
| 317 | |
|---|
| 318 | %endif |
|---|
| 319 | |
|---|
| [1741] | 320 | %find_lang sphinx |
|---|
| 321 | |
|---|
| 322 | # Language files; Since these are javascript, it's not immediately obvious to |
|---|
| 323 | # find_lang that they need to be marked with a language. |
|---|
| [11940] | 324 | (cd %{buildroot} && find . -name 'sphinx.js') | sed -e 's|^.||' | sed -e \ |
|---|
| [1741] | 325 | 's:\(.*/locale/\)\([^/_]\+\)\(.*\.js$\):%lang(\2) \1\2\3:' \ |
|---|
| 326 | >> sphinx.lang |
|---|
| 327 | |
|---|
| 328 | %clean |
|---|
| 329 | %__rm -rf %{buildroot} |
|---|
| 330 | |
|---|
| 331 | |
|---|
| 332 | %check |
|---|
| [11940] | 333 | #__make test |
|---|
| [1741] | 334 | |
|---|
| 335 | |
|---|
| [11940] | 336 | %files |
|---|
| [1741] | 337 | %defattr(-,root,root,-) |
|---|
| [11940] | 338 | %license LICENSE |
|---|
| 339 | %doc AUTHORS CHANGES EXAMPLES README.* |
|---|
| 340 | %{_bindir}/sphinx-*-2* |
|---|
| 341 | %{_bindir}/sphinx-build |
|---|
| 342 | %{_bindir}/sphinx-apidoc |
|---|
| 343 | %{_bindir}/sphinx-autogen |
|---|
| 344 | %{_bindir}/sphinx-quickstart |
|---|
| 345 | %{python_sitelib}/sphinx/ |
|---|
| 346 | %{python_sitelib}/Sphinx-%{version}-py%{python_version}.egg-info/ |
|---|
| 347 | %exclude %{_mandir}/man1/sphinx-*-%{python3_version}.1* |
|---|
| 348 | %{_mandir}/man1/* |
|---|
| 349 | %{_libexecdir}/python2-sphinx/ |
|---|
| 350 | #{_modulesdir}/python-sphinx/python2-sphinx |
|---|
| 351 | %if !%{py3_default} |
|---|
| 352 | #{_modulesdir}/python-sphinx/.version |
|---|
| 353 | %endif |
|---|
| 354 | %config(noreplace) %{_sysconfdir}/profile.d/zz-modules-python-sphinx.sh |
|---|
| 355 | %config(noreplace) %{_sysconfdir}/profile.d/zz-modules-python-sphinx.csh |
|---|
| [1741] | 356 | |
|---|
| [11940] | 357 | %files -n python3-sphinx |
|---|
| 358 | %license LICENSE |
|---|
| 359 | %doc AUTHORS CHANGES EXAMPLES README.* |
|---|
| 360 | %{_bindir}/sphinx-*-3* |
|---|
| 361 | %{python3_sitelib}/sphinx/ |
|---|
| 362 | %{python3_sitelib}/Sphinx-%{version}-py%{python3_version}.egg-info/ |
|---|
| 363 | %{_mandir}/man1/sphinx-*-%{python3_version}.1* |
|---|
| 364 | %{_libexecdir}/python3-sphinx/ |
|---|
| 365 | #{_modulesdir}/python-sphinx/python3-sphinx |
|---|
| 366 | %if %{py3_default} |
|---|
| 367 | #{_modulesdir}/python-sphinx/.version |
|---|
| 368 | %endif |
|---|
| 369 | %config(noreplace) %{_sysconfdir}/profile.d/zz-modules-python-sphinx.sh |
|---|
| 370 | %config(noreplace) %{_sysconfdir}/profile.d/zz-modules-python-sphinx.csh |
|---|
| 371 | |
|---|
| 372 | %files locale -f sphinx.lang |
|---|
| 373 | %license LICENSE |
|---|
| 374 | %dir %{_datadir}/sphinx/ |
|---|
| 375 | %dir %{_datadir}/sphinx/locale |
|---|
| 376 | %dir %{_datadir}/sphinx/locale/* |
|---|
| 377 | |
|---|
| [1741] | 378 | %files doc |
|---|
| 379 | %defattr(-,root,root,-) |
|---|
| 380 | %doc html reST |
|---|
| 381 | |
|---|
| 382 | |
|---|
| 383 | %changelog |
|---|
| [11948] | 384 | * Thu Nov 29 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.7.9-2 |
|---|
| 385 | - fixed R:. |
|---|
| 386 | |
|---|
| [11940] | 387 | * Wed Nov 28 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.7.9-1 |
|---|
| 388 | - new upstream release. |
|---|
| 389 | - dropped Patch2. |
|---|
| 390 | - imported Patch0-1 from rawhide. |
|---|
| 391 | - added python3 support. |
|---|
| 392 | |
|---|
| [11625] | 393 | * Wed May 09 2018 Toshiaki Ara <ara_t@384.jp> 1.1.3-3 |
|---|
| 394 | - added patch2 from RedHat |
|---|
| 395 | |
|---|
| 396 | * Thu Jul 2 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.3-2 |
|---|
| [9638] | 397 | - added patch0. |
|---|
| 398 | |
|---|
| [7722] | 399 | * Sun Jun 30 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.1.3-1 |
|---|
| 400 | - new upstream release |
|---|
| 401 | |
|---|
| [5701] | 402 | * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.7-2 |
|---|
| 403 | - rebuild with python-2.7.2 |
|---|
| 404 | |
|---|
| [3795] | 405 | * Thu May 5 2011 IWAI, Masaharu <iwai@alib.jp> 1.0.7-1 |
|---|
| 406 | - new upstream release |
|---|
| 407 | - add BuildRequires: python-simplejson for Vine5 |
|---|
| 408 | - add Vendor and Distribution tags |
|---|
| 409 | |
|---|
| [2258] | 410 | * Wed Dec 01 2010 Shu KONNO <owa@bg.wakwak.com> 1.0.5-1 |
|---|
| 411 | - update sphinx to 1.0.5 |
|---|
| 412 | |
|---|
| [1741] | 413 | * Mon Aug 23 2010 Munehiro Yamamoto <munepi@vinelinux.org> 1.0-1.b2 |
|---|
| 414 | - initial build based on Fedora development |
|---|
| 415 | |
|---|
| 416 | * Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.0-0.1.b2.1 |
|---|
| 417 | - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild |
|---|
| 418 | |
|---|
| 419 | * Mon May 31 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 1.0-0.2.b2 |
|---|
| 420 | - Update to 1.0 beta 2 |
|---|
| 421 | - Fixes problem building html documentation in non-English locales |
|---|
| 422 | |
|---|
| 423 | * Wed May 26 2010 Michel Salim <salimma@fedoraproject.org> - 1.0-0.1.b1 |
|---|
| 424 | - Update to 1.0 beta 1 |
|---|
| 425 | |
|---|
| 426 | * Tue May 25 2010 Michel Salim <salimma@fedoraproject.org> - 0.6.6-1 |
|---|
| 427 | - Update to 0.6.6 |
|---|
| 428 | |
|---|
| 429 | * Fri May 21 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.5-2 |
|---|
| 430 | - Few minor tweaks to Gareth's spec file update |
|---|
| 431 | |
|---|
| 432 | * Mon May 10 2010 Gareth Armstrong <gareth.armstrong@hp.com> - 0.6.5-1.hp |
|---|
| 433 | - Update to 0.6.5 |
|---|
| 434 | - Initial import of python-sphinx from Fedora Rawhide for use in HP CMS |
|---|
| 435 | - Enforce that Sphinx requires Python 2.4 or later via an explicit BR |
|---|
| 436 | - Minor tweaks to spec file |
|---|
| 437 | - Move language files to %%{_datadir}, idea borrowed from Debian's sphinx |
|---|
| 438 | package |
|---|
| 439 | - Deliver man pages for sphinx-build & sphinx-quickstart |
|---|
| 440 | - Deliver rst documentation files to reST directory in doc sub-package |
|---|
| 441 | - Add %%check section for Python2 and add BR on python-nose |
|---|
| 442 | |
|---|
| 443 | * Wed Jan 13 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.4-1 |
|---|
| 444 | - Update to 0.6.4 |
|---|
| 445 | - Fixes a problem using autodoc with pylons projects. |
|---|
| 446 | |
|---|
| 447 | * Fri Sep 4 2009 Michel Salim <salimma@fedoraproject.org> - 0.6.3-1 |
|---|
| 448 | - Update to 0.6.3 |
|---|
| 449 | |
|---|
| 450 | * Mon Aug 17 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.2-1 |
|---|
| 451 | - Update to 0.6.2 -- upstream bugfix requested inside bz#512438 |
|---|
| 452 | |
|---|
| 453 | * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1-3 |
|---|
| 454 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
|---|
| 455 | |
|---|
| 456 | * Fri Jun 05 2009 Luke Macken <lmacken@redhat.com> - 0.6.1-2 |
|---|
| 457 | - Add a patch to use our own setuptools package |
|---|
| 458 | |
|---|
| 459 | * Fri Apr 17 2009 Michel Salim <salimma@fedoraproject.org> - 0.6.1-1 |
|---|
| 460 | - Update to 0.6.1 |
|---|
| 461 | |
|---|
| 462 | * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.1-2 |
|---|
| 463 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
|---|
| 464 | |
|---|
| 465 | * Fri Jan 2 2009 Michel Salim <salimma@fedoraproject.org> - 0.5.1-1 |
|---|
| 466 | - Update to 0.5.1 |
|---|
| 467 | |
|---|
| 468 | * Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.5-2 |
|---|
| 469 | - Rebuild for Python 2.6 |
|---|
| 470 | |
|---|
| 471 | * Mon Nov 24 2008 Michel Salim <salimma@fedoraproject.org> - 0.5-1 |
|---|
| 472 | - Update to 0.5 |
|---|
| 473 | |
|---|
| 474 | * Fri Oct 10 2008 Michel Salim <salimma@fedoraproject.org> - 0.4.3-1 |
|---|
| 475 | - Update to 0.4.3 |
|---|
| 476 | |
|---|
| 477 | * Wed Aug 27 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 0.4.2-1.1 |
|---|
| 478 | - Fix for EL-5 build. |
|---|
| 479 | |
|---|
| 480 | * Mon Aug 25 2008 Michel Salim <salimma@fedoraproject.org> - 0.4.2-1 |
|---|
| 481 | - Update to 0.4.2 |
|---|
| 482 | |
|---|
| 483 | * Mon May 26 2008 Michel Salim <salimma@fedoraproject.org> - 0.3-1 |
|---|
| 484 | - Update to 0.3 |
|---|
| 485 | |
|---|
| 486 | * Fri May 2 2008 Michel Salim <salimma@fedoraproject.org> - 0.1.61950-3 |
|---|
| 487 | - Split documentation into subpackage |
|---|
| 488 | - Exclude C files (not built by default anyway) |
|---|
| 489 | |
|---|
| 490 | * Wed Apr 16 2008 José Matos <jamatos@fc.up.pt> - 0.1.61950-2 |
|---|
| 491 | - Build html documentation, include it and include the rst |
|---|
| 492 | documentation. |
|---|
| 493 | |
|---|
| 494 | * Thu Mar 27 2008 Michel Salim <michel.sylvan@gmail.com> 0.1.61950-1 |
|---|
| 495 | - Initial package |
|---|