Hi all,
In Tizen, some packages have unconstrained status.
eg, xorg-server should not try to build into a pure wayland platform.

"unresolvable" should be a transitional status to "succeeded".

In a Tizen delivery, we should only find "succeeded" or "excluded".


Tizen devel  | Tizen release
_____________|______________
succeeded    | succeeded
excluded     | excluded
broken       |
failed       |
unresolvable |
blocked      |
locked       |
note:
    - The disabled status is only
      allowed for OBS administration.

Can we add this to the Tizen packaging Policies?

_________________________________________________

Sample:

build only for pure x11 platform.
wayland  |x      |meaning
---------------------------
0        |1      |pure X11 platform(no wayland)
1        |0      |pure wayland platform (no X11)
1        |1      |wayland but X compatibility
0        |0      |no X and no wayland


Package only in wayland:
    %if !%{with wayland}        
    ExclusiveArch:
    %endif

Package only in x:
    %if !%{with x}      
    ExclusiveArch:
    %endif

Package only in x if no wayland:
    %if %{with x} && !%{with wayland}
    ExclusiveArch:  %ix86 x86_64
    %else       
    ExclusiveArch:
    %endif

_______________________________________________
Dev mailing list
[email protected]
https://lists.tizen.org/listinfo/dev

Reply via email to