From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 17C18235 for ; Tue, 24 Jul 2018 11:13:02 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 86394210F0; Tue, 24 Jul 2018 05:13:01 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Tue, 24 Jul 2018 05:13:01 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=E8nZk0HZI2FHJwWSba1588+pU4 H1cwpv6kkprFxO5X8=; b=BefFQtf3QQzkx/p97nyrDLbfMJqhxQSByt+aJz/70+ AZr3M8jSrmM4C0y+CPV6LqVKcnuhA+aL5Ne1lV0zfafKtOEKHNbK52oU/uTM9qUV dbYt000w/HY5dIhhWRukAg4TMZx3W5QpuEtBKVBRlI1i9r8wZ01dMBL70pusSxlY s= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=E8nZk0 HZI2FHJwWSba1588+pU4H1cwpv6kkprFxO5X8=; b=jC+LbbgybXSM3SpnVjuMKH cpXU3I5eKwpVDRH20MY/fstWbcB9c2dWDk6ufGQLVBxCYkjg+4on2tAEegGlYScw E43KvKFmwDw/eMpppSOj0PGRQ0qp/670StcCurlndaTcq/K8Bazcs1TWV+XoxMBC awszZdrS+0Vq9qXpHh67JEQqf5n7/l1RSM+vzNZIV/ebIAYeEhlS1sGKS7qpGo4f ufPFkmQBkJCA/Tm84ekoI3ppd9Aou+H5xsDmjZ06FFOyJzZIwAWBu2DJwxxE1nvj mSwf4IYOYVHX2V8ZdLAa5rE7CCUV+ATRozh3uQ2OJumo8KPV/kWeDnkIfpCCTKUg == X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id CBD3B10261; Tue, 24 Jul 2018 05:13:00 -0400 (EDT) From: Thomas Monjalon To: Luca Boccassi , "Richardson, Bruce" Cc: "stable@dpdk.org" Date: Tue, 24 Jul 2018 11:12:56 +0200 Message-ID: <5213154.30SCDzBaau@xps> In-Reply-To: <1532365653.7624.9.camel@debian.org> References: <59AF69C657FD0841A61C55336867B5B072664923@IRSMSX103.ger.corp.intel.com> <1532365653.7624.9.camel@debian.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-stable] filenames of DPDK stable packages X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jul 2018 09:13:02 -0000 Hi, 23/07/2018 19:07, Luca Boccassi: > On Tue, 2018-07-17 at 13:34 +0000, Richardson, Bruce wrote: > > Therefore a small ask - can we please provide a package for stable > > releases where the standard naming convention is used. I quite like > > having the "dpdk-stable" in the name, so perhaps as well as the > > regular tarball, could we also have a copy on the server called e.g. > > "dpdk-stable-17.11.3.tar.gz"? This is what the hook is doing: for ext in gz xz ; do echo "generating tarball dpdk-$ver.tar.$ext..." wget http://dpdk.org/browse/dpdk-stable/snapshot/dpdk-stable-$ver.tar.$ext mv -f dpdk-stable-$ver.tar.$ext /srv/rel/dpdk-$ver.tar.$ext done echo "MD5 (to copy in HTML page)" md5sum /srv/rel/dpdk-$ver.tar.xz > It would be perfectly fine to me to have an additional copy of the > tarball, however all we maintainers do is push a tag, then the cgit > server does all the magic. The directory name I guess it's based on the > git root directory name on the server. > > Thomas, any idea how to do what Bruce is asking? All is possible. I am not in favor of having two copies with different names because it would bring more questions. When listing tarballs, it is easier to have the same prefix for all: http://fast.dpdk.org/rel/ We could rename the directory inside the tarball but we would have a different checksum compared to the one in cgit: http://git.dpdk.org/dpdk-stable/refs/ Or we could change the prefix in cgit with repo.snapshot-prefix: https://git.zx2c4.com/cgit/tree/cgitrc.5.txt#n590 However I guess it would change every old tarballs. Opinions?