commit:     ddfbfddcc275de3cb70269682d7c91327997bdbf
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 13 09:32:18 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 13 09:34:20 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddfbfddc

dev-db/mysql-udf-ipv6: Remove last-rited pkg

Closes: https://bugs.gentoo.org/677450
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-db/mysql-udf-ipv6/Manifest                     |  1 -
 .../files/mysql-udf-ipv6-warnings.patch            | 28 ---------
 dev-db/mysql-udf-ipv6/metadata.xml                 |  8 ---
 dev-db/mysql-udf-ipv6/mysql-udf-ipv6-0.4.ebuild    | 68 ----------------------
 profiles/package.mask                              |  1 -
 5 files changed, 106 deletions(-)

diff --git a/dev-db/mysql-udf-ipv6/Manifest b/dev-db/mysql-udf-ipv6/Manifest
deleted file mode 100644
index bbd2eb6ec34..00000000000
--- a/dev-db/mysql-udf-ipv6/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST watchmouse-mysql-udf-ipv6-01c591b05b79.tar.bz2 10105 BLAKE2B 
c3f7b71c240af4e89b369b519d03d43cc3fd120d3c66a115ac6869c95ee4cb6ef0d8fc9c9fbc9d86c41eacf50af133db2ff96537c4c8418d32bea11db2247eb5
 SHA512 
21bcd207076dfbab251b343eb4bf9dd8f783f0ce666ba266b2b9101acfcb764dbb1b4cc2f4b0608a128d0e684b31e9d97d58978b2cdb3a5452c1656780671287

diff --git a/dev-db/mysql-udf-ipv6/files/mysql-udf-ipv6-warnings.patch 
b/dev-db/mysql-udf-ipv6/files/mysql-udf-ipv6-warnings.patch
deleted file mode 100644
index 392ecd3c4f5..00000000000
--- a/dev-db/mysql-udf-ipv6/files/mysql-udf-ipv6-warnings.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- mysql_udf_ipv6.c.orig      2011-08-10 10:45:49.000000000 +0200
-+++ mysql_udf_ipv6.c   2011-10-18 16:27:58.000000000 +0200
-@@ -282,7 +282,7 @@
- {
-     unsigned long length = args->lengths[0];
-     long long mask = *((long long *) args->args[1]);
--    unsigned char mask8, i;
-+    unsigned char i;
- 
-     if (!args->args[0] || !length)
-     {
-@@ -299,7 +299,7 @@
- 
-     // my ugly get-the-job-done 128-bit masking
-     memset(result, 0, INET6_ADDRLEN);
--    for (i = 0; i < INET6_ADDRLEN, mask >= 8; i++, mask -= 8)
-+    for (i = 0; i < INET6_ADDRLEN && mask >= 8; i++, mask -= 8)
-     {
-         result[i] = args->args[0][i];
-     }
-@@ -347,7 +347,6 @@
- {
-     struct addrinfo *info;
-     char *addr;
--    ushort i;
- 
-     if (!args->args[0] || !args->lengths[0])
-     {

diff --git a/dev-db/mysql-udf-ipv6/metadata.xml 
b/dev-db/mysql-udf-ipv6/metadata.xml
deleted file mode 100644
index e3473b0dd86..00000000000
--- a/dev-db/mysql-udf-ipv6/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <!-- maintainer-needed -->
-       <upstream>
-               <remote-id 
type="bitbucket">watchmouse/mysql-udf-ipv6</remote-id>
-       </upstream>
-</pkgmetadata>

diff --git a/dev-db/mysql-udf-ipv6/mysql-udf-ipv6-0.4.ebuild 
b/dev-db/mysql-udf-ipv6/mysql-udf-ipv6-0.4.ebuild
deleted file mode 100644
index e7bcc449003..00000000000
--- a/dev-db/mysql-udf-ipv6/mysql-udf-ipv6-0.4.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-MY_REV="01c591b05b79"  # checkout revision
-MY_USR="watchmouse"    # user name
-
-MY_P="${MY_USR}-${PN}-${MY_REV}"
-
-DESCRIPTION="IPv6 and internationalized domain (IDNA) functions for MySQL"
-HOMEPAGE="http://labs.watchmouse.com/2009/10/extending-mysql-5-with-ipv6-functions/";
-SRC_URI="https://bitbucket.org/${MY_USR}/${PN}/get/${MY_REV}.tar.bz2 -> 
${MY_P}.tar.bz2"
-
-LICENSE="EUPL-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="idn"
-
-DEPEND=">=virtual/mysql-5.1
-       idn? ( net-dns/libidn )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-# compile helper
-_compile() {
-       local CC="$(tc-getCC)"
-       echo "${CC} ${@}" && "${CC}" "${@}"
-}
-
-pkg_setup() {
-       MYSQL_PLUGINDIR="$(mysql_config --plugindir)"
-       MYSQL_INCLUDE="$(mysql_config --include)"
-}
-
-src_prepare() {
-       epatch "${FILESDIR}/${PN}-warnings.patch"
-}
-
-src_compile() {
-       _compile ${CFLAGS} -Wall -fPIC ${MYSQL_INCLUDE} \
-               -shared ${LDFLAGS} -o mysql_udf_ipv6.so mysql_udf_ipv6.c
-
-       if use idn; then
-               _compile ${CFLAGS} -Wall -fPIC ${MYSQL_INCLUDE} -lidn \
-                       -shared ${LDFLAGS} -o mysql_udf_idna.so mysql_udf_idna.c
-       fi
-}
-
-src_install() {
-       exeinto "${MYSQL_PLUGINDIR}"
-       doexe mysql_udf_*.so
-       newdoc Changelog ChangeLog
-       dodoc README
-}
-
-pkg_postinst() {
-       elog
-       elog "Please have a look at the documentation, how to"
-       elog "enable/disable the UDF functions of ${PN}."
-       elog
-       elog "The documentation is located here:"
-       elog "/usr/share/doc/${PF}"
-       elog
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index c20aca5435c..0da058c8a39 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -133,7 +133,6 @@ dev-db/lib_mysqludf_log
 dev-db/lib_mysqludf_stem
 dev-db/mysql-udf-base64
 dev-db/mysql-udf-http
-dev-db/mysql-udf-ipv6
 
 # Jeroen Roovers <[email protected]> (31 Jan 2019)
 # Depends on =dev-libs/openssl-1.1.1*

Reply via email to