Accepting request 789037 from games
OBS-URL: https://build.opensuse.org/request/show/789037 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/angelscript?expand=0&rev=3
This commit is contained in:
commit
7b912f2863
@ -1,3 +1,59 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 27 13:18:01 UTC 2020 - Christophe Giboudeaux <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 2.34.0:
|
||||||
|
* Fixed problem in compiler with bool property returned as
|
||||||
|
reference in conditions
|
||||||
|
* Fixed problem with catching exceptions in functions with
|
||||||
|
multiple try-catch blocks
|
||||||
|
* Fixed read from unallocated memory in compiler when
|
||||||
|
compiling default args
|
||||||
|
* Fixed problem with doing a value assign from array
|
||||||
|
holding handles
|
||||||
|
* Fixed crash in compiler when there are multiple matching
|
||||||
|
global functions for set accessors
|
||||||
|
* Fixed crash that could happen when loading bytecode with
|
||||||
|
shared classes that doesn't match current declared shared classes
|
||||||
|
* Fixed assert failure when compiling a construct call with
|
||||||
|
an anonymous initialization list
|
||||||
|
* Fixed incorrect bytecode sequence when doing value assignment
|
||||||
|
from handles for script classes using default assignment operator
|
||||||
|
* Fixed problem with default arg not being able to access members
|
||||||
|
in expression
|
||||||
|
* Fixed crash when releasing engine with template specialization
|
||||||
|
containing child funcdefs
|
||||||
|
* Fixed asCALL_THISCALL_ASGLOBAL to function correctly with
|
||||||
|
multiple inheritance
|
||||||
|
* Compiler now identifies match for functions taking object as
|
||||||
|
inout ref when passing anonymous init list
|
||||||
|
* Compiler now interrupts compilation after identifying error
|
||||||
|
while compiling use of get property accessor
|
||||||
|
* Compiler no longer identifies global script functions
|
||||||
|
as property accessors when this is turned off with
|
||||||
|
asEP_PROPERTY_ACCESSOR_MODE
|
||||||
|
* Fixed config for FreeBSD on non-x86 64bit targets
|
||||||
|
* asEP_PROPERTY_ACCESSOR_MODE has a new mode (3) to require
|
||||||
|
property accessors to be flagged with 'property'
|
||||||
|
* Property accessors are validated upon declaration when
|
||||||
|
flagged with 'property'
|
||||||
|
* asEP_PROPERTY_ACCESSOR_MODE is now set to 3 by default
|
||||||
|
* Handles can now be declared read-only
|
||||||
|
* Functions and methods intended to be used as virtual
|
||||||
|
property should now be declared with a 'property' decorator
|
||||||
|
* Added non-reserved keyword 'property'
|
||||||
|
* Added asIScriptFunction::IsProperty
|
||||||
|
* Removed an invalid assert() statement in ExecuteString
|
||||||
|
* Debugger commands 'n' and 'o' no longer prints 'No
|
||||||
|
script is running' when used as first command
|
||||||
|
* Debugger command 'p' prints 'Invalid expression. No
|
||||||
|
matching symbol' when the symbol doesn't exist in the current context
|
||||||
|
* Fixed missing check for failed memory allocation
|
||||||
|
in CScriptArray::Precache
|
||||||
|
* The string factory in the std::string add-on is
|
||||||
|
now thread safe
|
||||||
|
* Enabled Virtual Terminal Processing in asrun for colored
|
||||||
|
text on Windows console
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 18 19:46:51 UTC 2019 - Matthias Eliasson <matthias.eliasson@gmail.com>
|
Mon Feb 18 19:46:51 UTC 2019 - Matthias Eliasson <matthias.eliasson@gmail.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package angelscript
|
# spec file for package angelscript
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,14 +16,14 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define sover 2_33_0
|
%define sover 2_34_0
|
||||||
Name: angelscript
|
Name: angelscript
|
||||||
Version: 2.33.0
|
Version: 2.34.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Scripting library
|
Summary: Scripting library
|
||||||
License: Zlib
|
License: Zlib
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
URL: http://www.angelcode.com/angelscript/
|
URL: https://www.angelcode.com/angelscript/
|
||||||
Source: http://www.angelcode.com/angelscript/sdk/files/%{name}_%{version}.zip
|
Source: http://www.angelcode.com/angelscript/sdk/files/%{name}_%{version}.zip
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
@ -67,7 +67,7 @@ applications that want to make use of the AngelScript library.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
export CXXFLAGS="%{optflags}"
|
export CXXFLAGS="%{optflags}"
|
||||||
make %{?_smp_mflags} shared
|
%make_build shared
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install_shared install_header install_docs PREFIX=%{_prefix} DESTDIR=%{buildroot} LIBDIR_DEST=%{_libdir} DOCDIR_BASEDIR=%{_defaultdocdir}/%{name}
|
make install_shared install_header install_docs PREFIX=%{_prefix} DESTDIR=%{buildroot} LIBDIR_DEST=%{_libdir} DOCDIR_BASEDIR=%{_defaultdocdir}/%{name}
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3691090b23d4382849a4f4e0ab71d94526636c64deec94a97d7d9419e2e21ea3
|
|
||||||
size 1954948
|
|
3
angelscript_2.34.0.zip
Normal file
3
angelscript_2.34.0.zip
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6faa043717522ae0fb2677d907ca5b0e35a79d28e5f83294565e6c6229bfbdf7
|
||||||
|
size 2020026
|
Loading…
Reference in New Issue
Block a user