summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-11-09 11:57:25 +0100
committerPacho Ramos <pacho@gentoo.org>2016-11-09 11:59:16 +0100
commit517f783331e1c17e007963be5222369445a9904d (patch)
tree3db29a0de27c2855e2c572f4ad7f8f567f0decf5 /dev-dotnet/monotorrent
parentpackage.mask drop obsolete entries (diff)
downloadgentoo-517f783331e1c17e007963be5222369445a9904d.tar.gz
gentoo-517f783331e1c17e007963be5222369445a9904d.tar.bz2
gentoo-517f783331e1c17e007963be5222369445a9904d.zip
Remove masked for removal packages
Diffstat (limited to 'dev-dotnet/monotorrent')
-rw-r--r--dev-dotnet/monotorrent/Manifest2
-rw-r--r--dev-dotnet/monotorrent/files/monotorrent.pc.in8
-rw-r--r--dev-dotnet/monotorrent/metadata.xml8
-rw-r--r--dev-dotnet/monotorrent/monotorrent-0.80.ebuild49
4 files changed, 0 insertions, 67 deletions
diff --git a/dev-dotnet/monotorrent/Manifest b/dev-dotnet/monotorrent/Manifest
deleted file mode 100644
index bce27d0e9e27..000000000000
--- a/dev-dotnet/monotorrent/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST mono.snk.bz2 785 SHA256 0cc2ca58f90773eafa8460dfb8ff4ac6238b68106eb1631348a800091a6ff3de SHA512 de64da7a9e4fa53e5a5abaee00aae05ce3560c72ad8251fd79e2ff9ffa7fb2d5e7c1a4bdb2dbc2eeeeac6450aaad8c40649ff4675ddf95365ef8604a93333224 WHIRLPOOL 05882dd5cc9e2b99b78dc882fed49547dc6b6c133616574987322623e3bd734dc74435b69a6c864f928eb087df7a1ab42910adc47a7d0e70d54178e6b319f628
-DIST monotorrent-0.80.tar.gz 290837 SHA256 d9c079dc4757e637f1e81a4d8b8a153394fcbeff8dd572bb0622e3430c5a34cf SHA512 91f5559c278d5b89d43231eb545a4ba4b182e2ab1f56cc338a6db00464b8f97f2968c40a1f002d53ced30fb2199c024077157cbd853f30cd5af468c6fb5f6af2 WHIRLPOOL 234558edf10cce26dd7466c515f4fb54d6ebabdca7c79fef925ddb45d1058a88e934a5540a1ed4218e75413c4631748f8c68404c3f2e5f6097ffdfb3325c275c
diff --git a/dev-dotnet/monotorrent/files/monotorrent.pc.in b/dev-dotnet/monotorrent/files/monotorrent.pc.in
deleted file mode 100644
index 33d48a810842..000000000000
--- a/dev-dotnet/monotorrent/files/monotorrent.pc.in
+++ /dev/null
@@ -1,8 +0,0 @@
-prefix=${pcfiledir}/../..
-exec_prefix=${prefix}
-libdir=${exec_prefix}/@LIBDIR@
-
-Name: @PACKAGENAME@
-Description: @DESCRIPTION@
-Version: @VERSION@
-Libs: @LIBS@
diff --git a/dev-dotnet/monotorrent/metadata.xml b/dev-dotnet/monotorrent/metadata.xml
deleted file mode 100644
index 1e9986c4a0cb..000000000000
--- a/dev-dotnet/monotorrent/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 type="project">
- <email>dotnet@gentoo.org</email>
- <name>Gentoo Dotnet Project</name>
- </maintainer>
-</pkgmetadata>
diff --git a/dev-dotnet/monotorrent/monotorrent-0.80.ebuild b/dev-dotnet/monotorrent/monotorrent-0.80.ebuild
deleted file mode 100644
index dfa84b7da47b..000000000000
--- a/dev-dotnet/monotorrent/monotorrent-0.80.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-
-inherit mono multilib
-
-DESCRIPTION="Monotorrent is an open source C# bittorrent library"
-HOMEPAGE="http://projects.qnetp.net/projects/show/monotorrent"
-SRC_URI="http://projects.qnetp.net/attachments/download/28/${P}.tar.gz
- mirror://gentoo/mono.snk.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-RDEPEND=">=dev-lang/mono-2.0.1"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-# The hack we do to get the dll installed in the GAC makes the unit-tests
-# defunct.
-RESTRICT="test"
-
-src_prepare() {
- sed -i \
- -e "/InternalsVisibleTo/d" \
- MonoTorrent/AssemblyInfo.cs* || die
-}
-
-src_compile() {
- emake -j1 ASSEMBLY_COMPILER_COMMAND="/usr/bin/gmcs -keyfile:${WORKDIR}/mono.snk"
-}
-
-src_install() {
- egacinstall $(find . -name "MonoTorrent.dll")
- dodir /usr/$(get_libdir)/pkgconfig
- ebegin "Installing .pc file"
- sed \
- -e "s:@LIBDIR@:$(get_libdir):" \
- -e "s:@PACKAGENAME@:${PN}:" \
- -e "s:@DESCRIPTION@:${DESCRIPTION}:" \
- -e "s:@VERSION@:${PV}:" \
- -e 's;@LIBS@;-r:${libdir}/mono/monotorrent/MonoTorrent.dll;' \
- "${FILESDIR}"/${PN}.pc.in > "${D}"/usr/$(get_libdir)/pkgconfig/${PN}.pc
- PKG_CONFIG_PATH="${D}/usr/$(get_libdir)/pkgconfig/" pkg-config --exists monotorrent || die ".pc file failed to validate."
- eend $?
-}