Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 686888 - package.license can not be used in profiles, only in /etc/portage
Summary: package.license can not be used in profiles, only in /etc/portage
Status: CONFIRMED
Alias: None
Product: Gentoo Hosted Projects
Classification: Unclassified
Component: PMS/EAPI (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: PMS/EAPI
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-05-28 02:15 UTC by Austin English
Modified: 2021-03-30 08:05 UTC (History)
0 users

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 Austin English 2019-05-28 02:15:35 UTC
Licenses may be accepted per package by defining an atom in /etc/portage/package.license, i.e.,

```
# This allows 'license' for category/package
category/package license
```

However, this cannot be used within a profile. The only way to accept a license within a profile is in make.defaults, but that then affects _every_ package. Just as profiles allow package.use, etc. to tweak individual package settings from within the profile, package.license should be supported to do the same.

Reproducible: Always

Steps to Reproduce:
echo "category/package license" >> /etc/portage/make.profile/package.license

emerge category/package
Actual Results:  
Package is masked by a license not accepted in /etc/portage/make.conf (et al)

Expected Results:  
Package in unmasked and emerges.
Comment 1 Zac Medico gentoo-dev 2019-05-28 06:54:40 UTC
For consistency with package.accept_keywords, I'd like to call it package.accept_license.
Comment 2 Robert Dyer 2019-06-03 16:38:47 UTC
(In reply to Zac Medico from comment #1)
> For consistency with package.accept_keywords, I'd like to call it
> package.accept_license.

I think you're kind of in a pickle if you want consistency here. As per `portage(5)`, the file for defining overrides to `ACCEPT_LICENSE` and/or the profile is `/etc/portage/package.license`. I've always kind of thought that file should be `package.accept_license` to match the variable in `make.conf(5)` anyway, but that's a call for you to make.
Comment 3 Tom Samstag 2021-03-29 18:46:39 UTC
Came here to file this bug. Regardless of the naming of the file, the functionality of accepting licenses per-package is the only one of the package.* files that appears to be required to be in /etc/portage instead of profiles.

I use a profile in my own overlay to manage my portage configuration for multiple hosts. In my profile, I can configure all the USE flags, keywords, etc, but I can't accept licenses per-package because of this bug.
Comment 4 Zac Medico gentoo-dev 2021-03-29 20:54:01 UTC
For portage, we could add a profile-formats extension for this. We recently did something similar for repository deps (bug 651208).
Comment 5 Ulrich Müller gentoo-dev 2021-03-29 21:08:12 UTC
This is comparable to accepting keywords for a package, which cannot be done in a profile either?

Renaming the file to package.accept_license would clarify that it's part of the user configuration (overriding/augmenting ACCEPT_LICENSE in make.conf).
Comment 6 Zac Medico gentoo-dev 2021-03-29 22:04:18 UTC
(In reply to Ulrich Müller from comment #5)
> This is comparable to accepting keywords for a package, which cannot be done
> in a profile either?

That is correct. While accepting keywords and licenses for specific packages could possibly be rejected as profile features, essentially anything that a user would want to put in profiles needs to be supported either via EAPI or something like profile-formats as discussed in bug 417013.

> Renaming the file to package.accept_license would clarify that it's part of
> the user configuration (overriding/augmenting ACCEPT_LICENSE in make.conf).

Yes, although I find myself questioning the value of this "user configuration" distinction. In practice, users then to desire as much of the usual user configuration features as possible when they create profiles.
Comment 7 Tom Samstag 2021-03-30 00:23:30 UTC
(In reply to Ulrich Müller from comment #5)
> This is comparable to accepting keywords for a package, which cannot be done
> in a profile either?

I'm not sure I follow. I have a package.accept_keywords file in my overlay's profile that works just fine. 

The following all work for me in my overlay's profile:
make.defaults
package.accept_keywords
package.mask
package.use

where package.license does not work.
Comment 8 Ulrich Müller gentoo-dev 2021-03-30 08:04:29 UTC
(In reply to Zac Medico from comment #6)
> (In reply to Ulrich Müller from comment #5)
> > This is comparable to accepting keywords for a package, which cannot be done
> > in a profile either?
> 
> That is correct. While accepting keywords and licenses for specific packages
> could possibly be rejected as profile features, essentially anything that a
> user would want to put in profiles needs to be supported either via EAPI or
> something like profile-formats as discussed in bug 417013.

The spec doesn't mention package.keywords and package.accept_keywords either, and I am not sure that it should (see below).

So yes, maybe we should have an additional document for such features.

> > Renaming the file to package.accept_license would clarify that it's part of
> > the user configuration (overriding/augmenting ACCEPT_LICENSE in make.conf).
> 
> Yes, although I find myself questioning the value of this "user
> configuration" distinction. In practice, users then to desire as much of the
> usual user configuration features as possible when they create profiles.

It is user configuration in the sense that you wouldn't put it in a profile in the gentoo repository, nor in any public overlay.
Comment 9 Ulrich Müller gentoo-dev 2021-03-30 08:05:09 UTC
(In reply to Tom Samstag from comment #7)
> > This is comparable to accepting keywords for a package, which cannot be done
> > in a profile either?
> 
> I'm not sure I follow. I have a package.accept_keywords file in my overlay's
> profile that works just fine. 

Right. I stand corrected.