Hello community,

here is the log from the commit of package Box2D for openSUSE:Factory checked 
in at 2016-08-15 10:31:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/Box2D (Old)
 and      /work/SRC/openSUSE:Factory/.Box2D.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "Box2D"

Changes:
--------
New Changes file:

--- /dev/null   2016-07-07 10:01:34.856033756 +0200
+++ /work/SRC/openSUSE:Factory/.Box2D.new/Box2D.changes 2016-08-15 
10:31:33.000000000 +0200
@@ -0,0 +1,38 @@
+-------------------------------------------------------------------
+Fri Jul 22 17:01:05 UTC 2016 - [email protected]
+
+- RPM group correction
+
+-------------------------------------------------------------------
+Thu Jul 21 16:16:24 UTC 2016 - [email protected]
+
+- Fixed Factory review (License.txt is not packaged).
+- Minor spec clean-up (may fix SLE build).
+- Cmake release with debug info build type.
+
+-------------------------------------------------------------------
+Sun Jul 17 19:31:50 UTC 2016 - [email protected]
+
+- Fixed tar.gz by osc service localrun download_files
+- Fixed version in baselibs.conf (for 32bits packages)
+- Added baselibs.conf as source1
+
+-------------------------------------------------------------------
+Wed Dec 16 16:32:57 UTC 2015 - [email protected]
+
+- Update to new upstream version 2.3.1:
+ * Polygon creation now computes the convex hull.
+ * The convex hull code will merge vertices closer than
+   dm_linearSlop.
+ * Vertices no longer need to be ordered.
+ * New GUI
+ * Various other bugfixes
+- removed upstream patched Box2D_v2.2.1-lib64.patch
+- replaced Box2D_v2.2.1-version.patch with
+  Box2D-fix-version-2.3.1.patch
+
+-------------------------------------------------------------------
+Tue Jun 12 18:53:49 UTC 2012 - [email protected]
+
+- new package
+

New:
----
  Box2D-2.3.1.tar.gz
  Box2D-fix-version-2.3.1.patch
  Box2D.changes
  Box2D.spec
  baselibs.conf

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ Box2D.spec ++++++
#
# spec file for package Box2D
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2012 Adam Mizerski <[email protected]>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


%if 0%{?suse_version} < 1310
%define buildroot $RPM_BUILD_ROOT
%endif
%define so_ver 2_3_1
Name:           Box2D
Version:        2.3.1
Release:        0
Summary:        A 2D Physics Engine for Games
License:        Zlib
Group:          Development/Libraries/C and C++
Url:            http://box2d.org/
Source0:        
https://github.com/erincatto/Box2D/archive/v%{version}/%{name}-%{version}.tar.gz
Source1:        baselibs.conf
# PATCH-FIX-UPSTREAM Box2D-fix-version-2.3.1.patch -- already fixed upstream
Patch0:         %{name}-fix-version-2.3.1.patch
BuildRequires:  cmake >= 3
BuildRequires:  dos2unix
BuildRequires:  gcc-c++
%if 0%{?suse_version}
BuildRequires:  fdupes
%endif

%description
Box2D is an open source C++ engine for simulating rigid bodies in 2D.

%package -n lib%{name}%{so_ver}
Summary:        A 2D Physics Engine for Games
Group:          System/Libraries

%description -n lib%{name}%{so_ver}
Box2D is an open source C++ engine for simulating rigid bodies in 2D.

%package -n lib%{name}-devel
Summary:        A 2D Physics Engine for Games
Group:          Development/Libraries/C and C++
Requires:       lib%{name}%{so_ver} = %{version}

%description -n lib%{name}-devel
Box2D is an open source C++ engine for simulating rigid bodies in 2D.

%package doc
Summary:        A 2D Physics Engine for Games
Group:          Documentation/Other
BuildArch:      noarch

%description doc
Box2D is an open source C++ engine for simulating rigid bodies in 2D.

%prep
%setup -q -n %{name}-%{version}/%{name}
dos2unix Changes.txt License.txt Readme.txt
%patch0

%build
%cmake \
    -DBOX2D_INSTALL=ON \
    -DBOX2D_INSTALL_DOC=ON \
    -DBOX2D_BUILD_SHARED=ON \
    -DBOX2D_BUILD_STATIC=OFF \
    -DBOX2D_BUILD_EXAMPLES=OFF \
    -DCMAKE_BUILD_TYPE=RelWithDebInfo
make VERBOSE=1 %{?_smp_mflags}

%install
%cmake_install
%if 0%{?suse_version}
%fdupes -s %{buildroot}%{_datadir}/doc/%{name}/Documentation/API/html
%endif

%post -n lib%{name}%{so_ver} -p /sbin/ldconfig

%postun -n lib%{name}%{so_ver} -p /sbin/ldconfig

%files -n lib%{name}%{so_ver}
%defattr(-,root,root,-)
%{_libdir}/lib%{name}.so.*

%files -n lib%{name}-devel
%defattr(-,root,root,-)
%{_includedir}/%{name}
%{_libdir}/lib%{name}.so
%{_libdir}/%{name}
%{_libdir}/cmake/%{name}

%files doc
%defattr(-,root,root,-)
%doc Changes.txt License.txt Readme.txt
%{_datadir}/doc/%{name}/

%changelog
++++++ Box2D-fix-version-2.3.1.patch ++++++
--- CMakeLists.txt.orig 2014-04-06 02:43:12.000000000 +0200
+++ CMakeLists.txt      2015-12-16 20:57:28.800666424 +0100
@@ -14,7 +14,7 @@
 option(BOX2D_BUILD_STATIC "Build Box2D static libraries" ON)
 option(BOX2D_BUILD_EXAMPLES "Build Box2D examples" ON)
 
-set(BOX2D_VERSION 2.3.0)
+set(BOX2D_VERSION 2.3.1)
 set(LIB_INSTALL_DIR lib${LIB_SUFFIX})
 
 # The Box2D library.
++++++ baselibs.conf ++++++
libBox2D2_3_1
libBox2D-devel

Reply via email to