Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/freetds/
Date: Mon, 29 Jul 2019 17:31:05
Message-Id: 1564421440.654ebf98651dfe2917d0136ea58a5470d62430bc.asturm@gentoo
1 commit: 654ebf98651dfe2917d0136ea58a5470d62430bc
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 29 16:18:55 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 29 17:30:40 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=654ebf98
7
8 dev-db/freetds: Drop 1.00.341-r1
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-db/freetds/Manifest | 1 -
14 dev-db/freetds/freetds-1.00.341-r1.ebuild | 73 -------------------------------
15 2 files changed, 74 deletions(-)
16
17 diff --git a/dev-db/freetds/Manifest b/dev-db/freetds/Manifest
18 index 52a90c06d4a..79267daa460 100644
19 --- a/dev-db/freetds/Manifest
20 +++ b/dev-db/freetds/Manifest
21 @@ -1,2 +1 @@
22 -DIST freetds-dev.1.00.341.tar.gz 3002134 BLAKE2B c9396c1f205e13c9f3449bef19830cf3b6c2fa72539555ebd6bc1532c014472c862ba2ac7f495bee8f53d640d628c6b15bb50183585d43cf3dbbea4e314636d2 SHA512 fd691535dfa5c97463ff72056cfa5721557b71e41b6186ffcb08e193e51214cf966a33ee55b8e538a6f035aeeef14ac5b15fe8758f1afea9e1252a3b8951ba58
23 DIST freetds-dev.1.00.558.tar.gz 3151542 BLAKE2B e7b7eb1d4bad1472a675e7657d524837a27ba18176cf410ebad6dcb949cd59bb50e932526790c816c05cf0ba02fb750a1cfbcda10073e5cbf8908bdc4ceb9cc5 SHA512 763f04ae36be8385f9be955defd2d91698389836e80e19019f0da0ee15515d8b7e3733f7659362a307b492dc83830f0a7f27d2a68cb5b56e2ef171ac1dcfeeca
24
25 diff --git a/dev-db/freetds/freetds-1.00.341-r1.ebuild b/dev-db/freetds/freetds-1.00.341-r1.ebuild
26 deleted file mode 100644
27 index 27e73e304ac..00000000000
28 --- a/dev-db/freetds/freetds-1.00.341-r1.ebuild
29 +++ /dev/null
30 @@ -1,73 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -# This is from the "current" release series, because the "stable" series
37 -# is a little too stable for us (missing bug fixes, and so on).
38 -MY_PN="${PN}-dev"
39 -
40 -DESCRIPTION="Tabular Datastream Library"
41 -HOMEPAGE="https://www.freetds.org/"
42 -SRC_URI="ftp://ftp.freetds.org/pub/${PN}/current/${MY_PN}.${PV}.tar.gz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos"
47 -
48 -IUSE="debug gnutls iconv kerberos libressl mssql iodbc odbc ssl static-libs"
49 -# iODBC and unixODBC are mutually-exclusive choices for
50 -# the ODBC driver manager. Future versions of FreeTDS
51 -# will throw an error if you specify both.
52 -REQUIRED_USE="?? ( iodbc odbc )"
53 -
54 -RESTRICT="test"
55 -
56 -# sed, grep, and awk are used by the build system and the osql script.
57 -COMMON_DEPEND="
58 - sys-apps/sed
59 - sys-apps/grep
60 - virtual/awk
61 - gnutls? ( net-libs/gnutls:= )
62 - iconv? ( virtual/libiconv )
63 - iodbc? ( dev-db/libiodbc )
64 - kerberos? ( virtual/krb5 )
65 - odbc? ( dev-db/unixODBC )
66 - ssl? (
67 - !libressl? ( dev-libs/openssl:0= )
68 - libressl? ( dev-libs/libressl:0= )
69 - )
70 -"
71 -DEPEND="${COMMON_DEPEND}"
72 -
73 -# bind-tools is needed because the osql script calls "host".
74 -# binutils is for "strings".
75 -RDEPEND="${COMMON_DEPEND}
76 - sys-devel/binutils
77 - net-dns/bind-tools
78 -"
79 -
80 -S="${WORKDIR}/${MY_PN}.${PV}"
81 -
82 -src_configure() {
83 - econf \
84 - --enable-shared \
85 - $(use_enable debug) \
86 - $(use_enable iconv libiconv) \
87 - $(use_enable kerberos krb5) \
88 - $(use_enable mssql msdblib) \
89 - $(use_enable static-libs static) \
90 - $(use_with iodbc) \
91 - $(use_with odbc unixodbc "${EPREFIX}/usr") \
92 - $(use_with iconv libiconv-prefix "${EPREFIX}/usr") \
93 - $(use_with gnutls) \
94 - $(use_with ssl openssl "${EPREFIX}/usr")
95 -}
96 -
97 -src_install() {
98 - default
99 -
100 - if ! use static-libs; then
101 - find "${D}" -name '*.la' -delete || die
102 - fi
103 -}