From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 1C3C01F62D for ; Wed, 15 Feb 2023 08:01:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1676448073; bh=0H/eWRqLSF8Ddgakdo4AwdIewRYuMk1GokcF0OmDX5g=; h=From:To:Subject:Date:In-Reply-To:References:From; b=W+4gjNuJ9b0rTyf8t8SLgyNoqHEABbJWHvdmZll4Gb6nhEB6KBLW2Bc5QvJEFjcP+ YVFOqAJ10A+qOq1npiqvZ06wDwd6mHeqrHb1aVQWOGvmvBpnZBw535PWKHMoV/kE6/ DK9dUos3PwNs3ATIL92oTOuZs+K3Ok+1SFmOVDaY= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 4/4] Makefile.PL: drop update-copyrights rule Date: Wed, 15 Feb 2023 08:01:12 +0000 Message-Id: <20230215080112.1740815-5-e@80x24.org> In-Reply-To: <20230215080112.1740815-1-e@80x24.org> References: <20230215080112.1740815-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: I'm no longer updating them since it's noisy and acceptable to not have them: https://www.linuxfoundation.org/blog/copyright-notices-in-open-source-software-projects/ I'm tired of being reminded what year it is :< --- Makefile.PL | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 9233ac9d..8de1351f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -261,11 +261,5 @@ symlink-install : lib/PublicInbox.pm pure_all :: lib/PublicInbox.pm lib/PublicInbox.pm : FORCE VERSION=\$(VERSION) \$(PERL) -w ./version-gen.perl - -update-copyrights : - \@case '\$(GNULIB_PATH)' in '') echo >&2 GNULIB_PATH unset; false;; esac - git ls-files | UPDATE_COPYRIGHT_HOLDER='all contributors' \\ - UPDATE_COPYRIGHT_USE_INTERVALS=2 \\ - xargs \$(GNULIB_PATH)/build-aux/update-copyright EOF }