This commit is contained in:
parent
5bcd22c2e6
commit
e2f5c77919
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2fa64e7d62cfb12040f96b9ab6de4d5700709ba9d48775873600ef035b100b08
|
|
||||||
size 3544867
|
|
3
swig-1.3.35.tar.bz2
Normal file
3
swig-1.3.35.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:95533a6b34d3b400340ae04fa1976d35f4fcf4c0748a736cabfc351f6e94e58f
|
||||||
|
size 3671661
|
@ -1,25 +0,0 @@
|
|||||||
--- Lib/python/pyclasses.swg
|
|
||||||
+++ Lib/python/pyclasses.swg
|
|
||||||
@@ -74,7 +74,10 @@
|
|
||||||
|
|
||||||
PyObject_ptr(PyObject *obj, bool initial_ref = true) :_obj(obj)
|
|
||||||
{
|
|
||||||
- if (initial_ref) Py_XINCREF(_obj);
|
|
||||||
+ if (initial_ref)
|
|
||||||
+ {
|
|
||||||
+ Py_XINCREF(_obj);
|
|
||||||
+ }
|
|
||||||
}
|
|
||||||
|
|
||||||
PyObject_ptr & operator=(const PyObject_ptr& item)
|
|
||||||
--- Lib/python/pycontainer.swg
|
|
||||||
+++ Lib/python/pycontainer.swg
|
|
||||||
@@ -448,7 +448,7 @@
|
|
||||||
|
|
||||||
~PySequence_Cont()
|
|
||||||
{
|
|
||||||
- if (_seq) Py_DECREF(_seq);
|
|
||||||
+ if (_seq) { Py_DECREF(_seq); }
|
|
||||||
}
|
|
||||||
|
|
||||||
size_type size() const
|
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 8 09:55:39 CEST 2008 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- updated to 1.3.35
|
||||||
|
* Octave language module added
|
||||||
|
* Bug fixes in Python, Lua, Java, C#, Perl modules
|
||||||
|
* A few other generic bugs and runtime assertions fixed
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 26 15:04:30 CET 2008 - mmarek@suse.cz
|
Wed Mar 26 15:04:30 CET 2008 - mmarek@suse.cz
|
||||||
|
|
||||||
|
20
swig.spec
20
swig.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package swig (Version 1.3.34)
|
# spec file for package swig (Version 1.3.35)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -18,11 +18,10 @@ License: BSD 3-Clause
|
|||||||
Group: Development/Languages/C and C++
|
Group: Development/Languages/C and C++
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Summary: Simplified Wrapper and Interface Generator
|
Summary: Simplified Wrapper and Interface Generator
|
||||||
Version: 1.3.34
|
Version: 1.3.35
|
||||||
Release: 8
|
Release: 2
|
||||||
Source: swig-%{version}.tar.bz2
|
Source: swig-%{version}.tar.bz2
|
||||||
Patch4: swig-use_uninitialized_var.patch
|
Patch4: swig-use_uninitialized_var.patch
|
||||||
Patch5: swig-python_disambiguate_if.patch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -43,6 +42,7 @@ Authors:
|
|||||||
William S Fulton <wsf@fultondesigns.co.uk>
|
William S Fulton <wsf@fultondesigns.co.uk>
|
||||||
|
|
||||||
%package doc
|
%package doc
|
||||||
|
License: BSD 3-Clause
|
||||||
Summary: SWIG Manual
|
Summary: SWIG Manual
|
||||||
Group: Development/Languages/C and C++
|
Group: Development/Languages/C and C++
|
||||||
Requires: swig
|
Requires: swig
|
||||||
@ -66,6 +66,7 @@ Authors:
|
|||||||
Dave Beazley <beazley@cs.utah.edu>
|
Dave Beazley <beazley@cs.utah.edu>
|
||||||
|
|
||||||
%package examples
|
%package examples
|
||||||
|
License: BSD 3-Clause
|
||||||
Summary: SWIG example files
|
Summary: SWIG example files
|
||||||
Group: Development/Languages/C and C++
|
Group: Development/Languages/C and C++
|
||||||
Requires: swig
|
Requires: swig
|
||||||
@ -91,8 +92,8 @@ Authors:
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch4
|
# disabled, see https://sourceforge.net/tracker/?func=detail&atid=301645&aid=1925132&group_id=1645
|
||||||
%patch5
|
#patch4
|
||||||
|
|
||||||
%build
|
%build
|
||||||
v1=$(awk '/^# Generated by GNU Autoconf / { print $6; exit; }' configure)
|
v1=$(awk '/^# Generated by GNU Autoconf / { print $6; exit; }' configure)
|
||||||
@ -148,6 +149,11 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/swig
|
%{_libdir}/swig
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Apr 08 2008 mmarek@suse.cz
|
||||||
|
- updated to 1.3.35
|
||||||
|
* Octave language module added
|
||||||
|
* Bug fixes in Python, Lua, Java, C#, Perl modules
|
||||||
|
* A few other generic bugs and runtime assertions fixed
|
||||||
* Wed Mar 26 2008 mmarek@suse.cz
|
* Wed Mar 26 2008 mmarek@suse.cz
|
||||||
- remove the croak patch, croak(Nullch) is correct (see
|
- remove the croak patch, croak(Nullch) is correct (see
|
||||||
https://sourceforge.net/tracker/?func=detail&atid=301645&aid=1925121&group_id=1645)
|
https://sourceforge.net/tracker/?func=detail&atid=301645&aid=1925121&group_id=1645)
|
||||||
@ -240,7 +246,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
[#141754] (write-loop.patch)
|
[#141754] (write-loop.patch)
|
||||||
* Wed Nov 16 2005 ro@suse.de
|
* Wed Nov 16 2005 ro@suse.de
|
||||||
- fix build on x86_64 (fPIC in gifplot)
|
- fix build on x86_64 (fPIC in gifplot)
|
||||||
* Wed Nov 02 2005 dmueller@suse.de
|
* Thu Nov 03 2005 dmueller@suse.de
|
||||||
- don't build as root
|
- don't build as root
|
||||||
* Wed Nov 02 2005 uli@suse.de
|
* Wed Nov 02 2005 uli@suse.de
|
||||||
- update -> 1.3.27
|
- update -> 1.3.27
|
||||||
|
Loading…
Reference in New Issue
Block a user