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 95FA11396D9 for ; Thu, 16 Nov 2017 15:32:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2E6CE0EAE; Thu, 16 Nov 2017 15:32:18 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A476AE0EAE for ; Thu, 16 Nov 2017 15:32:18 +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 8BCE433BE19 for ; Thu, 16 Nov 2017 15:32:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A8DA9CC7 for ; Thu, 16 Nov 2017 15:32:16 +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: <1510846324.76fcf5d6c72c89e33c14549ab01dc96ec3ca8a1b.titanofold@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/pspg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/pspg/Manifest dev-db/pspg/metadata.xml dev-db/pspg/pspg-0.5.ebuild X-VCS-Directories: dev-db/pspg/ X-VCS-Committer: titanofold X-VCS-Committer-Name: Aaron Swenson X-VCS-Revision: 76fcf5d6c72c89e33c14549ab01dc96ec3ca8a1b X-VCS-Branch: master Date: Thu, 16 Nov 2017 15:32:16 +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: 0e629f75-c641-4a39-b9e0-56ef06f9e6a4 X-Archives-Hash: c5cdad4779a27e005066e9de8012a03f commit: 76fcf5d6c72c89e33c14549ab01dc96ec3ca8a1b Author: Aaron W. Swenson gentoo org> AuthorDate: Thu Nov 16 15:32:04 2017 +0000 Commit: Aaron Swenson gentoo org> CommitDate: Thu Nov 16 15:32:04 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76fcf5d6 dev-db/pspg: Initial commit Introducing a new and better pager to be used with PostgreSQL’s psql. Package-Manager: Portage-2.3.13, Repoman-2.3.3 dev-db/pspg/Manifest | 1 + dev-db/pspg/metadata.xml | 8 ++++++++ dev-db/pspg/pspg-0.5.ebuild | 16 ++++++++++++++++ 3 files changed, 25 insertions(+) diff --git a/dev-db/pspg/Manifest b/dev-db/pspg/Manifest new file mode 100644 index 00000000000..92ec6cfcf91 --- /dev/null +++ b/dev-db/pspg/Manifest @@ -0,0 +1 @@ +DIST pspg-0.5.tar.gz 845824 SHA256 754d1e380d072517e9bc2c3c38785e2f19a9f927f061de9a646fd1094baa204e SHA512 69e45885d4c155fc0e95360d442ac0b67fb910005148537dbd758e9a22ec83fb232214bf5f292b72a79be444ce05f2eb7bc0a2effaeb8731d1442a7f7ddec5df WHIRLPOOL fe647cda821855a55b91be0a38f5859a65b5217bc6df2f0973f137029a7d24a3730e40f705cf865b5f7386fcbba7a82ae41fdd4ff5975cdd83a3d3e41de78a89 diff --git a/dev-db/pspg/metadata.xml b/dev-db/pspg/metadata.xml new file mode 100644 index 00000000000..eb41154c968 --- /dev/null +++ b/dev-db/pspg/metadata.xml @@ -0,0 +1,8 @@ + + + + + pgsql-bugs@gentoo.org + PostgreSQL and Related Package Development + + diff --git a/dev-db/pspg/pspg-0.5.ebuild b/dev-db/pspg/pspg-0.5.ebuild new file mode 100644 index 00000000000..92c104bcb6d --- /dev/null +++ b/dev-db/pspg/pspg-0.5.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A better pager for psql" +HOMEPAGE="https://github.com/okbob/${PN}" +SRC_URI="https://github.com/okbob/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="sys-libs/ncurses:*" +RDEPEND="${DEPEND}"