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/lib_mysqludf_log/, dev-db/lib_mysqludf_log/files/, profiles/
Date: Wed, 13 Mar 2019 09:34:39
Message-Id: 1552469662.db2bdfc8cdf939b8aa9712abf2ca907752b4ccc9.mgorny@gentoo
1 commit: db2bdfc8cdf939b8aa9712abf2ca907752b4ccc9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 13 09:33:50 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 13 09:34:22 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db2bdfc8
7
8 dev-db/lib_mysqludf_log: 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/lib_mysqludf_log/Manifest | 1 -
14 .../files/lib_mysqludf_log-warnings.patch | 11 -----
15 .../lib_mysqludf_log/lib_mysqludf_log-0.0.2.ebuild | 56 ----------------------
16 dev-db/lib_mysqludf_log/metadata.xml | 5 --
17 profiles/package.mask | 7 ---
18 5 files changed, 80 deletions(-)
19
20 diff --git a/dev-db/lib_mysqludf_log/Manifest b/dev-db/lib_mysqludf_log/Manifest
21 deleted file mode 100644
22 index 1d31b380ab7..00000000000
23 --- a/dev-db/lib_mysqludf_log/Manifest
24 +++ /dev/null
25 @@ -1 +0,0 @@
26 -DIST lib_mysqludf_log_0.0.2.tar.gz 1892 BLAKE2B 24f4197c2781e0bfd156b73adbea76f7a7580fcc85b55b566357d24896e5485ea7e93523286234ec3f1e39b386f54a63fe6f259053d7589622403655479d47d7 SHA512 674395c145260122bd14055a838b82d69217841364a496a518eb08860ba0beabe35627fe42108663caaf4a8c461d27551de43942ffd4c724d5ab912a2e74474d
27
28 diff --git a/dev-db/lib_mysqludf_log/files/lib_mysqludf_log-warnings.patch b/dev-db/lib_mysqludf_log/files/lib_mysqludf_log-warnings.patch
29 deleted file mode 100644
30 index 64b59639a32..00000000000
31 --- a/dev-db/lib_mysqludf_log/files/lib_mysqludf_log-warnings.patch
32 +++ /dev/null
33 @@ -1,11 +0,0 @@
34 ---- lib_mysqludf_log.c.orig 2008-07-07 01:17:06.000000000 +0200
35 -+++ lib_mysqludf_log.c 2011-10-18 12:50:52.000000000 +0200
36 -@@ -159,7 +159,7 @@
37 - } else {
38 - fmt = (char *)initid->ptr;
39 - memcpy(fmt, "%0.", 3);
40 -- sprintf(fmt+3, "%d", args->lengths[0]<=9999? args->lengths[0]: 9999);
41 -+ sprintf(fmt+3, "%d", (int)(args->lengths[0]<=9999? args->lengths[0]: 9999));
42 - numDigits = strlen(fmt + 4);
43 - memcpy(fmt + 4 + numDigits, "s\n\0", 3);
44 - fprintf(stderr, fmt, args->args[0]);
45
46 diff --git a/dev-db/lib_mysqludf_log/lib_mysqludf_log-0.0.2.ebuild b/dev-db/lib_mysqludf_log/lib_mysqludf_log-0.0.2.ebuild
47 deleted file mode 100644
48 index 639f48e5e59..00000000000
49 --- a/dev-db/lib_mysqludf_log/lib_mysqludf_log-0.0.2.ebuild
50 +++ /dev/null
51 @@ -1,56 +0,0 @@
52 -# Copyright 1999-2011 Gentoo Foundation
53 -# Distributed under the terms of the GNU General Public License v2
54 -
55 -EAPI=4
56 -
57 -inherit eutils toolchain-funcs
58 -
59 -DESCRIPTION="MySQL UDF to write to log files"
60 -HOMEPAGE="http://www.mysqludf.org/lib_mysqludf_log/"
61 -SRC_URI="http://www.mysqludf.org/${PN}/${PN}_${PV}.tar.gz"
62 -
63 -LICENSE="LGPL-2.1"
64 -SLOT="0"
65 -KEYWORDS="~amd64 ~x86"
66 -IUSE=""
67 -
68 -DEPEND=">=virtual/mysql-5.1"
69 -RDEPEND="${DEPEND}"
70 -
71 -S="${WORKDIR}"
72 -
73 -# compile helper
74 -_compile() {
75 - local CC="$(tc-getCC)"
76 - echo "${CC} ${@}" && "${CC}" "${@}"
77 -}
78 -
79 -pkg_setup() {
80 - MYSQL_PLUGINDIR="$(mysql_config --plugindir)"
81 - MYSQL_INCLUDE="$(mysql_config --include)"
82 -}
83 -
84 -src_prepare() {
85 - epatch "${FILESDIR}/${PN}-warnings.patch"
86 -}
87 -
88 -src_compile() {
89 - _compile ${CFLAGS} -Wall -fPIC ${MYSQL_INCLUDE} \
90 - -shared ${LDFLAGS} -o ${PN}.so ${PN}.c
91 -}
92 -
93 -src_install() {
94 - exeinto "${MYSQL_PLUGINDIR}"
95 - doexe ${PN}.so
96 - dodoc ${PN}.sql
97 -}
98 -
99 -pkg_postinst() {
100 - elog
101 - elog "Please have a look at the documentation, how to"
102 - elog "enable/disable the UDF functions of ${PN}."
103 - elog
104 - elog "The documentation is located here:"
105 - elog "/usr/share/doc/${PF}"
106 - elog
107 -}
108
109 diff --git a/dev-db/lib_mysqludf_log/metadata.xml b/dev-db/lib_mysqludf_log/metadata.xml
110 deleted file mode 100644
111 index 6f49eba8f49..00000000000
112 --- a/dev-db/lib_mysqludf_log/metadata.xml
113 +++ /dev/null
114 @@ -1,5 +0,0 @@
115 -<?xml version="1.0" encoding="UTF-8"?>
116 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
117 -<pkgmetadata>
118 -<!-- maintainer-needed -->
119 -</pkgmetadata>
120
121 diff --git a/profiles/package.mask b/profiles/package.mask
122 index 95dd030737b..397fd4ba307 100644
123 --- a/profiles/package.mask
124 +++ b/profiles/package.mask
125 @@ -124,13 +124,6 @@ app-arch/freeze
126 # Depends on >=virtual/{jdk,jre}-11 which is masked
127 =www-servers/tomcat-9.0.16
128
129 -# Brian Evans <grknight@g.o> (7 Feb 2019)
130 -# These packages will not build properly under the new split
131 -# library package easily and have no maintainer.
132 -# Cannot verify if they work with modern database versions either.
133 -# Removal in 30 days. Bug 677450
134 -dev-db/lib_mysqludf_log
135 -
136 # Jeroen Roovers <jer@g.o> (31 Jan 2019)
137 # Depends on =dev-libs/openssl-1.1.1*
138 # bug #670574