Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Sat, 14 Nov 2015 21:57:22 UTC
Commit: 301a482555cb762c88607a1fd1e1efe2a00b936a
https://github.com/geany/geany/commit/301a482555cb762c88607a1fd1e1efe2a00b9…
Log Message:
-----------
python: Update identifiers for Python 3
Modified Paths:
--------------
data/filetypes.python
Modified: data/filetypes.python
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -22,8 +22,8 @@ decorator=decorator
# all items must be in one line
primary=and as assert break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return try while with yield False None True
# additional keywords, will be highlighted with style "word2"
-# these are the builtins for Python 2.7 created with ' '.join(dir(__builtins__))
-identifiers=ArithmeticError AssertionError AttributeError BaseException BufferError BytesWarning DeprecationWarning EOFError Ellipsis EnvironmentError Exception FloatingPointError FutureWarning GeneratorExit IOError ImportError ImportWarning IndentationError IndexError KeyError KeyboardInterrupt LookupError MemoryError NameError NotImplemented NotImplementedError OSError OverflowError PendingDeprecationWarning ReferenceError RuntimeError RuntimeWarning StandardError StopIteration SyntaxError SyntaxWarning SystemError SystemExit TabError TypeError UnboundLocalError UnicodeDecodeError UnicodeEncodeError UnicodeError UnicodeTranslateError UnicodeWarning UserWarning ValueError Warning ZeroDivisionError __debug__ __doc__ __import__ __name__ __package__ abs all any apply basestring bin bool buffer bytearray bytes callable chr classmethod cmp coerce compile complex copyright credits delattr dict dir divmod enumerate eval execfile exit file filter float format frozenset getattr globals hasattr hash help hex id input int intern isinstance issubclass iter len license list locals long map max memoryview min next object oct open ord pow print property quit range raw_input reduce reload repr reversed round set setattr slice sorted staticmethod str sum super tuple type unichr unicode vars xrange zip
+# these are the builtins for Python 2 and 3, created with scripts/update-python-identifiers.sh
+identifiers=ArithmeticError AssertionError AttributeError BaseException BlockingIOError BrokenPipeError BufferError BytesWarning ChildProcessError ConnectionAbortedError ConnectionError ConnectionRefusedError ConnectionResetError DeprecationWarning EOFError Ellipsis EnvironmentError Exception FileExistsError FileNotFoundError FloatingPointError FutureWarning GeneratorExit IOError ImportError ImportWarning IndentationError IndexError InterruptedError IsADirectoryError KeyError KeyboardInterrupt LookupError MemoryError NameError NotADirectoryError NotImplemented NotImplementedError OSError OverflowError PendingDeprecationWarning PermissionError ProcessLookupError ReferenceError ResourceWarning RuntimeError RuntimeWarning StandardError StopIteration SyntaxError SyntaxWarning SystemError SystemExit TabError TimeoutError TypeError UnboundLocalError UnicodeDecodeError UnicodeEncodeError UnicodeError UnicodeTranslateError UnicodeWarning UserWarning ValueError Warning ZeroDivisionError __build_class__ __debug__ __doc__ __import__ __loader__ __name__ __package__ __spec__ abs all any apply ascii basestring bin bool buffer bytearray bytes callable chr classmethod cmp coerce compile complex copyright credits delattr dict dir divmod enumerate eval execfile exit file filter float format frozenset getattr globals hasattr hash help hex id input int intern isinstance issubclass iter len license list locals long map max memoryview min next object oct open ord pow print property quit range raw_input reduce reload repr reversed round set setattr slice sorted staticmethod str sum super tuple type unichr unicode vars xrange zip
[lexer_properties]
fold.comment.python=1
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Thu, 12 Nov 2015 14:08:41 UTC
Commit: 43e13e61bf0e80aef284a1605e0d7e6d92da4667
https://github.com/geany/geany/commit/43e13e61bf0e80aef284a1605e0d7e6d92da4…
Log Message:
-----------
Mention autogen.sh in README
Closes #747.
Modified Paths:
--------------
README
Modified: README
3 lines changed, 3 insertions(+), 0 deletions(-)
===================================================================
@@ -46,6 +46,9 @@ $ make
(as root)
% make install
+If you are building from a Git clone rather than a source tarball, you need
+to run ./autogen.sh first.
+
For more configuration details run
$ ./configure --help
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Tue, 10 Nov 2015 21:30:10 UTC
Commit: d7a7c130271cfbf6e840e880849a1ac306a0053e
https://github.com/geany/geany/commit/d7a7c130271cfbf6e840e880849a1ac306a00…
Log Message:
-----------
Merge pull request #741 from eht16/waf_deprecation_notice
Add a deprecation notice when using the Waf build system
Modified Paths:
--------------
wscript
Modified: wscript
10 lines changed, 10 insertions(+), 0 deletions(-)
===================================================================
@@ -349,6 +349,15 @@ but you then may not have a local copy of the HTML manual.'''
conf.msg('Use virtual terminal support', conf.options.no_vte and 'no' or 'yes')
if revision is not None:
conf.msg('Compiling Git revision', revision)
+ # deprecation warning
+ _show_deprecation_warning(conf)
+
+
+def _show_deprecation_warning(ctx):
+ Logs.pprint(
+ 'RED',
+ 'The Waf build system is deprecated and will be removed in the removed in Geany 1.27. '
+ 'Please use the Autotools build system.')
def options(opt):
@@ -393,6 +402,7 @@ def options(opt):
def build(bld):
is_win32 = _target_is_win32(bld)
+ bld.add_post_fun(_show_deprecation_warning)
if bld.cmd == 'clean':
_remove_linguas_file()
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Mon, 09 Nov 2015 22:30:08 UTC
Commit: 1569fc8a7642f85f53aaa8eb3fbdbe1b19938d24
https://github.com/geany/geany/commit/1569fc8a7642f85f53aaa8eb3fbdbe1b19938…
Log Message:
-----------
Add Slovak and Indonesian translations updates to NEWS
Modified Paths:
--------------
NEWS
Modified: NEWS
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -38,7 +38,7 @@ Geany 1.26 (unreleased)
* Recognize `.mml` and `.mathml` as XML (Devyn Collier Johnson, PR#731).
Internationalization
- * Updated translations: de, el, es, fr, kk, pt, sv, ru
+ * Updated translations: de, el, es, fr, id, kk, pt, sk, sv, ru
* Fix internationalization of "Open in New Window" items.
API
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).