3 new revisions:
Revision: eaea8fc4ce6a
Branch: default
Author: anatoly techtonik <
tech...@gmail.com>
Date: Sun Dec 2 22:41:02 2012
Log: INFO log level is 20
http://code.google.com/p/pyglet/source/detail?r=eaea8fc4ce6a
Revision: b46ce7dcbd02
Branch: default
Author: anatoly techtonik <
tech...@gmail.com>
Date: Wed Dec 19 04:31:08 2012
Log: Merge with upstream.
http://code.google.com/p/pyglet/source/detail?r=b46ce7dcbd02
Revision: 2a2d5d3ccc83
Branch: default
Author: anatoly techtonik <
tech...@gmail.com>
Date: Wed Dec 19 04:42:46 2012
Log: Add _ prefix to the names of build dirs.
http://code.google.com/p/pyglet/source/detail?r=2a2d5d3ccc83
==============================================================================
Revision: eaea8fc4ce6a
Branch: default
Author: anatoly techtonik <
tech...@gmail.com>
Date: Sun Dec 2 22:41:02 2012
Log: INFO log level is 20
http://code.google.com/p/pyglet/source/detail?r=eaea8fc4ce6a
Modified:
/tests/test.py
=======================================
--- /tests/test.py Mon Oct 22 14:50:34 2012
+++ /tests/test.py Sun Dec 2 22:41:02 2012
@@ -110,7 +110,7 @@
only includes your operating system capability (X11, WIN or OSX) and
GENERIC.
`--log-level=`
- Specify the minimum log level to write (defaults to 10: info)
+ Specify the minimum log level to write (defaults to 20: info)
`--log-file=`
Specify log file to write to (defaults to "pyglet.%d.log")
@@ -546,7 +546,7 @@
op.add_option('--capabilities', help='selected test capabilities',
default=','.join(capabilities))
op.add_option('--log-level', help='verbosity of logging',
- default=10, type='int')
+ default=20, type='int')
op.add_option('--log-file', help='log to FILE', metavar='FILE',
default='pyglet.%d.log')
op.add_option('--regression-path', metavar='DIR',
default=regressions_path,
==============================================================================
Revision: b46ce7dcbd02
Branch: default
Author: anatoly techtonik <
tech...@gmail.com>
Date: Wed Dec 19 04:31:08 2012
Log: Merge with upstream.
http://code.google.com/p/pyglet/source/detail?r=b46ce7dcbd02
==============================================================================
Revision: 2a2d5d3ccc83
Branch: default
Author: anatoly techtonik <
tech...@gmail.com>
Date: Wed Dec 19 04:42:46 2012
Log: Add _ prefix to the names of build dirs.
http://code.google.com/p/pyglet/source/detail?r=2a2d5d3ccc83
Modified:
/.hgignore
/setup.py
=======================================
--- /.hgignore Sat Jun 23 22:12:26 2012
+++ /.hgignore Wed Dec 19 04:42:46 2012
@@ -1,11 +1,10 @@
syntax: glob
*.pyc
*.pyo
-build
+_build
pyglet.*.log
*.orig
.DS_Store
doc/api
-doc/_build
doc/internal/build.rst
website/dist
=======================================
--- /setup.py Tue Jul 17 17:58:19 2012
+++ /setup.py Wed Dec 19 04:42:46 2012
@@ -72,6 +72,12 @@
'pyglet.window.win32',
'pyglet.window.xlib',
],
+
+ # Add _ prefix to the names of temporary build dirs
+ options={
+ 'build': {'build_base': '_build'},
+ 'sdist': {'dist_dir': '_dist'},
+ }
)
setuptools_info = dict(