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=-1.7 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_SBL_CSS,SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=no autolearn_force=no version=3.4.6 Received: from out1.vger.email (out1.vger.email [IPv6:2620:137:e000::1:20]) by dcvr.yhbt.net (Postfix) with ESMTP id 56F321F5A0 for ; Sun, 5 Feb 2023 22:17:37 +0000 (UTC) Authentication-Results: dcvr.yhbt.net; dkim=pass (3072-bit key; secure) header.d=crustytoothpaste.net header.i=@crustytoothpaste.net header.a=rsa-sha256 header.s=default header.b=FezuS3qu; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229521AbjBEWRf (ORCPT ); Sun, 5 Feb 2023 17:17:35 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46402 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229481AbjBEWRd (ORCPT ); Sun, 5 Feb 2023 17:17:33 -0500 Received: from ring.crustytoothpaste.net (ring.crustytoothpaste.net [IPv6:2600:3c04::f03c:92ff:fe9e:c6d8]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 000531A97F for ; Sun, 5 Feb 2023 14:17:32 -0800 (PST) Received: from tapette.crustytoothpaste.net (unknown [IPv6:2001:470:b056:101:e59a:3ed0:5f5c:31f3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (3072 bits) server-digest SHA256) (No client certificate requested) by ring.crustytoothpaste.net (Postfix) with ESMTPSA id 9429C5A210; Sun, 5 Feb 2023 22:17:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=crustytoothpaste.net; s=default; t=1675635451; bh=qrpEIhBfjMsAPC2uVYNU8p4ulGyrqXx3uJrpJWgOp7U=; h=From:To:Cc:Subject:Date:From:Reply-To:Subject:Date:To:CC: Resent-Date:Resent-From:Resent-To:Resent-Cc:In-Reply-To:References: Content-Type:Content-Disposition; b=FezuS3quj0xNXrYyfAMck8/CXVz0CVQLIefUafPPLQCPRIHtgPwsXSlXeEYe0ydVA vaC1APljMNzANUmg+HvJ8MO/6PlbrnUUpVMPTgQWeEIB9FBUd4845bISjLNnSQWs4N ptNVAStobarYBEStPw55lgbXPv5+F6hWafypu4pUCVFreduPDf1IjgZvXkhYTDnF/3 KmHcWYJIbXN6UOfD1ZJxIGBV5BGXacZWgaHlVRS9a1yPMhRXTYKT/BHkc+AomY858N KhCoafJ8Y8dBPejg7dY47VLg0yodiDzKMT9uKnWaZJHdN9oEOxiss0i+AXeLGkgrI2 VIG2x9ao+wxFXcQiWxFOUFHjGvGuhhZYbPrwI1nMfn1iMZlCz6ky3Jr20nQQSVufct q4GsFuQimtkzLlV0l6kk8JqBzsARc4zmjNPAo8ITn0KWNG9zsjLqnAP/80ClT+t4xK wnuKo6vRm62yNK81bqLbwJ5DV+E6E69KOSKN0fTNv6iWBEilQ5O From: "brian m. carlson" To: Cc: Eli Schwartz , =?UTF-8?q?Ren=C3=A9=20Scharfe?= , Konstantin Ryabitsev , =?UTF-8?q?Michal=20Such=C3=A1nek?= , "Raymond E . Pasco" , demerphq , Theodore Ts'o , =?UTF-8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Subject: [RFC PATCH 0/1] Canonical tar format for Git Date: Sun, 5 Feb 2023 22:17:27 +0000 Message-Id: <20230205221728.4179674-1-sandals@crustytoothpaste.net> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org With recent discussions about guaranteeing some stability for our archives, here's a document which specifies a canonical tar format we can use, based on the pax format. It contains a sufficient amount of explanation about how the format works to (hopefully) be easily understandable, and it explains the benefits of the extremely rigid format it defines. If we decide that we'd like to implement extensions to it in the future, it can be easily extended. My original approach allowed specifying version extensions to specify that things like permissions or timestamps were persisted, but I simplified for ease of use, since we don't technically need those changes. Feedback about this approach is welcome, and after some discussion, I plan to send a future version with an actual implementation and tests. brian m. carlson (1): Document a fixed tar format for interoperability Documentation/technical/tarball.txt | 234 ++++++++++++++++++++++++++++ 1 file changed, 234 insertions(+) create mode 100644 Documentation/technical/tarball.txt