Gentoo Archives: gentoo-commits

From: Haelwenn Monnier <contact@×××××××××.me>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-db/pg_repack/
Date: Fri, 15 May 2020 12:01:01
Message-Id: 1589543745.c51e7ee8ead4023721b09271d842957391926140.lanodan@gentoo
1 commit: c51e7ee8ead4023721b09271d842957391926140
2 Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
3 AuthorDate: Fri May 15 11:55:26 2020 +0000
4 Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
5 CommitDate: Fri May 15 11:55:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c51e7ee8
7
8 dev-db/pg_repack: New Package
9
10 Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
11
12 dev-db/pg_repack/Manifest | 1 +
13 dev-db/pg_repack/metadata.xml | 8 ++++++++
14 dev-db/pg_repack/pg_repack-1.4.5.ebuild | 24 ++++++++++++++++++++++++
15 3 files changed, 33 insertions(+)
16
17 diff --git a/dev-db/pg_repack/Manifest b/dev-db/pg_repack/Manifest
18 new file mode 100644
19 index 0000000..467900a
20 --- /dev/null
21 +++ b/dev-db/pg_repack/Manifest
22 @@ -0,0 +1 @@
23 +DIST pg_repack-1.4.5.tar.gz 94769 BLAKE2B e15c31b5c9337abf1b01483580734509c1611592efb9d8f5c3c218da7fe613477172e09708a58721579cd6c47f3935559a1a860fa638c74c23a1081e3a7ce312 SHA512 6aa2c6f72b6bfd6c5712bdad08aa1d7fe589da263259383d4546a8cfd881922e3f2bdac733ecd2a0c301f73a3909d8dad095029ddd33279cf580162f2e53f313
24
25 diff --git a/dev-db/pg_repack/metadata.xml b/dev-db/pg_repack/metadata.xml
26 new file mode 100644
27 index 0000000..c698af2
28 --- /dev/null
29 +++ b/dev-db/pg_repack/metadata.xml
30 @@ -0,0 +1,8 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>contact@×××××××××.me</email>
36 + <name>Haelwenn (lanodan) Monnier</name>
37 + </maintainer>
38 +</pkgmetadata>
39
40 diff --git a/dev-db/pg_repack/pg_repack-1.4.5.ebuild b/dev-db/pg_repack/pg_repack-1.4.5.ebuild
41 new file mode 100644
42 index 0000000..5d15619
43 --- /dev/null
44 +++ b/dev-db/pg_repack/pg_repack-1.4.5.ebuild
45 @@ -0,0 +1,24 @@
46 +# Copyright 2020 Gentoo Authors
47 +# Distributed under the terms of the GNU General Public License v2
48 +
49 +EAPI=7
50 +
51 +POSTGRES_COMPAT=( 9.4 9.5 9.6 10 11 12 )
52 +POSTGRES_USEDEP="server"
53 +
54 +inherit postgres-multi
55 +
56 +DESCRIPTION="RUM access method - inverted index with additional information in posting lists"
57 +HOMEPAGE="https://github.com/reorg/pg_repack"
58 +SRC_URI="https://github.com/reorg/pg_repack/archive/ver_${PV}.tar.gz -> ${P}.tar.gz"
59 +S="${WORKDIR}/${PN}-ver_${PV}"
60 +
61 +LICENSE="MIT"
62 +SLOT="0"
63 +KEYWORDS="~amd64 ~x86"
64 +
65 +DEPEND="${POSTGRES_DEP}"
66 +RDEPEND="${DEPEND}"
67 +
68 +# Needs a running PostgreSQL server
69 +RESTRICT="test"