commit:     3e361128f05acef04c06bfcd4a2e172678d3154e
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 10 12:47:53 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Nov 10 12:48:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e361128

net-libs/iax: treeclean

Closes: https://bugs.gentoo.org/817989
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 net-libs/iax/Manifest                  |  1 -
 net-libs/iax/files/0.2.2-debug.patch   | 21 ---------------------
 net-libs/iax/files/0.2.2-memset.patch  | 12 ------------
 net-libs/iax/files/0.2.2-sandbox.patch | 19 -------------------
 net-libs/iax/iax-0.2.2-r3.ebuild       | 32 --------------------------------
 net-libs/iax/metadata.xml              |  8 --------
 profiles/package.mask                  |  7 -------
 7 files changed, 100 deletions(-)

diff --git a/net-libs/iax/Manifest b/net-libs/iax/Manifest
deleted file mode 100644
index c9501f88155..00000000000
--- a/net-libs/iax/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST iax-0.2.2.tar.gz 139379 BLAKE2B 
6fd4ac85774851605162ad9845c1e847aae7c2e0504f06a302d223ec51d1963cbb1e309b98d5a41ef70e4bf3de88be60a65ad7e8c08e23d73096b43efa7a2a0c
 SHA512 
f86fc56c9f31665e849e8528d2852e06abd803e8d02fa6098d68eefecccc263ded97d1870e9ee157ec1610fefc92b8f14f2d858fbce115c5da83a6dec1eea210

diff --git a/net-libs/iax/files/0.2.2-debug.patch 
b/net-libs/iax/files/0.2.2-debug.patch
deleted file mode 100644
index 68efdfdd237..00000000000
--- a/net-libs/iax/files/0.2.2-debug.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -uNr iax-0.2.2.ORIG/configure.in iax-0.2.2/configure.in
---- iax-0.2.2.ORIG/configure.in        2014-05-13 13:23:35.083867921 +0100
-+++ iax-0.2.2/configure.in     2014-05-13 13:24:25.879870451 +0100
-@@ -25,6 +25,8 @@
- fi
- 
- if test "$enable_extreme_debug" = yes ; then
-+      AC_DEFINE(DEBUG_SUPPORT)
-+      AC_DEFINE(DEBUG_DEFAULT)
-       AC_DEFINE(EXTREME_DEBUG)
- fi
- 
-diff -uNr iax-0.2.2.ORIG/src/Makefile.am iax-0.2.2/src/Makefile.am
---- iax-0.2.2.ORIG/src/Makefile.am     2014-05-13 13:23:35.082867921 +0100
-+++ iax-0.2.2/src/Makefile.am  2014-05-13 13:24:32.439870777 +0100
-@@ -1,5 +1,4 @@
- CFLAGS += -g -Wall -Wstrict-prototypes -I .
--CFLAGS += -DDEBUG_SUPPORT -DDEBUG_DEFAULT 
- CFLAGS += $(UCFLAGS)
- 
- 

diff --git a/net-libs/iax/files/0.2.2-memset.patch 
b/net-libs/iax/files/0.2.2-memset.patch
deleted file mode 100644
index 08408eef98f..00000000000
--- a/net-libs/iax/files/0.2.2-memset.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -uNr iax-0.2.2.ORIG/src/md5.c iax-0.2.2/src/md5.c
---- iax-0.2.2.ORIG/src/md5.c   2014-05-13 13:26:51.570877706 +0100
-+++ iax-0.2.2/src/md5.c        2014-05-13 13:27:08.567878553 +0100
-@@ -165,7 +165,7 @@
-     MD5Transform(ctx->buf, (uint32 *) ctx->in);
-     byteReverse((unsigned char *) ctx->buf, 4);
-     memcpy(digest, ctx->buf, 16);
--    memset(ctx, 0, sizeof(ctx));      /* In case it's sensitive */
-+    memset(ctx, 0, sizeof(*ctx));     /* In case it's sensitive */
- }
- 
- #ifndef ASM_MD5

diff --git a/net-libs/iax/files/0.2.2-sandbox.patch 
b/net-libs/iax/files/0.2.2-sandbox.patch
deleted file mode 100644
index 2dc141a73b1..00000000000
--- a/net-libs/iax/files/0.2.2-sandbox.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -uNr iax-0.2.2.ORIG/src/Makefile.am iax-0.2.2/src/Makefile.am
---- iax-0.2.2.ORIG/src/Makefile.am     2014-05-13 12:45:58.343755528 +0100
-+++ iax-0.2.2/src/Makefile.am  2014-05-13 12:46:30.044757107 +0100
-@@ -9,10 +9,9 @@
- EXTRA_DIST = md5.h frame.h iax-client.h iax.h
- 
- install:
--      mkdir -p $(includedir)/iax
--      install -m 644 md5.h $(includedir)/iax
--      install -m 644 frame.h $(includedir)/iax
--      install -m 644 iax.h $(includedir)/iax
--      install -m 644 iax-client.h $(includedir)/iax
--      /sbin/ldconfig
-+      mkdir -p $(DESTDIR)$(includedir)/iax
-+      install -m 644 md5.h $(DESTDIR)$(includedir)/iax
-+      install -m 644 frame.h $(DESTDIR)$(includedir)/iax
-+      install -m 644 iax.h $(DESTDIR)$(includedir)/iax
-+      install -m 644 iax-client.h $(DESTDIR)$(includedir)/iax
- 

diff --git a/net-libs/iax/iax-0.2.2-r3.ebuild b/net-libs/iax/iax-0.2.2-r3.ebuild
deleted file mode 100644
index c8255c09a37..00000000000
--- a/net-libs/iax/iax-0.2.2-r3.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="IAX (Inter Asterisk eXchange) Library"
-HOMEPAGE="https://www.asterisk.org/";
-SRC_URI="https://downloads.asterisk.org/pub/telephony/libiax/${P}.tar.gz";
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ppc x86"
-IUSE="debug snomhack"
-
-PATCHES=(
-       "${FILESDIR}/${PV}-debug.patch"
-       "${FILESDIR}/${PV}-memset.patch"
-       "${FILESDIR}/${PV}-sandbox.patch"
-)
-
-src_prepare() {
-       default
-       eautoreconf
-}
-
-src_configure() {
-       econf \
-               $(use_enable debug extreme-debug) \
-               $(use_enable snomhack)
-}

diff --git a/net-libs/iax/metadata.xml b/net-libs/iax/metadata.xml
deleted file mode 100644
index 5d0406fe109..00000000000
--- a/net-libs/iax/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-<!-- maintainer-needed -->
-       <use>
-               <flag name="snomhack">Use slower memset for SNOM phoneem</flag>
-       </use>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index a563eecac6a..492d1a92b02 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -514,13 +514,6 @@ perl-core/Math-Complex
 perl-core/Memoize
 perl-core/MIME-Base64
 
-# Jaco Kroon <[email protected]> (2021-10-05)
-# Masked for removal in 30 days.
-# Last upstream release in 2012.
-# Looks to be broken (iax-config --libs references not installed libiax.so).
-# No consumers in ::gentoo. Bug #817989
-net-libs/iax
-
 # Sam James <[email protected]> (2021-10-10)
 # Needs upstream build system fixes (currently in progress).
 # Python toggles don't work correctly right now.

Reply via email to