From mboxrd@z Thu Jan 1 00:00:00 1970 From: taylanbayirli@gmail.com (Taylan Ulrich =?utf-8?Q?Bay=C4=B1rl=C4=B1?= =?utf-8?Q?=2FKammer?=) Subject: Re: proposal: add "packagers" field (list of strings (names)) to package definition Date: Thu, 03 Dec 2015 11:57:46 +0100 Message-ID: <87wpsv94ut.fsf@T420.taylan> References: <565D565C.4030208@gmx.net> <87zixtezjy.fsf@igalia.com> <87poynvmr2.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37506) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4RYy-0001C9-0G for guix-devel@gnu.org; Thu, 03 Dec 2015 05:56:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a4RYx-0007l7-3D for guix-devel@gnu.org; Thu, 03 Dec 2015 05:56:35 -0500 In-Reply-To: <87poynvmr2.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Thu, 03 Dec 2015 12:40:17 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: guix-devel ludo@gnu.org (Ludovic Court=C3=A8s) writes: > For a while I wondered whether attaching names to packages via the > =E2=80=98maintainers=E2=80=99 field would help people feel responsible, a= nd thus help > keep packages maintained (but obviously this could only be used once the > ratio of the number of contributors to the number of packages has become > reasonable.) I actually found myself wishing for a way to list all packages I packaged, so I can update them (say, somewhat obscure and possibly indirect dependencies of packages like mpv, which might end up very out-of-date since nobody directly cares for them) but then I remembered this is easy to do via git log grepping, especially thanks to our strict commit format. git log --author=3DTaylan --grep=3D'^gnu: Add ' --format=3Doneline | sed -rn 's/.*Add (.*)\.$/\1/p' Taylan