1
0

Accepting request 692494 from science

3.6.5 update

OBS-URL: https://build.opensuse.org/request/show/692494
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cura-engine-lulzbot?expand=0&rev=8
This commit is contained in:
Dominique Leuenberger 2019-04-09 18:18:49 +00:00 committed by Git OBS Bridge
commit 76a33cd251
7 changed files with 13 additions and 37 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a9d782936373e94cf7fcbab8a707500fea7f454dc39fa603377c120a979c10c6
size 4335629

3
CuraEngine-3.6.5.obscpio Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6e3f87d423486a6bf72cf57688126d1915a4b5aceae5ed80fe7a841243059f8f
size 4335628

View File

@ -1,5 +1,5 @@
name: CuraEngine
version: 3.6.4
version: 3.6.5
mtime: 1543917478
commit: 829ecb34609e34566405159554f5863d6940afd2

View File

@ -2,8 +2,8 @@
<service name="obs_scm" mode="disabled">
<param name="url">https://code.alephobjects.com/diffusion/CTE/cura-engine.git</param>
<param name="scm">git</param>
<param name="revision">v3.6.4</param>
<param name="version">3.6.4</param>
<param name="revision">v3.6.5</param>
<param name="version">3.6.5</param>
<param name="submodules">disable</param>
<param name="filename">CuraEngine</param>
</service>

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Apr 5 12:05:33 UTC 2019 - Adrian Schröter <adrian@suse.de>
- update to version 3.6.5
* merged 32bit fixes, obsoletes fix-32bit-build.patch
-------------------------------------------------------------------
Thu Feb 21 09:05:20 UTC 2019 - Adrian Schröter <adrian@suse.de>

View File

@ -17,7 +17,7 @@
Name: cura-engine-lulzbot
Version: 3.6.4
Version: 3.6.5
Release: 0
Summary: 3D printer control software
License: AGPL-3.0-only
@ -27,7 +27,6 @@ Url: https://code.alephobjects.com/diffusion/CTE/cura-engine.git
Source0: CuraEngine-%{version}.tar.xz
Source1: CuraEngine.1
Patch1: fix-build.patch
Patch2: fix-32bit-build.patch
%if 0%{?suse_version} < 1500
BuildRequires: gcc6-c++
#!BuildIgnore: libgcc_s1
@ -49,7 +48,6 @@ This is the LulzBot variation of the engine.
%prep
%setup -q -n CuraEngine-%version
%patch1 -p1
%patch2 -p1
%build
%if 0%{?suse_version} < 1500

View File

@ -1,28 +0,0 @@
diff --git a/tests/arcus/ArcusCommunicationPrivateTest.cpp b/tests/arcus/ArcusCommunicationPrivateTest.cpp
index e802d3e2..eae67511 100644
--- a/tests/arcus/ArcusCommunicationPrivateTest.cpp
+++ b/tests/arcus/ArcusCommunicationPrivateTest.cpp
@@ -202,8 +202,6 @@ void ArcusCommunicationPrivateTest::readMeshGroupMessageTest()
auto& vertices = meshes[0].vertices;
CPPUNIT_ASSERT(! vertices.empty());
- CPPUNIT_ASSERT_EQUAL(vertices.size(), 8ul); //A cube should have 8 unique vertices.
- CPPUNIT_ASSERT_EQUAL(meshes[0].faces.size(), 12ul); // A cube should have 12 tri-s (2 for each 6 sides of the dice).
// Distances should be the same:
@@ -231,10 +229,12 @@ void ArcusCommunicationPrivateTest::readMeshGroupMessageTest()
}
// - Then, just compare:
+// it seems to be a problem with the test and not the code
+return;
for (int i = 0; i < 3; ++i)
{
CPPUNIT_ASSERT_EQUAL(max_coords[i] - min_coords[i], raw_max_coords[i] - raw_min_coords[i]);
}
}
-} //namespace cura
\ No newline at end of file
+} //namespace cura