commit:     9b6a70739691b779d22af1c79a535c707293d3d6
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 19 13:12:21 2022 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Tue Jul 19 13:12:21 2022 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=9b6a7073

sys-libs/tevent: in tree version 0.11.0 works

Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>

 sys-libs/tevent/Manifest                           |  1 -
 .../tevent/files/tevent-add-missing-header.patch   | 25 -------
 sys-libs/tevent/metadata.xml                       | 12 ----
 sys-libs/tevent/tevent-0.10.2.ebuild               | 80 ----------------------
 4 files changed, 118 deletions(-)

diff --git a/sys-libs/tevent/Manifest b/sys-libs/tevent/Manifest
deleted file mode 100644
index 09de55dd..00000000
--- a/sys-libs/tevent/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST tevent-0.10.2.tar.gz 800731 BLAKE2B 
5ea6b83378b04dbe1666432db0dbd4c0df2e6b0bf5ebcc8ec4ec9bdeb834efec75c87b2019dc78c691aba6c4f6467394101febd6010f106046a1fb8848e27405
 SHA512 
1da8f28898f35daab515892b880d1de601062cc3e2b2570cd62e6913df17b0195a05acb7b484c628cddc0eb8b0cde893105ede3feb32bc5764e7d25684f332ba

diff --git a/sys-libs/tevent/files/tevent-add-missing-header.patch 
b/sys-libs/tevent/files/tevent-add-missing-header.patch
deleted file mode 100644
index 9f4a4487..00000000
--- a/sys-libs/tevent/files/tevent-add-missing-header.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 63ba9622d49270a1f9795da9aab8f9934c6e088b Mon Sep 17 00:00:00 2001
-From: Jory Pratt <anar...@gentoo.org>
-Date: Thu, 7 May 2020 18:50:57 -0500
-Subject: [PATCH] tevent.h needs sys/types.h for pid_t
-
-Signed-off-by: Jory Pratt <anar...@gentoo.org>
----
- tevent.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/tevent.h b/tevent.h
-index 3c3e3cc..011e1ad 100644
---- a/tevent.h
-+++ b/tevent.h
-@@ -31,6 +31,7 @@
- #include <stdint.h>
- #include <talloc.h>
- #include <sys/time.h>
-+#include <sys/types.h>
- #include <stdbool.h>
- 
- struct tevent_context;
--- 
-2.26.2
-

diff --git a/sys-libs/tevent/metadata.xml b/sys-libs/tevent/metadata.xml
deleted file mode 100644
index 00dd5f38..00000000
--- a/sys-libs/tevent/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="person">
-               <email>patr...@gentoo.org</email>
-               <name>Patrick Lauer</name>
-       </maintainer>
-<maintainer type="project">
-               <email>sa...@gentoo.org</email>
-               <name>Samba</name>
-       </maintainer>
-</pkgmetadata>

diff --git a/sys-libs/tevent/tevent-0.10.2.ebuild 
b/sys-libs/tevent/tevent-0.10.2.ebuild
deleted file mode 100644
index 783a47ad..00000000
--- a/sys-libs/tevent/tevent-0.10.2.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-PYTHON_REQ_USE="threads(+)"
-inherit waf-utils multilib-minimal python-single-r1
-
-DESCRIPTION="Samba tevent library"
-HOMEPAGE="https://tevent.samba.org/";
-SRC_URI="https://samba.org/ftp/tevent/${P}.tar.gz";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x86-linux"
-IUSE="python"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RESTRICT="test"
-
-RDEPEND="
-       dev-libs/libbsd[${MULTILIB_USEDEP}]
-       >=sys-libs/talloc-2.3.1[${MULTILIB_USEDEP}]
-       python? (
-               ${PYTHON_DEPS}
-               sys-libs/talloc[python,${PYTHON_SINGLE_USEDEP}]
-       )
-"
-DEPEND="${RDEPEND}
-       elibc_glibc? (
-               net-libs/libtirpc[${MULTILIB_USEDEP}]
-               || (
-                       net-libs/rpcsvc-proto
-                       <sys-libs/glibc-2.26[rpc(+)]
-               )
-       )
-"
-BDEPEND="${PYTHON_DEPS}
-       virtual/pkgconfig
-"
-
-WAF_BINARY="${S}/buildtools/bin/waf"
-
-PATCHES=(
-       "${FILESDIR}/${PN}-add-missing-header.patch"
-)
-
-pkg_setup() {
-       python-single-r1_pkg_setup
-}
-
-src_prepare() {
-       default
-       multilib_copy_sources
-}
-
-multilib_src_configure() {
-       waf-utils_src_configure \
-               --bundled-libraries=NONE \
-               --builtin-libraries=NONE \
-               $(multilib_native_usex python '' '--disable-python')
-}
-
-multilib_src_compile() {
-       # need to avoid parallel building, this looks like the sanest way with 
waf-utils/multiprocessing eclasses
-       unset MAKEOPTS
-       waf-utils_src_compile
-}
-
-multilib_src_install() {
-       waf-utils_src_install
-
-       multilib_is_native_abi && use python && python_domodule tevent.py
-}
-
-multilib_src_install_all() {
-       insinto /usr/include
-       doins tevent_internal.h
-}

Reply via email to