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 13:37:06
Message-Id: 1492522611.dd4b2142ec59482e7410db9b37d21007cc1c5c4f.titanofold@gentoo
1 commit: dd4b2142ec59482e7410db9b37d21007cc1c5c4f
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 18 13:36:17 2017 +0000
4 Commit: Aaron Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 18 13:36:51 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd4b2142
7
8 dev-db/psqlodbc: drop outdatted
9
10 Package-Manager: portage-2.3.0
11
12 dev-db/psqlodbc/Manifest | 1 -
13 dev-db/psqlodbc/psqlodbc-09.01.0200.ebuild | 41 ------------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-db/psqlodbc/Manifest b/dev-db/psqlodbc/Manifest
17 index 091f3befd1c..d8ae2421660 100644
18 --- a/dev-db/psqlodbc/Manifest
19 +++ b/dev-db/psqlodbc/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST psqlodbc-09.01.0200.tar.gz 749712 SHA256 89c230f5068dcd17d5c6dab37d13ed03525040da534cc7f49564dceba00a9c2c SHA512 6b1ce9efead84c1f5805561c150d5d6d4fba719472e43332987159918762098e1c41822fe804b4c9732e5fcb19beebd9b5f72ef756c021b764d6582f17bf4565 WHIRLPOOL e200c2014c58055a6ee69decea6f9ff92ad1166d2224c714a1634302ea621308e362760527617d2011db8ccaffcf7f35217431f705a9145f65777ee7a788e9e7
22 DIST psqlodbc-09.02.0100.tar.gz 738231 SHA256 6701525030a8c927059f972ebd65e83a41f7f177228cd8e894654893d86cb93c SHA512 5d2eae82596b3a120b00c140441c47af065a201236fef9aa086372f2207bab2f2bffee7d0db177a64c370118eaa4348509dcb3e99a40f564d26d4e938c57cc68 WHIRLPOOL e300672c7608e28af52befbb62a16c8584a709b75fc12edeadf37b2d26a8cdd64a390af026ec752408818d053d51202c829b6ad62d82a543dbce21ce6624d3c0
23 DIST psqlodbc-09.03.0210.tar.gz 784548 SHA256 42f2a57ec65c8a2edb0736f57b03c510986f33a9178d3d695616734dcc5e96d9 SHA512 da6b8da28c8ddd0912c57b7c1b8a2b494446b07ef7c6db8b56006b0c26705f64d413bdfed64b99e8baf6db70f1b578e818ad9ead357d16a8765deff7121c0a44 WHIRLPOOL 03f191421d95ab7b7da3c7806fc0081d66588bf5d860097fd9a239219d59ebdbe56790bf62786fb145f6378b60fdeb37ac74196f41de7e6ae7ac5551ba6f47c2
24
25 diff --git a/dev-db/psqlodbc/psqlodbc-09.01.0200.ebuild b/dev-db/psqlodbc/psqlodbc-09.01.0200.ebuild
26 deleted file mode 100644
27 index a31c49b93b1..00000000000
28 --- a/dev-db/psqlodbc/psqlodbc-09.01.0200.ebuild
29 +++ /dev/null
30 @@ -1,41 +0,0 @@
31 -# Copyright 1999-2014 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="4"
35 -
36 -inherit multilib versionator
37 -
38 -MY_MAJOR=$(get_major_version)
39 -MY_MINOR=$(get_version_component_range 2)
40 -PGSLOT="${MY_MAJOR#0}.${MY_MINOR#0}"
41 -
42 -DESCRIPTION="Official ODBC driver for PostgreSQL"
43 -HOMEPAGE="http://www.postgresql.org/"
44 -SRC_URI="mirror://postgresql/odbc/versions/src/${P}.tar.gz"
45 -SLOT="0"
46 -LICENSE="LGPL-2"
47 -KEYWORDS="~x86 ~amd64"
48 -IUSE="doc iodbc ssl threads unicode"
49 -
50 -DEPEND="dev-db/postgresql:${PGSLOT}
51 - !iodbc? ( dev-db/unixODBC )
52 - iodbc? ( dev-db/libiodbc )
53 - ssl? ( dev-libs/openssl )
54 -"
55 -RDEPEND="${DEPEND}"
56 -
57 -src_configure() {
58 - econf --with-libpq="${EROOT%/}/usr/$(get_libdir)/postgresql-${PGSLOT}/bin/pg_config" \
59 - $(use_with iodbc) \
60 - $(use_with !iodbc unixodbc) \
61 - $(use_enable ssl openssl) \
62 - $(use_enable threads pthreads) \
63 - $(use_enable unicode)
64 -}
65 -
66 -src_install() {
67 - emake DESTDIR="${D}" install
68 -
69 - dodoc readme.txt
70 - use doc && dohtml docs/*
71 -}