Bug 1305220

Summary: openscad: FTBFS in rawhide
Product: [Fedora] Fedora Reporter: Fedora Release Engineering <releng>
Component: openscadAssignee: Miro Hrončok <mhroncok>
Status: CLOSED ERRATA QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 24CC: dj, jason, jurman.greg+fas, jwakely, mhroncok, przemek, yselkowi
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: openscad-2015.03.2-6.fc24 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2016-04-13 21:33:43 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 1305208    
Attachments:
Description Flags
build.log
none
root.log
none
state.log none

Description Fedora Release Engineering 2016-02-06 06:30:23 UTC
Your package openscad failed to build from source in current rawhide.

http://koji.fedoraproject.org/koji/taskinfo?taskID=12800996

For details on mass rebuild see https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild

Comment 1 Fedora Release Engineering 2016-02-06 06:30:27 UTC
Created attachment 1121592 [details]
build.log

Comment 2 Fedora Release Engineering 2016-02-06 06:30:29 UTC
Created attachment 1121593 [details]
root.log

Comment 3 Fedora Release Engineering 2016-02-06 06:30:30 UTC
Created attachment 1121594 [details]
state.log

Comment 4 Jan Kurik 2016-02-24 14:25:24 UTC
This bug appears to have been reported against 'rawhide' during the Fedora 24 development cycle.
Changing version to '24'.

More information and reason for this action is here:
https://fedoraproject.org/wiki/Fedora_Program_Management/HouseKeeping/Fedora24#Rawhide_Rebase

Comment 5 Yaakov Selkowitz 2016-03-07 22:16:45 UTC
Reported upstream: https://github.com/openscad/openscad/issues/1575

Comment 6 Jason Merrill 2016-03-29 03:44:21 UTC
Reduced:

#include <type_traits>
#include <utility>

template <class T> struct A;
template <class T> struct B;

template <class T> struct A
{
  A(A&&) = default;
  A(const B<T> &);
};

template <class T> struct B
{
  std::pair<A<T>,int> a;
  B(B&&) = default;
};

bool b = std::is_move_constructible<A<int> >::value;

Comment 7 Yaakov Selkowitz 2016-03-29 04:09:53 UTC
(In reply to Jason Merrill from comment #6)
> Reduced:

That compiles fine with g++ 5.3 (with -std=c++11) but not with 6.0.  PR?

Comment 8 Miro Hrončok 2016-03-29 10:48:06 UTC
Shouldn't wee send that upstream?

https://github.com/openscad/openscad/issues/1575

Comment 9 Jonathan Wakely 2016-04-04 11:23:33 UTC
*** Bug 1323402 has been marked as a duplicate of this bug. ***

Comment 10 Miro Hrončok 2016-04-04 11:53:48 UTC
What is the contingency plan if gcc doesn't get fixed?

I don't want to end up without OpenSCAD in F24.

Comment 11 Jonathan Wakely 2016-04-05 12:11:13 UTC
GCC has been fixed.

Comment 12 Jonathan Wakely 2016-04-05 12:11:37 UTC
... upstream. Not in Fedora yet.

Comment 13 Miro Hrončok 2016-04-05 12:55:07 UTC
Awesome, thanks. Shall I create a bug for gcc component?

Comment 14 Miro Hrončok 2016-04-10 01:25:39 UTC
The gcc issue is fixed in gcc-6.0.0-0.20.fc24. I've submitted a buidroot override and will build openscad once it's in effect.

Already successfully built in mock and building in Koji for rawhide.

Comment 15 Upstream Release Monitoring 2016-04-10 02:21:41 UTC
churchyard's openscad-2015.03.2-6.fc25 completed http://koji.fedoraproject.org/koji/buildinfo?buildID=752981

Comment 16 Fedora Update System 2016-04-10 11:05:30 UTC
openscad-2015.03.2-6.fc24 has been submitted as an update to Fedora 24. https://bodhi.fedoraproject.org/updates/FEDORA-2016-c59697e8db

Comment 17 Fedora Update System 2016-04-11 10:19:47 UTC
openscad-2015.03.2-6.fc24 has been pushed to the Fedora 24 testing repository. If problems still persist, please make note of it in this bug report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2016-c59697e8db

Comment 18 Fedora Update System 2016-04-13 21:33:39 UTC
openscad-2015.03.2-6.fc24 has been pushed to the Fedora 24 stable repository. If problems still persist, please make note of it in this bug report.

Comment 19 Miro Hrončok 2016-04-14 09:18:34 UTC
Thank you all for help.