Skip to content
This repository was archived by the owner on Oct 9, 2021. It is now read-only.

Commit 8a7294c

Browse files
Updated the links to the new repo name (pysfml2-cython -> pysfml-cython)
1 parent 5722bef commit 8a7294c

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a simple Python API.
77

88
Go to the project page if you're looking for the source code,
99
downloads or the bug tracker:
10-
https://github.com/bastienleonard/pysfml2-cython
10+
https://github.com/bastienleonard/pysfml-cython
1111

1212
Please read doc/sphinx/source/introduction.rst for more information.
1313
You can also read the generated HTML documentation at

doc/sphinx/source/building.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ If you're on Windows, you can download the current binary release and
4242
ignore most of this section.
4343

4444
Official releases are at
45-
https://github.com/bastienleonard/pysfml2-cython/downloads. The
45+
https://github.com/bastienleonard/pysfml-cython/downloads. The
4646
installer contains the module itself, and the required DLLs (SFML and
4747
dependencies). The DLLs are dropped in Python's folder,
4848
e.g. ``C:\Python27``. If you haven't already, make sure that this
@@ -143,7 +143,7 @@ Building without Cython
143143
-----------------------
144144

145145
If you download a source release at the `download page
146-
<https://github.com/bastienleonard/pysfml2-cython/downloads>`_, you
146+
<https://github.com/bastienleonard/pysfml-cython/downloads>`_, you
147147
don't need to install Cython, since the release already contains the
148148
files that Cython would generate.
149149

doc/sphinx/source/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
master_doc = 'index'
4343

4444
# General information about the project.
45-
project = u'pySFML 2 - Cython'
45+
project = u'pySFML - Cython'
4646
copyright = u'2011, 2012 Bastien Léonard'
4747

4848
# The version info for the project you're documenting, acts as replacement for
@@ -169,7 +169,7 @@
169169
#html_file_suffix = None
170170

171171
# Output file base name for HTML help builder.
172-
htmlhelp_basename = 'pySFML2-Cythondoc'
172+
htmlhelp_basename = 'pySFML-Cythondoc'
173173

174174

175175
# -- Options for LaTeX output --------------------------------------------------
@@ -183,7 +183,7 @@
183183
# Grouping the document tree into LaTeX files. List of tuples
184184
# (source start file, target name, title, author, documentclass [howto/manual]).
185185
latex_documents = [
186-
('index', 'pySFML2-Cython.tex', u'pySFML 2 - Cython Documentation',
186+
('index', 'pySFML-Cython.tex', u'pySFML - Cython Documentation',
187187
u'Bastien Léonard', 'manual'),
188188
]
189189

@@ -216,6 +216,6 @@
216216
# One entry per manual page. List of tuples
217217
# (source start file, name, description, authors, manual section).
218218
man_pages = [
219-
('index', 'pysfml2-cython', u'pySFML 2 - Cython Documentation',
219+
('index', 'pysfml-cython', u'pySFML - Cython Documentation',
220220
[u'Bastien Léonard'], 1)
221221
]

doc/sphinx/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ but this is still a work in progress. Feel free to report any issue
4545
you encounter.
4646

4747
You can find the source code, downloads and the issue tracker here:
48-
https://github.com/bastienleonard/pysfml2-cython.
48+
https://github.com/bastienleonard/pysfml-cython.
4949

5050
There is also a thread on the official forums:
5151
http://en.sfml-dev.org/forums/index.php?topic=5311.0. I use it to make

doc/sphinx/source/reference/graphics/graphics.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2929
3030
31-
==========
32-
Graphics
33-
==========
34-
3531
.. module:: sfml
3632

3733

34+
Graphics
35+
========
36+
37+
3838
.. toctree::
3939
:maxdepth: 2
4040

doc/sphinx/source/tutorials/basics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ the full listing::
7979
main()
8080

8181
You can get the ``python-logo.png`` file `here
82-
<https://github.com/bastienleonard/pysfml2-cython/raw/master/examples/python-logo.png>`_,
82+
<https://github.com/bastienleonard/pysfml-cython/raw/master/examples/python-logo.png>`_,
8383
or use any other image file supported: bmp, dds, jpg, png, tga, or
8484
psd.
8585

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# Set to False if you don't have Cython installed. The script will
3636
# then build the extension module from the sf.cpp file, like a regular
3737
# extension.
38-
USE_CYTHON = True
38+
USE_CYTHON = False
3939

4040

4141
import glob
@@ -76,11 +76,11 @@ def src(path):
7676
long_description=long_description,
7777
author=u'Bastien Léonard',
7878
author_email='bastien.leonard@gmail.com',
79-
url='https://github.com/bastienleonard/pysfml2-cython',
79+
url='https://github.com/bastienleonard/pysfml-cython',
8080
license='BSD',
8181
data_files=[
8282
('', glob.glob('*.dll')),
83-
(os.path.join('lib', 'site-packages', 'pysfml2-cython'),
83+
(os.path.join('lib', 'site-packages', 'pysfml-cython'),
8484
['LICENSE.txt', 'SFML-LICENSE.txt'])],
8585
classifiers=[
8686
'Development Status :: 4 - Beta',

setup3k.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# Set to False if you don't have Cython installed. The script will
3636
# then build the extension module from the sf.cpp file, like a regular
3737
# extension.
38-
USE_CYTHON = True
38+
USE_CYTHON = False
3939

4040

4141
import glob
@@ -76,11 +76,11 @@ def src(path):
7676
long_description=long_description,
7777
author='Bastien Léonard',
7878
author_email='bastien.leonard@gmail.com',
79-
url='https://github.com/bastienleonard/pysfml2-cython',
79+
url='https://github.com/bastienleonard/pysfml-cython',
8080
license='BSD',
8181
data_files=[
8282
('', glob.glob('*.dll')),
83-
(os.path.join('lib', 'site-packages', 'pysfml2-cython'),
83+
(os.path.join('lib', 'site-packages', 'pysfml-cython'),
8484
['LICENSE.txt', 'SFML-LICENSE.txt'])],
8585
classifiers=[
8686
'Development Status :: 4 - Beta',

0 commit comments

Comments
 (0)