Gentoo Archives: gentoo-commits

From: Aaron Swenson <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/psqlodbc/
Date: Tue, 18 Apr 2017 15:20:30
Message-Id: 1492528812.41bb5290789187f89136604f541d9f2959dcda47.titanofold@gentoo
1 commit: 41bb5290789187f89136604f541d9f2959dcda47
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 18 15:19:42 2017 +0000
4 Commit: Aaron Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 18 15:20:12 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41bb5290
7
8 dev-db/psqlodbc: Version bump
9
10 Cleaned up the ebuild as well as there isn’t any dependency on a
11 particular version of PostgreSQL. This should prevent any future issue
12 of blocking old slots of dev-db/postgresql.
13
14 Package-Manager: portage-2.3.0
15
16 dev-db/psqlodbc/Manifest | 1 +
17 dev-db/psqlodbc/psqlodbc-09.06.0200.ebuild | 33 ++++++++++++++++++++++++++++++
18 2 files changed, 34 insertions(+)
19
20 diff --git a/dev-db/psqlodbc/Manifest b/dev-db/psqlodbc/Manifest
21 index d8ae2421660..0dfd41e103e 100644
22 --- a/dev-db/psqlodbc/Manifest
23 +++ b/dev-db/psqlodbc/Manifest
24 @@ -1,2 +1,3 @@
25 DIST psqlodbc-09.02.0100.tar.gz 738231 SHA256 6701525030a8c927059f972ebd65e83a41f7f177228cd8e894654893d86cb93c SHA512 5d2eae82596b3a120b00c140441c47af065a201236fef9aa086372f2207bab2f2bffee7d0db177a64c370118eaa4348509dcb3e99a40f564d26d4e938c57cc68 WHIRLPOOL e300672c7608e28af52befbb62a16c8584a709b75fc12edeadf37b2d26a8cdd64a390af026ec752408818d053d51202c829b6ad62d82a543dbce21ce6624d3c0
26 DIST psqlodbc-09.03.0210.tar.gz 784548 SHA256 42f2a57ec65c8a2edb0736f57b03c510986f33a9178d3d695616734dcc5e96d9 SHA512 da6b8da28c8ddd0912c57b7c1b8a2b494446b07ef7c6db8b56006b0c26705f64d413bdfed64b99e8baf6db70f1b578e818ad9ead357d16a8765deff7121c0a44 WHIRLPOOL 03f191421d95ab7b7da3c7806fc0081d66588bf5d860097fd9a239219d59ebdbe56790bf62786fb145f6378b60fdeb37ac74196f41de7e6ae7ac5551ba6f47c2
27 +DIST psqlodbc-09.06.0200.tar.gz 887807 SHA256 aaa44027f98478635b4ab512a4f90c1aaf56a710276a482b3b0ef6740e20e415 SHA512 d8e3b6c13e657b4a3435ace94e6e1265a5a1a7bcd3a1f81348ca4edcb532b66036e3595ecd7224d3104f6a3f2e02704f73c1b62d94e9879528933edef7764552 WHIRLPOOL 398386f79928e65d29a493fa7d293e9adf2e6352c95c21d9e474675f0a5562128f7f514c834f444659222ebabc84402e5b9abc7a4832728468eb6e4b79c0e609
28
29 diff --git a/dev-db/psqlodbc/psqlodbc-09.06.0200.ebuild b/dev-db/psqlodbc/psqlodbc-09.06.0200.ebuild
30 new file mode 100644
31 index 00000000000..1b84488b876
32 --- /dev/null
33 +++ b/dev-db/psqlodbc/psqlodbc-09.06.0200.ebuild
34 @@ -0,0 +1,33 @@
35 +# Copyright 1999-2017 Gentoo Foundation
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI="6"
39 +
40 +DESCRIPTION="Official ODBC driver for PostgreSQL"
41 +HOMEPAGE="http://www.postgresql.org/"
42 +SRC_URI="mirror://postgresql/odbc/versions/src/${P}.tar.gz"
43 +SLOT="0"
44 +LICENSE="LGPL-2"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="doc iodbc ssl threads unicode"
47 +
48 +DEPEND="dev-db/postgresql:*[ssl?]
49 + !iodbc? ( dev-db/unixODBC )
50 + iodbc? ( dev-db/libiodbc )
51 +"
52 +RDEPEND="${DEPEND}"
53 +
54 +src_configure() {
55 + econf \
56 + $(use_with iodbc) \
57 + $(use_with !iodbc unixodbc) \
58 + $(use_enable threads pthreads) \
59 + $(use_enable unicode)
60 +}
61 +
62 +src_install() {
63 + emake DESTDIR="${D}" install
64 +
65 + dodoc readme.txt
66 + use doc && dodoc docs/*{html,jpg,txt}
67 +}