From patchwork Thu Oct 10 07:54:13 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Bernhard M. Wiedemann" X-Patchwork-Id: 21579 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id E077BC32EA for ; Thu, 10 Oct 2024 07:54:19 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id CD65A6353A; Thu, 10 Oct 2024 09:54:18 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (2048-bit key; unprotected) header.d=lsmod.de header.i=@lsmod.de header.b="daTM1rkj"; dkim-atps=neutral Received: from mail.bmwiedemann.de (mail.bmwiedemann.de [IPv6:2a01:4f8:221:b52:fcfd:ff:fe00:ec04]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 00C2363538 for ; Thu, 10 Oct 2024 09:54:17 +0200 (CEST) Received: from mail.bmwiedemann.de (localhost [127.0.0.1]) by mail.bmwiedemann.de (Postfix) with ESMTP id D4E30B2E; Thu, 10 Oct 2024 07:54:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lsmod.de; s=202205; t=1728546856; bh=rSnsz/4/rZZWgbwytYEXc+N7LqHUrVYIFCi7zyx5fzQ=; h=From:To:Cc:Subject:Date:From; b=daTM1rkjW7N1snjJc28Xlkibgy/mLC3/SKq/53tjdfNZ38AixikmNO4grE91u5S90 ffJJN6vg7Z3f6zcezMnM0SDjR2aMemdjTGsHlTTgvDQ/i4WsnU4yTqOKWUpqbGDq2p 4vgjjvt0PalckP2QDp1+489BuK6C5vKrtZ8faOp4h/zxBCQn6SDekTQr7c+Z7jOvMb 7FCnglJMAMTpJm8ahl5AEVODDsrjtfijK16YjhhdPo4YqslOFUEtdcyagQdktvIX6F AL1qijvseyWjJuMV78Y+eBaXVK2tI3T6sddmgr/u0uFlMzDcH3Y5FAFfLZLbPoczLM IO4ch8ipBysGg== X-Spam-Checker-Version: SpamAssassin 3.4.5 (2021-03-20) on vm4c.zq1.de X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham autolearn_force=no version=3.4.5 Received: from adrian.zq1.de (unknown [10.8.5.20]) by mail.bmwiedemann.de (Postfix) with ESMTP; Thu, 10 Oct 2024 07:54:15 +0000 (UTC) Received: by adrian.zq1.de (Postfix, from userid 1000) id B77DBE02CA; Thu, 10 Oct 2024 09:54:15 +0200 (CEST) From: libcamerabmw+ml@lsmod.de To: libcamera-devel@lists.libcamera.org Cc: "Bernhard M. Wiedemann" Subject: [PATCH] Fix copyright year Date: Thu, 10 Oct 2024 09:54:13 +0200 Message-ID: <20241010075413.91344-1-libcamerabmw+ml@lsmod.de> X-Mailer: git-send-email 2.46.1 MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" From: "Bernhard M. Wiedemann" without this patch, openSUSE's debugsource package would vary over time, breaking reproducible builds. Also a copyright of 2025 is factually wrong, because nobody did anything copyright-worthy in that year. If updating the year manually is too hard (it is optional anyway), using the mtime of input file(s) could work as well. The diff was: /usr/src/debug/libcamera-0.3.1/x86_64-suse-linux/include/libcamera/internal/tracepoints.h 2024-08-20 09:37:46.000000000 +0200 @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ /* - * Copyright (C) 2024, Google Inc. + * Copyright (C) 2025, Google Inc. Signed-off-by: Bernhard M. Wiedemann --- utils/codegen/gen-tp-header.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/utils/codegen/gen-tp-header.py b/utils/codegen/gen-tp-header.py index 83606c32..0a3fa644 100755 --- a/utils/codegen/gen-tp-header.py +++ b/utils/codegen/gen-tp-header.py @@ -6,7 +6,6 @@ # # Generate header file to contain lttng tracepoints -import datetime import jinja2 import pathlib import os @@ -20,7 +19,7 @@ def main(argv): output = argv[2] template = argv[3] - year = datetime.datetime.now().year + year = 2024 path = pathlib.Path(output).absolute().relative_to(argv[1]) source = ''