Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 607536 - x11-misc/qcomicbook-0.9.1 version bump
Summary: x11-misc/qcomicbook-0.9.1 version bump
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Desktop Misc. Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-01-29 05:18 UTC by consus
Modified: 2017-03-13 03:22 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description consus 2017-01-29 05:18:43 UTC
There is a new release available with the support for building against Qt5 (new USE flag I guess).
Comment 1 Michael Weber (RETIRED) gentoo-dev 2017-01-29 11:45:26 UTC
commit 66ab94eadd0480d2fe736da7df927cd2cc9832ee
Author: Michael Weber <xmw@gentoo.org>
Date:   Sun Jan 29 12:44:44 2017 +0100

    x11-misc/qcomicbook: Version bump (bug 607536, thanks consus@gmx.com), update SRC_URI.
    
    Package-Manager: Portage-2.3.3, Repoman-2.3.1
Comment 2 Michael Weber (RETIRED) gentoo-dev 2017-01-29 11:58:50 UTC
(In reply to consus from comment #0)
> There is a new release available with the support for building against Qt5
> (new USE flag I guess).

According to my observation, they just changed the qt requirement from qt4 to qt5, without any configure switches. Please reply if I got it wrong.

# ebuild qcomicbook-0.9.0-r1.ebuild clean unpack
# ebuild qcomicbook-0.9.1.ebuild clean unpack
# diff -ru /var/tmp/portage/x11-misc/qcomicbook-0.9.0-r1/work/qcomicbook-0.9.0 /var/tmp/portage/x11-misc/qcomicbook-0.9.1/work/qcomicbook-0.9.1 | less

...
-SET(QT_MIN_VERSION "4.5.0")
-FIND_PACKAGE(Qt4 REQUIRED)
+#set(CMAKE_AUTOMOC ON)
+
+SET(QT_MIN_VERSION "5.4.0")
+FIND_PACKAGE(Qt5Core REQUIRED)
+FIND_PACKAGE(Qt5Widgets REQUIRED)
+FIND_PACKAGE(Qt5LinguistTools REQUIRED)
+FIND_PACKAGE(Qt5PrintSupport REQUIRED)
+FIND_PACKAGE(Qt5X11Extras)
...
Comment 3 consus 2017-01-30 09:23:47 UTC
Yep, they completely changed the requirements, my bad.