Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 755725 - net-print/hplip 3.20.9-r4 ebuild fails to build qt5 ui
Summary: net-print/hplip 3.20.9-r4 ebuild fails to build qt5 ui
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Daniel Pielmeier
URL:
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2020-11-20 15:48 UTC by Jack MacNaught
Modified: 2020-11-20 17:46 UTC (History)
1 user (show)

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


Attachments
emerge --info (emerge.info,7.08 KB, application/x-info)
2020-11-20 15:48 UTC, Jack MacNaught
Details
Modified ebuild enabling qt5 build (hplip-3.20.9-r4.ebuild,8.12 KB, text/plain)
2020-11-20 15:50 UTC, Jack MacNaught
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jack MacNaught 2020-11-20 15:48:27 UTC
Created attachment 673375 [details]
emerge --info

Ebuild has been changed from 3.20.9-r3 to r4, and no longer builds the qt5 ui as expected. 
Ebuild enables gui-build, but not qt5

if use qt5 ; then
			minimal_build="${minimal_build} --enable-gui-build"
		else
			minimal_build="${minimal_build} --disable-gui-build"
		fi

changing Ebuild to include qt5, builds ui as expected

if use qt5 ; then
                        minimal_build="${minimal_build} --enable-gui-build"
                        minimal_build="${minimal_build} --enable-qt5"
                else
                        minimal_build="${minimal_build} --disable-gui-build"
                fi
Comment 1 Jack MacNaught 2020-11-20 15:50:10 UTC
Created attachment 673378 [details]
Modified ebuild enabling qt5 build
Comment 2 Larry the Git Cow gentoo-dev 2020-11-20 17:46:38 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=223e8e44f5b2f7b283bb9d1a250cdbe06c922cbb

commit 223e8e44f5b2f7b283bb9d1a250cdbe06c922cbb
Author:     Daniel Pielmeier <billie@gentoo.org>
AuthorDate: 2020-11-20 17:46:02 +0000
Commit:     Daniel Pielmeier <billie@gentoo.org>
CommitDate: 2020-11-20 17:46:02 +0000

    net-print/hplip: Fix bug #755725.
    
    Thanks to for the Jack MacNaught report.
    
    Closes: https://bugs.gentoo.org/755725
    Package-Manager: Portage-3.0.9, Repoman-3.0.2
    Signed-off-by: Daniel Pielmeier <billie@gentoo.org>

 net-print/hplip/hplip-3.20.9-r4.ebuild | 2 ++
 1 file changed, 2 insertions(+)