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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ECDE8139694 for ; Tue, 18 Apr 2017 19:43:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C61D221C0A2; Tue, 18 Apr 2017 19:43:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A288521C0A2 for ; Tue, 18 Apr 2017 19:43:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 276713416A8 for ; Tue, 18 Apr 2017 19:43:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBE727442 for ; Tue, 18 Apr 2017 19:43:37 +0000 (UTC) From: "Aaron Swenson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Swenson" Message-ID: <1492001658.5d82111e0fe1b9002f07855a523186da5fdbeb78.titanofold@gentoo> Subject: [gentoo-commits] proj/postgresql/eselect:master commit in: / X-VCS-Repository: proj/postgresql/eselect X-VCS-Files: .gitignore Makefile X-VCS-Directories: / X-VCS-Committer: titanofold X-VCS-Committer-Name: Aaron Swenson X-VCS-Revision: 5d82111e0fe1b9002f07855a523186da5fdbeb78 X-VCS-Branch: master Date: Tue, 18 Apr 2017 19:43:37 +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: 183a8f8d-98af-43c2-a2af-9eb81de86239 X-Archives-Hash: 7b83a88f6f1b78fd50159479c7ec728b commit: 5d82111e0fe1b9002f07855a523186da5fdbeb78 Author: Aaron W. Swenson gentoo org> AuthorDate: Wed Apr 12 12:54:18 2017 +0000 Commit: Aaron Swenson gentoo org> CommitDate: Wed Apr 12 12:54:18 2017 +0000 URL: https://gitweb.gentoo.org/proj/postgresql/eselect.git/commit/?id=5d82111e Add gitignore and makefile .gitignore | 1 + Makefile | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..77482bd --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +eselect-postgresql* diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..22dec4a --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +D := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) +V := $(shell grep V $(D)/postgresql.eselect | grep -Po '[0-9.]+') + +all: + mkdir -p $(D)/eselect-postgresql-$(V) + cp $(D)/postgresql.eselect $(D)/eselect-postgresql-$(V)/ + tar cjf $(D)/eselect-postgresql-$(V).tbz2 $(D)/eselect-postgresql-$(V) + +clean: + rm $(D)/eselect-postgresql-$(V)/postgresql.eselect + rmdir $(D)/eselect-postgresql-$(V) + rm $(D)/eselect-postgresql-$(V).tbz2 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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 41664139694 for ; Wed, 12 Apr 2017 12:54:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DACFE0CC6; Wed, 12 Apr 2017 12:54:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 57566E0CC6 for ; Wed, 12 Apr 2017 12:54:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 77B64341130 for ; Wed, 12 Apr 2017 12:54:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 80CAC73EF for ; Wed, 12 Apr 2017 12:54:26 +0000 (UTC) From: "Aaron Swenson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Swenson" Message-ID: <1492001658.5d82111e0fe1b9002f07855a523186da5fdbeb78.titanofold@gentoo> Subject: [gentoo-commits] proj/postgresql/eselect:stateless commit in: / X-VCS-Repository: proj/postgresql/eselect X-VCS-Files: .gitignore Makefile X-VCS-Directories: / X-VCS-Committer: titanofold X-VCS-Committer-Name: Aaron Swenson X-VCS-Revision: 5d82111e0fe1b9002f07855a523186da5fdbeb78 X-VCS-Branch: stateless Date: Wed, 12 Apr 2017 12:54:26 +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: 5025de16-a512-4fd4-97b5-15fa9cb7d9b4 X-Archives-Hash: a55105c6ee18b12910e613b2738c5d7f Message-ID: <20170412125426.oQM0L4YlVQb0KEubEdIOW1-qYeK9EEdRdoJ1Gk7BN7A@z> commit: 5d82111e0fe1b9002f07855a523186da5fdbeb78 Author: Aaron W. Swenson gentoo org> AuthorDate: Wed Apr 12 12:54:18 2017 +0000 Commit: Aaron Swenson gentoo org> CommitDate: Wed Apr 12 12:54:18 2017 +0000 URL: https://gitweb.gentoo.org/proj/postgresql/eselect.git/commit/?id=5d82111e Add gitignore and makefile .gitignore | 1 + Makefile | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..77482bd --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +eselect-postgresql* diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..22dec4a --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +D := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) +V := $(shell grep V $(D)/postgresql.eselect | grep -Po '[0-9.]+') + +all: + mkdir -p $(D)/eselect-postgresql-$(V) + cp $(D)/postgresql.eselect $(D)/eselect-postgresql-$(V)/ + tar cjf $(D)/eselect-postgresql-$(V).tbz2 $(D)/eselect-postgresql-$(V) + +clean: + rm $(D)/eselect-postgresql-$(V)/postgresql.eselect + rmdir $(D)/eselect-postgresql-$(V) + rm $(D)/eselect-postgresql-$(V).tbz2