summaryrefslogtreecommitdiff
path: root/dev-haskell/stack-bin
diff options
context:
space:
mode:
Diffstat (limited to 'dev-haskell/stack-bin')
-rw-r--r--dev-haskell/stack-bin/Manifest3
-rw-r--r--dev-haskell/stack-bin/metadata.xml15
-rw-r--r--dev-haskell/stack-bin/stack-bin-2.3.1.ebuild39
3 files changed, 0 insertions, 57 deletions
diff --git a/dev-haskell/stack-bin/Manifest b/dev-haskell/stack-bin/Manifest
deleted file mode 100644
index b80930ebfd08..000000000000
--- a/dev-haskell/stack-bin/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST stack-2.3.1-linux-x86_64.tar.gz 14478645 BLAKE2B e49a4c47f9a2d03fcf9a8ddfac47ff89a39520799886878a824dd9fa1d636bbcb66bbca1ddb8d1b9b7308e4c828e510c0994fc90f3a44d3d344201d5e0af73ea SHA512 eef99b5a1f7593ca884708a05bcf6f7c3e8a5ade4f71b6a802c961bdc346aa560861762b238d8cd6b3c8b85e45334235ef5eaf97126df5970863dca701d83298
-EBUILD stack-bin-2.3.1.ebuild 774 BLAKE2B 98e64541a7129c031cdf42448f49f531689f551ba7b6898396d1dec36c90b5c2097fc84e4998fbb2607447fd3f135bd099ffee89cad949275463abbe8a46a8ef SHA512 2d498797af7cd5bb4a3bf07dc998027910eda815594fb611a4892e531fd581e383da4ecc8e15d5ce62ff55b69e01b088f697982d91596a9cac73339cc0b1b5d5
-MISC metadata.xml 570 BLAKE2B 54a05bfc083e0e4d192cf62963baf0cdc2b76523234f2ad7a134fd2774e7829efdd48bd04e640090651e18a744d9ca87ebc31b7f5312bc8684de1651c8a3b00b SHA512 9214777f728f6a5e79cedca9b14dd8958196631697d9e065918e3f2b1bab770ea1e88a3e09614c99f06019976278e6e17b7753d948eb7883282237a2a516d421
diff --git a/dev-haskell/stack-bin/metadata.xml b/dev-haskell/stack-bin/metadata.xml
deleted file mode 100644
index af5ab2a3c183..000000000000
--- a/dev-haskell/stack-bin/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>haskell@gentoo.org</email>
- <name>Gentoo Haskell</name>
- </maintainer>
- <longdescription>
- Please see the README.md for usage information, and
- the wiki on Github for more details. Also, note that
- the API for the library is not currently stable, and may
- change significantly, even between minor releases. It is
- currently only intended for use by the executable.
- </longdescription>
-</pkgmetadata>
diff --git a/dev-haskell/stack-bin/stack-bin-2.3.1.ebuild b/dev-haskell/stack-bin/stack-bin-2.3.1.ebuild
deleted file mode 100644
index 525043e12021..000000000000
--- a/dev-haskell/stack-bin/stack-bin-2.3.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="The Haskell Tool Stack (Binary)"
-HOMEPAGE="https://github.com/commercialhaskell/stack"
-
-SRC_URI="https://github.com/commercialhaskell/stack/releases/download/v${PV}/stack-${PV}-linux-x86_64.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="symlink"
-
-DEPEND=""
-RDEPEND="${DEPEND}
- sys-libs/zlib
- dev-libs/gmp:0
-"
-RDEPEND+=" symlink? ( !dev-haskell/stack )"
-
-S=${WORKDIR}
-
-QA_PREBUILT="/usr/bin/stack-bin"
-QA_PRESTRIPPED="/usr/bin/stack-bin"
-
-src_prepare() {
- default
-
- mv stack-${PV}-*/doc doc || die
- mv stack-${PV}-*/stack stack-bin || die
-}
-
-src_install() {
- dodoc -r doc/*
- dobin stack-bin
- use symlink && dosym stack-bin /usr/bin/stack
-}