GNU bug report logs -
#46385
User awareness of Anti-Features
Previous Next
To reply to this bug, email your comments to 46385 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-guix <at> gnu.org
:
bug#46385
; Package
guix
.
(Mon, 08 Feb 2021 15:40:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
soheil <at> disroot.org
:
New bug report received and forwarded. Copy sent to
bug-guix <at> gnu.org
.
(Mon, 08 Feb 2021 15:40:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Users should be aware of anti-feature of packages.
It is best to have anti-feature tag in anti-feature packages so that user know which program has anti-features; Like F-Droid. Also, user should be aware of anti-feature during installation. And wherever this awareness is needed...
An example is Telegram, Telegram is a program that user connects to a proprietary server, and users who know less about computer softwares, are not aware of the anti-feature.
[Message part 2 (text/html, inline)]
Information forwarded
to
bug-guix <at> gnu.org
:
bug#46385
; Package
guix
.
(Wed, 10 Feb 2021 14:39:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 46385 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi,
On Mon, 2021-02-08 at 13:28 +0000, soheil--- via Bug reports for GNU Guix wrote:
> Users should be aware of anti-feature of packages.
> It is best to have anti-feature tag in anti-feature packages so that user know
> which program has anti-features; Like F-Droid. Also, user should be aware of
> anti-feature during installation. And wherever this awareness is needed...
>
> An example is Telegram, Telegram is a program that user connects to a
> proprietary server, and users who know less about computer softwares,
> are not aware of the anti-feature.
I'll have to think some more on whether this is something Guix needs, but I
do have a partial concrete implementation proposal:
Packages can have a ‘properties’ field, e.g. from gnu/packages/bioconductors.scm:
(define-public r-reactome-db
(package
(name "r-reactome-db")
(version "1.70.0")
[...]
(properties `((upstream-name . "reactome.db")))))
Maybe add a ‘anti-features’ entry field for some packages?
E.g.,
(define-public some-twitter-app
(package
(name "tweet")
[...]
(properties `((anti-features x y z)))))
x, y and z can be symbols, e.g. based upon from https://f-droid.org/en/docs/Anti-Features/
* ads (I don't think any application in Guix has these?)
* tracking (should be patched out if possible)
* non-free-network-services
* non-free-dependencies (probably not allowed in upstream Guix, but maybe in a channel)
The code behind ‘guix show’ and ‘guix search’ would need to
be adjusted to display anti-features, and the ‘guix install’ code
should warn if someone installs a package with anti-features.
Greetings,
Maxime
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
bug-guix <at> gnu.org
:
bug#46385
; Package
guix
.
(Wed, 10 Feb 2021 16:54:02 GMT)
Full text and
rfc822 format available.
Message #11 received at submit <at> debbugs.gnu.org (full text, mbox):
On Mon, Feb 08, 2021 at 01:28:40PM +0000, soheil--- via Bug reports for GNU Guix wrote:
> Users should be aware of anti-feature of packages.
> It is best to have anti-feature tag in anti-feature packages so that user know which program has anti-features; Like F-Droid. Also, user should be aware of anti-feature during installation. And wherever this awareness is needed...
I use F-Droid, but I dislike their "anti-feature" messaging. It's not
clear to me that it's an example we should follow.
Information forwarded
to
bug-guix <at> gnu.org
:
bug#46385
; Package
guix
.
(Wed, 10 Feb 2021 16:54:02 GMT)
Full text and
rfc822 format available.
Information forwarded
to
bug-guix <at> gnu.org
:
bug#46385
; Package
guix
.
(Fri, 19 Feb 2021 15:23:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 46385 <at> debbugs.gnu.org (full text, mbox):
Hi,
Maxime Devos <maximedevos <at> telenet.be> skribis:
> I'll have to think some more on whether this is something Guix needs, but I
> do have a partial concrete implementation proposal:
>
> Packages can have a ‘properties’ field, e.g. from gnu/packages/bioconductors.scm:
>
> (define-public r-reactome-db
> (package
> (name "r-reactome-db")
> (version "1.70.0")
> [...]
> (properties `((upstream-name . "reactome.db")))))
>
> Maybe add a ‘anti-features’ entry field for some packages?
> E.g.,
>
> (define-public some-twitter-app
> (package
> (name "tweet")
> [...]
> (properties `((anti-features x y z)))))
>
> x, y and z can be symbols, e.g. based upon from https://f-droid.org/en/docs/Anti-Features/
>
> * ads (I don't think any application in Guix has these?)
> * tracking (should be patched out if possible)
> * non-free-network-services
> * non-free-dependencies (probably not allowed in upstream Guix, but maybe in a channel)
>
> The code behind ‘guix show’ and ‘guix search’ would need to
> be adjusted to display anti-features, and the ‘guix install’ code
> should warn if someone installs a package with anti-features.
I’m sympathetic with the idea of raising awareness of those
anti-features. However, I don’t see a clear way we could “define” each
possible anti-feature; some are definitely ill-defined (for instance, a
service is neither “free” nor “non-free” in the same sense as software
can be free or non-free.) It’s also not entirely clear to me how the UI
could make good use of it.
That said, there are anti-features that we have always patched out in
the past, such as tracking/“phoning home” and auto-upgrades. Perhaps we
could formalize that in our packaging guidelines?
Ludo’.
Information forwarded
to
bug-guix <at> gnu.org
:
bug#46385
; Package
guix
.
(Thu, 09 Jun 2022 21:13:01 GMT)
Full text and
rfc822 format available.
Message #20 received at 46385 <at> debbugs.gnu.org (full text, mbox):
Hi,
Ludovic Courtès <ludo <at> gnu.org> writes:
[...]
>> * ads (I don't think any application in Guix has these?)
>> * tracking (should be patched out if possible)
>> * non-free-network-services
>> * non-free-dependencies (probably not allowed in upstream Guix, but maybe in a channel)
>>
>> The code behind ‘guix show’ and ‘guix search’ would need to
>> be adjusted to display anti-features, and the ‘guix install’ code
>> should warn if someone installs a package with anti-features.
>
> I’m sympathetic with the idea of raising awareness of those
> anti-features. However, I don’t see a clear way we could “define” each
> possible anti-feature; some are definitely ill-defined (for instance, a
> service is neither “free” nor “non-free” in the same sense as software
> can be free or non-free.) It’s also not entirely clear to me how the UI
> could make good use of it.
I agree. It's not well defined, and to me following the FSDG seems an
already good warranty that you're getting only free software from a
project dedicated to fixing any freedom issues that may be discovered.
> That said, there are anti-features that we have always patched out in
> the past, such as tracking/“phoning home” and auto-upgrades. Perhaps we
> could formalize that in our packaging guidelines?
It'd be good to have this documented, indeed.
Thanks,
Maxim
This bug report was last modified 3 years and 11 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.