From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2E5B01581D3 for ; Sat, 25 May 2024 07:54:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A56CE2A08; Sat, 25 May 2024 07:54:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 262D4E2A08 for ; Sat, 25 May 2024 07:54:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 30403335CB9 for ; Sat, 25 May 2024 07:54:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4A6D1B40 for ; Sat, 25 May 2024 07:54:29 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1716623664.0430b6d232abcd98de7d6a4246db2bbb0d96446a.arthurzam@gentoo> Subject: [gentoo-commits] proj/gentoo-bashcomp:master commit in: / X-VCS-Repository: proj/gentoo-bashcomp X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 0430b6d232abcd98de7d6a4246db2bbb0d96446a X-VCS-Branch: master Date: Sat, 25 May 2024 07:54:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cbe007fa-e862-4293-b351-30f5ab30b566 X-Archives-Hash: eb691d3da815f84ca82c135e10fe9013 commit: 0430b6d232abcd98de7d6a4246db2bbb0d96446a Author: Arthur Zamarin gentoo org> AuthorDate: Sat May 25 07:54:24 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat May 25 07:54:24 2024 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-bashcomp.git/commit/?id=0430b6d2 Makefile: remove legacy dist rules Signed-off-by: Arthur Zamarin gentoo.org> Makefile | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Makefile b/Makefile index 5947e9e..9302f35 100644 --- a/Makefile +++ b/Makefile @@ -45,16 +45,3 @@ tag: @echo @echo "created tag $(distpkg) - remember to push it" @echo - -dist: tag - git archive --prefix=$(distpkg)/ --format=tar -o $(distpkg).tar $(distpkg) - mkdir $(distpkg)/ - git log > $(distpkg)/ChangeLog - tar vfr $(distpkg).tar $(distpkg)/ChangeLog - xz $(distpkg).tar - rm -rf $(distpkg)/ - @echo "success." - -dist-upload: dist - scp $(distpkg).tar.xz dev.gentoo.org:/space/distfiles-local/ - ssh dev.gentoo.org chmod ug+rw /space/distfiles-local/$(distpkg).tar.xz