summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2022-09-17 02:56:34 -0400
committerIonen Wolkens <ionen@gentoo.org>2022-09-17 04:42:13 -0400
commit6b3a18cc77aac626b267f127f1be49b883e444bd (patch)
tree5ea273702aceccc4a1d8ec46c7f2f8dffe8872aa /dev-libs/trio
parentdev-util/maturin: drop 0.13.1 (diff)
downloadgentoo-6b3a18cc77aac626b267f127f1be49b883e444bd.tar.gz
gentoo-6b3a18cc77aac626b267f127f1be49b883e444bd.tar.bz2
gentoo-6b3a18cc77aac626b267f127f1be49b883e444bd.zip
dev-libs/trio: drop 1.16
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-libs/trio')
-rw-r--r--dev-libs/trio/Manifest1
-rw-r--r--dev-libs/trio/files/trio-1.16-no-inline.patch8
-rw-r--r--dev-libs/trio/trio-1.16.ebuild41
3 files changed, 0 insertions, 50 deletions
diff --git a/dev-libs/trio/Manifest b/dev-libs/trio/Manifest
index 7f07d6f93d64..cecd5482f771 100644
--- a/dev-libs/trio/Manifest
+++ b/dev-libs/trio/Manifest
@@ -1,2 +1 @@
-DIST trio-1.16.tar.gz 167337 BLAKE2B 0f284e0a130723f7511c0e874276c79c1addc1329833d14f0b76bae9808d90b76a2b26817ee85da71c3997360918cb534917a11bbe35ba627d1012cd8a2f6299 SHA512 3a8bac3ed001f70f498bd2ab0881ed6d3760bc978bf9ff587c3fc1d5d7a38205f779c5fe445f41edaa9e23c15bc1b4a521916e19161277741bc8e2f744b46c69
DIST trio-1.17.tar.gz 452237 BLAKE2B 77ff673cc103b07b1424720d28c49d2e33a1402a98d8d21124fabb0cafd3498a99976d808cbbc5a90e1b3a063c6af68c3daf94768d533e4a762b730a253fa012 SHA512 19f4732b32c6a3754677d5766399fa70083c6a78c0d04b1dfa10a578b21405ba3e3d3af6543e4811f5fd305ec2727781a1b0f2888e59c574ca735f8406da7954
diff --git a/dev-libs/trio/files/trio-1.16-no-inline.patch b/dev-libs/trio/files/trio-1.16-no-inline.patch
deleted file mode 100644
index b1584344a111..000000000000
--- a/dev-libs/trio/files/trio-1.16-no-inline.patch
+++ /dev/null
@@ -1,8 +0,0 @@
-Let compiler decide what to inline (fixes build with -Os).
-https://bugs.gentoo.org/792075
---- a/triodef.h
-+++ b/triodef.h
-@@ -315,2 +315,3 @@
- #endif
-+#undef TRIO_INLINE
- #if !defined(TRIO_INLINE)
diff --git a/dev-libs/trio/trio-1.16.ebuild b/dev-libs/trio/trio-1.16.ebuild
deleted file mode 100644
index bf7d164f5baf..000000000000
--- a/dev-libs/trio/trio-1.16.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Portable string functions, focus on the *printf() and *scanf() clones"
-HOMEPAGE="https://daniel.haxx.se/projects/trio/"
-SRC_URI="mirror://sourceforge/ctrio/${P}.tar.gz"
-
-LICENSE="trio"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-PATCHES=(
- "${FILESDIR}"/${P}-no-inline.patch
-)
-HTML_DOCS=( html/. )
-
-src_prepare() {
- default
- sed -i '/$(CC)/s/-o/$(LOCAL_LDFLAGS) -o/' Makefile.in || die
-}
-
-src_compile() {
- emake AR="$(tc-getAR)" LOCAL_LDFLAGS="${LDFLAGS}"
- ln -s libtrio.so.2{.0.0,} || die
- ln -s libtrio.so{.2.0.0,} || die
-}
-
-src_test() {
- emake LOCAL_LDFLAGS="${LDFLAGS}" regression
- LD_LIBRARY_PATH=".:${LD_LIBRARY_PATH}" ./regression || die
-}
-
-src_install() {
- doheader trio*.h
- dolib.so libtrio.so*
- einstalldocs
-}