Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mysql-udf-http/files/, dev-db/mysql-udf-http/, profiles/
Date: Wed, 13 Mar 2019 09:34:38
Message-Id: 1552469660.d475921f83c372f1f84b313da9106a506f982080.mgorny@gentoo
1 commit: d475921f83c372f1f84b313da9106a506f982080
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 13 09:32:34 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 13 09:34:20 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d475921f
7
8 dev-db/mysql-udf-http: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/677450
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-db/mysql-udf-http/Manifest | 1 -
14 .../files/mysql-udf-http-stdlib.patch | 10 ----
15 dev-db/mysql-udf-http/metadata.xml | 8 ---
16 dev-db/mysql-udf-http/mysql-udf-http-1.0.ebuild | 59 ----------------------
17 profiles/package.mask | 1 -
18 5 files changed, 79 deletions(-)
19
20 diff --git a/dev-db/mysql-udf-http/Manifest b/dev-db/mysql-udf-http/Manifest
21 deleted file mode 100644
22 index 8a60c635b24..00000000000
23 --- a/dev-db/mysql-udf-http/Manifest
24 +++ /dev/null
25 @@ -1 +0,0 @@
26 -DIST mysql-udf-http-1.0.tar.gz 322160 BLAKE2B 50097f0e58b6adb23b51f6aa760fdb58c226196d274f1a115da7824be459538feade2365cdbc15e8c5a4fbeddd5513d73fa7773f69a41e305d8687917600d4d1 SHA512 84feb7cfec052e368131bdf44937868339d9d8694128cd5257aa248ce3d1e2e660f3df1e7da99f64b3954fa66c29ed7af5a809fa5ebbd93a96c6cd2ec2ec81de
27
28 diff --git a/dev-db/mysql-udf-http/files/mysql-udf-http-stdlib.patch b/dev-db/mysql-udf-http/files/mysql-udf-http-stdlib.patch
29 deleted file mode 100644
30 index 6e371fc4a83..00000000000
31 --- a/dev-db/mysql-udf-http/files/mysql-udf-http-stdlib.patch
32 +++ /dev/null
33 @@ -1,10 +0,0 @@
34 ---- src/mysql-udf-http.c.orig 2010-09-06 06:00:32.000000000 +0200
35 -+++ src/mysql-udf-http.c 2011-10-18 16:36:37.000000000 +0200
36 -@@ -2,6 +2,7 @@
37 - #include <string.h>
38 -
39 - #include <stdio.h>
40 -+#include <stdlib.h>
41 - #include <curl/curl.h>
42 - #include "mysql-udf-http.h"
43 -
44
45 diff --git a/dev-db/mysql-udf-http/metadata.xml b/dev-db/mysql-udf-http/metadata.xml
46 deleted file mode 100644
47 index c28680ca19b..00000000000
48 --- a/dev-db/mysql-udf-http/metadata.xml
49 +++ /dev/null
50 @@ -1,8 +0,0 @@
51 -<?xml version="1.0" encoding="UTF-8"?>
52 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
53 -<pkgmetadata>
54 - <!-- maintainer-needed -->
55 - <upstream>
56 - <remote-id type="google-code">mysql-udf-http</remote-id>
57 - </upstream>
58 -</pkgmetadata>
59
60 diff --git a/dev-db/mysql-udf-http/mysql-udf-http-1.0.ebuild b/dev-db/mysql-udf-http/mysql-udf-http-1.0.ebuild
61 deleted file mode 100644
62 index 76152f4b281..00000000000
63 --- a/dev-db/mysql-udf-http/mysql-udf-http-1.0.ebuild
64 +++ /dev/null
65 @@ -1,59 +0,0 @@
66 -# Copyright 1999-2011 Gentoo Foundation
67 -# Distributed under the terms of the GNU General Public License v2
68 -
69 -EAPI=4
70 -
71 -inherit eutils toolchain-funcs autotools
72 -
73 -DESCRIPTION="MySQL User-defined function (UDF) for HTTP REST"
74 -HOMEPAGE="https://code.google.com/p/mysql-udf-http/"
75 -SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz"
76 -
77 -LICENSE="BSD-2"
78 -SLOT="0"
79 -KEYWORDS="~amd64 ~x86"
80 -IUSE=""
81 -
82 -DEPEND=">=virtual/mysql-5.1
83 - net-misc/curl"
84 -RDEPEND="${DEPEND}"
85 -
86 -pkg_setup() {
87 - MYSQL_PLUGINDIR="$(mysql_config --plugindir)"
88 - MYSQL_INCLUDE="$(mysql_config --include)"
89 -}
90 -
91 -src_prepare() {
92 - # fix README
93 - sed -i -e "s|${PN}\(\.so\)|${PN//-/_}\1|g" README
94 -
95 - # fix Makefile.am
96 - sed -i -e "s|${PN}\([_\.]la\)|${PN//-/_}\1|g" \
97 - -e "s|\(-module\)|\1 -avoid-version|g" src/Makefile.am
98 -
99 - epatch "${FILESDIR}/${PN}-stdlib.patch"
100 - eautoreconf
101 -}
102 -
103 -src_configure() {
104 - econf --with-pic --disable-static --libdir="${MYSQL_PLUGINDIR}" \
105 - --with-mysql="$(type -p mysql_config)"
106 -}
107 -
108 -src_install() {
109 - emake DESTDIR="${D}" install
110 - dodoc README
111 -
112 - # remove obsolete *.la file
113 - rm -f -- "${D}${MYSQL_PLUGINDIR}"/*.la
114 -}
115 -
116 -pkg_postinst() {
117 - elog
118 - elog "Please have a look at the documentation, how to"
119 - elog "enable/disable the UDF functions of ${PN}."
120 - elog
121 - elog "The documentation is located here:"
122 - elog "/usr/share/doc/${PF}"
123 - elog
124 -}
125
126 diff --git a/profiles/package.mask b/profiles/package.mask
127 index 0da058c8a39..ae5ccd71dd5 100644
128 --- a/profiles/package.mask
129 +++ b/profiles/package.mask
130 @@ -132,7 +132,6 @@ app-arch/freeze
131 dev-db/lib_mysqludf_log
132 dev-db/lib_mysqludf_stem
133 dev-db/mysql-udf-base64
134 -dev-db/mysql-udf-http
135
136 # Jeroen Roovers <jer@g.o> (31 Jan 2019)
137 # Depends on =dev-libs/openssl-1.1.1*