Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 612068 - sys-apps/portage: support conditional USE configuration based on available IUSE for a given package
Summary: sys-apps/portage: support conditional USE configuration based on available IU...
Status: CONFIRMED
Alias: None
Product: Portage Development
Classification: Unclassified
Component: Enhancement/Feature Requests (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Portage team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-03-08 16:36 UTC by Lagu
Modified: 2017-03-09 18:19 UTC (History)
1 user (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 Lagu 2017-03-08 16:36:51 UTC
Hi all, i want request this, basically in the system we can want choose patterns of USEs to enable disable, etc, so i want request some way to can get the state of the USE to can use it, the main idea here is can use this globally, i'll invent some syntax to do this as example, first we know the states can take the USEs:

-2 - Blocked (-cuda)
-1 - Not Available (don't exist in the package)
1 - Available (exist but don't is defined)
2 - Enabled (cuda)


So now for example i want use GTK3 over GTK2 when is possible so i write

(GTK3 == 1)? (GTK3) (GTK3 == -1)? (GTK2)

or

(GTK3 == 1)? (GTK3 -GTK2) (GTK3 == -1)? (GTK2)


This can be written to other format to be more comfortable.


Thx. Cya.
Comment 1 Michael Palimaka (kensington) gentoo-dev 2017-03-09 10:51:51 UTC
I think there's a similar bug about this (thinking of the whole USE="gui" discussion) but I couldn't find it.
Comment 2 Lagu 2017-03-09 18:19:26 UTC
mm, i was thinking use this more for up versions in python or ruby, because actually a lot of packages uses old versions when exist news..., and i think can be better if we can start upgrading versions from packages and USEs, i think this can help to avoid that thing that happen when in in portage remove some slot of ruby for example, and then all ppl re-emerging a lot of packages.

There is a lot of more things we can do with this, for example i would like this too:

(opencl == 1)? (opencl) (opencl == -1)? (cuda)

You know, start deprecating cuda and start using opencl instead.

Thx. Cya.