Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mysql++/
Date: Tue, 24 Jul 2018 20:04:19
Message-Id: 1532462636.68b6374a9322202a98da1e031388ef95bf13787c.grknight@gentoo
1 commit: 68b6374a9322202a98da1e031388ef95bf13787c
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 24 20:03:56 2018 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 24 20:03:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68b6374a
7
8 dev-db/mysql++: Clean old
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 dev-db/mysql++/Manifest | 2 --
13 dev-db/mysql++/mysql++-2.3.2.ebuild | 55 -------------------------------------
14 dev-db/mysql++/mysql++-3.1.0.ebuild | 49 ---------------------------------
15 dev-db/mysql++/mysql++-3.2.2.ebuild | 36 ------------------------
16 4 files changed, 142 deletions(-)
17
18 diff --git a/dev-db/mysql++/Manifest b/dev-db/mysql++/Manifest
19 index 8c9d1290056..879287d01bf 100644
20 --- a/dev-db/mysql++/Manifest
21 +++ b/dev-db/mysql++/Manifest
22 @@ -1,5 +1,3 @@
23 DIST mysql++-2.3.2.tar.gz 1627115 BLAKE2B 058ed41485474e4283a7200aa57398e85162f697f017ccfde7974b85457bb827d17bfdd522ef46818d42a75751a0eeb6ade39ded73e0265ee6811eb2769df3ea SHA512 b546c8369550e541c1a0b1b0e301fdd298a771cb709ad6c6ea3450a8f8bbe7533989a82d1c19cd9bf9a261d7a1fc4c3760919d3d5e3e43b5d698b75b7abf07f7
24 -DIST mysql++-3.1.0.tar.gz 1944101 BLAKE2B dabfa6491c2535fa974c6ee679d5130853dff1fe8530fc6e0ce1cd2762447c2430f9ccbd45dbfd0c67dfee8019d0446cb04b440d1352813dc76962ca8fea5b80 SHA512 bb57bbf03c80edabff701132877f407ecfa1b76958d7655415c59ec939e80fbe250951a16c3d5ea6988dd2c778b623605cb65bf810501f392be2f6b6ad07ad90
25 DIST mysql++-3.2.1.tar.gz 2256735 BLAKE2B 8d5e713926a405fa9b93af690554595d8cc79cc25af216103df241f549fd93e7fa051ef5f1a27e7c67825408b8310886bedaeb69bd80b6ea6cf1c320a94cc9d2 SHA512 936021dcf8568d3ee0c935e5c552acc6fd2b57849d1cc60e68b45b690d798d7bfbc1dedc04e21417d1b4c27017b471e4f6cb70de7f1904949b9222090a777de9
26 -DIST mysql++-3.2.2.tar.gz 3257359 BLAKE2B 180ffaa4d5a198795386f46a6be3bc6f50ded373057b5c6fe618ae3d0976ced8288647bc1beac64fbd7c93aab5f2a79ced4ecc947101e3118b39aa0b40b1eb1a SHA512 eb4250394027f1baafa660711d8221c9eb3a70ff2a37331c58807a97a67b84f792290b24830e851b2421f6ccf2867e9f3597af3af41530256c44521a4c4a55b1
27 DIST mysql++-3.2.3.tar.gz 3241023 BLAKE2B 5faa5711c7ed7c64346013bd1ca6e7dc20e5b23d33983a719c892bbd1002f3986206df6cfef54316f11aa480f18dbc0a2cf6944f9572f3a7dca24cdb73099eb9 SHA512 b6b0a9856ede9e5e08be0f5ed1689b1256f8cf31c3afbb9c9e7f68d0734380e25909ef31cd04be6b253c86b2f881df10f3793a2d3e32042375dbbab4b0700d0a
28
29 diff --git a/dev-db/mysql++/mysql++-2.3.2.ebuild b/dev-db/mysql++/mysql++-2.3.2.ebuild
30 deleted file mode 100644
31 index 7167c329599..00000000000
32 --- a/dev-db/mysql++/mysql++-2.3.2.ebuild
33 +++ /dev/null
34 @@ -1,55 +0,0 @@
35 -# Copyright 1999-2017 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=5
39 -
40 -inherit eutils
41 -
42 -DESCRIPTION="C++ API interface to the MySQL database"
43 -HOMEPAGE="http://tangentsoft.net/mysql++/"
44 -SRC_URI="http://www.tangentsoft.net/mysqlpp/releases/${P}.tar.gz"
45 -
46 -LICENSE="LGPL-2"
47 -SLOT="0"
48 -KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86"
49 -IUSE=""
50 -
51 -RDEPEND=">=virtual/mysql-4.0"
52 -DEPEND="${RDEPEND}
53 - >=sys-devel/gcc-3"
54 -
55 -src_prepare() {
56 -
57 - epatch "${FILESDIR}"/${P}-gcc-4.3.patch
58 -
59 - for i in "${S}"/lib/*.h ; do
60 - sed -i \
61 - -e '/#include </s,mysql.h,mysql/mysql.h,g' \
62 - -e '/#include </s,mysql_version.h,mysql/mysql_version.h,g' \
63 - "${i}" || die "Failed to sed ${i} for fixing MySQL includes"
64 - done
65 -}
66 -
67 -src_configure() {
68 - local myconf
69 - # we want C++ exceptions turned on
70 - myconf="--enable-exceptions"
71 - # give threads a try
72 - myconf="${myconf} --enable-thread-check"
73 - # not including the directives to where MySQL is because it seems to
74 - # find it just fine without
75 -
76 - # force the cflags into place otherwise they get totally ignored by
77 - # configure
78 - CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
79 - econf ${myconf}
80 -}
81 -
82 -src_install() {
83 - default
84 - # install the docs and HTML pages
85 - dodoc README* CREDITS ChangeLog HACKERS Wishlist
86 - dohtml -r doc/html/*
87 - rm -r doc/html || die
88 - dodoc -r doc/*
89 -}
90
91 diff --git a/dev-db/mysql++/mysql++-3.1.0.ebuild b/dev-db/mysql++/mysql++-3.1.0.ebuild
92 deleted file mode 100644
93 index b945531b392..00000000000
94 --- a/dev-db/mysql++/mysql++-3.1.0.ebuild
95 +++ /dev/null
96 @@ -1,49 +0,0 @@
97 -# Copyright 1999-2017 Gentoo Foundation
98 -# Distributed under the terms of the GNU General Public License v2
99 -
100 -EAPI="5"
101 -
102 -inherit eutils
103 -
104 -DESCRIPTION="C++ API interface to the MySQL database"
105 -HOMEPAGE="http://tangentsoft.net/mysql++/"
106 -SRC_URI="http://www.tangentsoft.net/mysqlpp/releases/${P}.tar.gz"
107 -
108 -LICENSE="LGPL-2"
109 -SLOT="0/3"
110 -KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
111 -IUSE=""
112 -
113 -RDEPEND=">=virtual/mysql-4.0"
114 -DEPEND="${RDEPEND}
115 - || ( >=sys-devel/gcc-3 >=sys-devel/gcc-apple-4 )"
116 -
117 -src_prepare() {
118 - epatch "${FILESDIR}"/${PN}-3.0-gcc-as-needed.patch
119 - epatch "${FILESDIR}"/${PN}-3.2.1-gold.patch
120 -
121 - for i in "${S}"/lib/*.h ; do
122 - sed -i \
123 - -e '/#include </s,mysql.h,mysql/mysql.h,g' \
124 - -e '/#include </s,mysql_version.h,mysql/mysql_version.h,g' \
125 - "${i}"
126 - done
127 - epatch_user
128 -}
129 -
130 -src_configure() {
131 - local myconf
132 - use prefix || local EPREFIX=
133 - myconf="--enable-thread-check --with-mysql=${EPREFIX}/usr"
134 -
135 - CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
136 - econf ${myconf}
137 -}
138 -
139 -src_install() {
140 - emake DESTDIR="${D}" install
141 - # install the docs and HTML pages
142 - dodoc README* CREDITS* ChangeLog HACKERS.txt Wishlist doc/ssqls-pretty
143 - dodoc -r doc/pdf/ doc/refman/ doc/userman/
144 - dohtml -r doc/html/
145 -}
146
147 diff --git a/dev-db/mysql++/mysql++-3.2.2.ebuild b/dev-db/mysql++/mysql++-3.2.2.ebuild
148 deleted file mode 100644
149 index a7f6809512a..00000000000
150 --- a/dev-db/mysql++/mysql++-3.2.2.ebuild
151 +++ /dev/null
152 @@ -1,36 +0,0 @@
153 -# Copyright 1999-2017 Gentoo Foundation
154 -# Distributed under the terms of the GNU General Public License v2
155 -
156 -EAPI="5"
157 -
158 -inherit eutils
159 -
160 -DESCRIPTION="C++ API interface to the MySQL database"
161 -HOMEPAGE="http://tangentsoft.net/mysql++/"
162 -SRC_URI="http://www.tangentsoft.net/mysqlpp/releases/${P}.tar.gz"
163 -
164 -LICENSE="LGPL-2"
165 -SLOT="0/3"
166 -KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
167 -IUSE=""
168 -
169 -RDEPEND="virtual/libmysqlclient:="
170 -DEPEND="${RDEPEND}"
171 -
172 -src_prepare() {
173 - epatch "${FILESDIR}/${PN}-3.2.1-gold.patch"
174 - epatch_user
175 -}
176 -
177 -src_configure() {
178 - local myconf="--enable-thread-check --with-mysql=${EPREFIX}/usr"
179 - econf ${myconf}
180 -}
181 -
182 -src_install() {
183 - default
184 - # install the docs and HTML pages
185 - dodoc CREDITS* HACKERS.txt Wishlist doc/ssqls-pretty
186 - dodoc -r doc/pdf/ doc/refman/ doc/userman/
187 - dohtml -r doc/html/
188 -}