From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C5D04138ACF for ; Sun, 23 Nov 2014 21:35:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDF9FE0AD3; Sun, 23 Nov 2014 21:35:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 57EB5E0AD3 for ; Sun, 23 Nov 2014 21:35:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C595E3404C7 for ; Sun, 23 Nov 2014 21:35:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 707BCAC37 for ; Sun, 23 Nov 2014 21:35:21 +0000 (UTC) From: "Vadim A. Misbakh-Soloviov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vadim A. Misbakh-Soloviov" Message-ID: <1416578691.ba00bafe3bddfb9c0c06134851b0046563c31413.mva@gentoo> Subject: [gentoo-commits] proj/zsh-completion:master commit in: / X-VCS-Repository: proj/zsh-completion X-VCS-Files: create-dist-xz.sh X-VCS-Directories: / X-VCS-Committer: mva X-VCS-Committer-Name: Vadim A. Misbakh-Soloviov X-VCS-Revision: ba00bafe3bddfb9c0c06134851b0046563c31413 X-VCS-Branch: master Date: Sun, 23 Nov 2014 21:35:21 +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-Archives-Salt: 0a234d1e-7f73-49df-98cd-5fec6bb9c478 X-Archives-Hash: 65532d6e3ae4cda549b5668bf057df9d commit: ba00bafe3bddfb9c0c06134851b0046563c31413 Author: Tim Harder gentoo org> AuthorDate: Fri Nov 21 14:04:51 2014 +0000 Commit: Vadim A. Misbakh-Soloviov mva name> CommitDate: Fri Nov 21 14:04:51 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/zsh-completion.git;a=commit;h=ba00bafe remove create dist script We'll make regular, tagged releases from now on. --- create-dist-xz.sh | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/create-dist-xz.sh b/create-dist-xz.sh deleted file mode 100755 index adcbc1b..0000000 --- a/create-dist-xz.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -: ${TAR:=$(which tar)} - -EXTRA_DIST="AUTHORS" -COMPLETION_WIDGETS="_eselect _gcc-config _genlop _gentoolkit _gentoo_packages _layman _openrc _portage _portage_utils" - -snapshot_date="$(date +%Y%m%d)" -snapshot_dir="gentoo-zsh-completions-${snapshot_date}" - -if [[ -d ${snapshot_dir} ]]; then - rm -rf ${snapshot_dir} - mkdir ${snapshot_dir} -else - mkdir ${snapshot_dir} -fi - -for i in ${EXTRA_DIST}; do - cp ${i} ${snapshot_dir} -done -for i in ${COMPLETION_WIDGETS}; do - cp ${i} ${snapshot_dir} -done - -${TAR} -Jcf ${snapshot_dir}.tar.xz ${snapshot_dir}