From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Vasilij Schneidermann Newsgroups: gmane.emacs.devel Subject: Re: non-gnu elpa issue tracking Date: Sun, 13 Dec 2020 09:56:09 +0100 Message-ID: References: <20201209125516.lenqswi7fhiscbr2@E15-2016.optimum.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="3aVapXk62Z4mye5F" Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="7912"; mail-complaints-to="usenet@ciao.gmane.io" Cc: thibaut.verron@gmail.com, bugs@gnu.support, theophilusx@gmail.com, boruch_baum@gmx.com, emacs-devel@gnu.org, stefankangas@gmail.com To: Richard Stallman Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Dec 13 09:57:13 2020 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1koNBp-0001xw-Sg for ged-emacs-devel@m.gmane-mx.org; Sun, 13 Dec 2020 09:57:13 +0100 Original-Received: from localhost ([::1]:49508 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1koNBo-0001su-Uu for ged-emacs-devel@m.gmane-mx.org; Sun, 13 Dec 2020 03:57:12 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:40948) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1koNB0-0001SH-RM for emacs-devel@gnu.org; Sun, 13 Dec 2020 03:56:22 -0500 Original-Received: from mout-p-201.mailbox.org ([2001:67c:2050::465:201]:9802) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1koNAy-0003Vo-6j; Sun, 13 Dec 2020 03:56:21 -0500 Original-Received: from smtp1.mailbox.org (smtp1.mailbox.org [IPv6:2001:67c:2050:105:465:1:1:0]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-201.mailbox.org (Postfix) with ESMTPS id 4Ctyzy15W8zQlKq; Sun, 13 Dec 2020 09:56:14 +0100 (CET) X-Virus-Scanned: amavisd-new at heinlein-support.de Original-Received: from smtp1.mailbox.org ([80.241.60.240]) by spamfilter01.heinlein-hosting.de (spamfilter01.heinlein-hosting.de [80.241.56.115]) (amavisd-new, port 10030) with ESMTP id 1FibZ5hFe467; Sun, 13 Dec 2020 09:56:10 +0100 (CET) Mail-Followup-To: Richard Stallman , thibaut.verron@gmail.com, theophilusx@gmail.com, emacs-devel@gnu.org, boruch_baum@gmx.com, bugs@gnu.support, stefankangas@gmail.com Content-Disposition: inline In-Reply-To: X-Rspamd-Score: -6.31 / 15.00 / 15.00 X-Rspamd-Queue-Id: CB72C188A X-Rspamd-UID: 3d6b5a Received-SPF: pass client-ip=2001:67c:2050::465:201; envelope-from=mail@vasilij.de; helo=mout-p-201.mailbox.org X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:260754 Archived-At: --3aVapXk62Z4mye5F Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable > If someone is willing to focus on organizing this effort, it might do > some good. One very good step would be to convince GitHub to identify > packages with the modern SPDX identifiers. GitHub does already try to recognize the license used by a repository using heuristics. These can be programmatically fetched: $ curl --silent -H 'Accept: application/vnd.github.v3+json' \ https://api.github.com/repos/melpa/melpa/license | grep spdx "spdx_id": "GPL-3.0", Repeating this process for some packages mentioned previously in this discussion (the 0x0 one has been omitted as it's hosted on sr.ht): $ curl --silent -H 'Accept: application/vnd.github.v3+json' \ https://api.github.com/repos/davidshepherd7/aggressive-fill-paragra= ph-mode/license | grep spdx =20 "spdx_id": "GPL-3.0", $ curl --silent -H 'Accept: application/vnd.github.v3+json' \ https://api.github.com/repos/alan-platform/AlanForEmacs/license | g= rep spdx=20 "spdx_id": "MIT", $ curl --silent -H 'Accept: application/vnd.github.v3+json' \ https://api.github.com/repos/rolandwalker/anaphora/license | grep s= pdx $ curl --silent -H 'Accept: application/vnd.github.v3+json' \ https://api.github.com/repos/davidshepherd7/anki-mode/license | gre= p spdx "spdx_id": "AGPL-3.0", That gives me a more precise picture than Jean Louis' analysis I've taken these packages from. The only license that couldn't be identified is for the anaphora repository which doesn't have a LICENSE file, but instead embeds a public domain notice inside the source code. --3aVapXk62Z4mye5F Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAABCAAdFiEE0dAcySl3bqM8O17WFmfJg6zCifoFAl/V1yAACgkQFmfJg6zC ifqgwggAg3dsU9IIElj3qexUxwv6HMBTOZPvY3w6Xpkb3ySuJlz8cVG5wE5jso7j H/5G9RhTkDqkBKCm5j4pbyZf//dK8oH9EGyxE9761Q+I54MqPkRlDuU9GmWGvIvP nWYR2vnkKQCZpE4oTdrY9EJ24v2pmIQYHoKG5i5HWMm5HWLTwGJAiCgT31XHB8yA Xr9uqcLkagmk4IQZoVhO00H5Uvb29QYjfRwlIb43S9a+vOIn613v4hGJrBEMqNl8 8bER6p4PwhgQWJEUAgiNs8F1u+NPRoytyAvcO7d1Yp8pMcDl9whoegJZqXdsSDae kVV/hG4rPj56giyzaFJQ2us6voq+Bg== =3EVs -----END PGP SIGNATURE----- --3aVapXk62Z4mye5F--