diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-09-11 13:26:48 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-09-11 18:20:39 +0200 |
commit | 5efd6e6dff9e9a98abee730196f805fd3c8d46df (patch) | |
tree | 471c7811b4cb45fc5c840a019b8d0a01f47b0d6d /net-misc/tipcutils | |
parent | net-misc/taylor-uucp: Drop old (diff) | |
download | gentoo-5efd6e6dff9e9a98abee730196f805fd3c8d46df.tar.gz gentoo-5efd6e6dff9e9a98abee730196f805fd3c8d46df.tar.bz2 gentoo-5efd6e6dff9e9a98abee730196f805fd3c8d46df.zip |
net-misc/tipcutils: Drop old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-misc/tipcutils')
-rw-r--r-- | net-misc/tipcutils/Manifest | 1 | ||||
-rw-r--r-- | net-misc/tipcutils/files/tipcutils-2.0.0-rename_configuration_message_field.patch | 14 | ||||
-rw-r--r-- | net-misc/tipcutils/tipcutils-2.0.0.ebuild | 35 |
3 files changed, 0 insertions, 50 deletions
diff --git a/net-misc/tipcutils/Manifest b/net-misc/tipcutils/Manifest index 65019724de50..e8165037a46b 100644 --- a/net-misc/tipcutils/Manifest +++ b/net-misc/tipcutils/Manifest @@ -1,2 +1 @@ -DIST tipcutils-2.0.0.tar.gz 66495 BLAKE2B 2c0116ce8a59ba6dfeec0061109c003c6eb73ed54ee5e75bbca31abb2f9a92e9312f71ddd9116e706e7b76130a86b7ef63915a0530da9ddcd4d30b38e66c6956 SHA512 40d25d7bb23359ef1c5caeef30f15166deb24772034ec34a69600764c0445d9e7023254e19a2a76e75a46643f5c710b881341d3f32e42e2d9c58d4a94e17c49a DIST tipcutils-2.0.3.tar.gz 166337 BLAKE2B 70a06e0f71550123da9b10cc9330e89e2f0722614f00ab93d229baa78f189b3ae03a9aa70722245886e6dee4b9ebf9f95b9ecc06c4c552096afdf54cf28fab0c SHA512 7f07b4729dbd2c0c93cd69ffe6d2d082cd10f8de8bda335555548d14bd6287229da3686d288be3c10024cc6b607e6e4be983716f734f2d049352f924409511ec diff --git a/net-misc/tipcutils/files/tipcutils-2.0.0-rename_configuration_message_field.patch b/net-misc/tipcutils/files/tipcutils-2.0.0-rename_configuration_message_field.patch deleted file mode 100644 index e5dacb485f67..000000000000 --- a/net-misc/tipcutils/files/tipcutils-2.0.0-rename_configuration_message_field.patch +++ /dev/null @@ -1,14 +0,0 @@ -http://bugs.gentoo.org/383807 -http://tipc.git.sourceforge.net/git/gitweb.cgi?p=tipc/tipcutils;a=commit;h=44efb87cb453c16a31ceef27164b0f0394ae4433 - ---- tipc-config.c -+++ tipc-config.c -@@ -1150,7 +1150,7 @@ static void enable_bearer(char *args) - a, for_dest(), addr2str(domain), pri); - - req_tlv.priority = htonl(pri); -- req_tlv.detect_scope = htonl(domain); -+ req_tlv.disc_domain = htonl(domain); - strncpy(req_tlv.name, a, TIPC_MAX_BEARER_NAME - 1); - req_tlv.name[TIPC_MAX_BEARER_NAME - 1] = '\0'; - diff --git a/net-misc/tipcutils/tipcutils-2.0.0.ebuild b/net-misc/tipcutils/tipcutils-2.0.0.ebuild deleted file mode 100644 index 4cb376facabb..000000000000 --- a/net-misc/tipcutils/tipcutils-2.0.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit eutils toolchain-funcs # linux-info - -DESCRIPTION="Utilities for TIPC (Transparent Inter-Process Communication)" -HOMEPAGE="http://tipc.sourceforge.net" -SRC_URI="mirror://sourceforge/tipc/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="" -DEPEND=">=sys-kernel/linux-headers-2.6.39" - -S=${WORKDIR}/${P}/tipc-config - -src_prepare() { - epatch "${FILESDIR}"/${P}-rename_configuration_message_field.patch - sed -i -e '/OFLAGS/s:-O2::' Makefile || die -} - -src_compile() { - tc-export CC - # inherit linux-info and add IFLAGS="${KERNEL_DIR}/include" below in order - # to build against headers in /usr/src/linux - emake EXTRAS="${CFLAGS}" -} - -src_install() { - dosbin tipc-config -} |