From 1798c4aeca70ac8d0a243684d6a798fbc65735f8 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 20:57:42 +0100 Subject: gentoo resync : 14.07.2018 --- dev-haskell/options/Manifest | 3 -- dev-haskell/options/metadata.xml | 63 ------------------------------ dev-haskell/options/options-1.2.1.1.ebuild | 30 -------------- 3 files changed, 96 deletions(-) delete mode 100644 dev-haskell/options/Manifest delete mode 100644 dev-haskell/options/metadata.xml delete mode 100644 dev-haskell/options/options-1.2.1.1.ebuild (limited to 'dev-haskell/options') diff --git a/dev-haskell/options/Manifest b/dev-haskell/options/Manifest deleted file mode 100644 index 01a61da8ec8a..000000000000 --- a/dev-haskell/options/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST options-1.2.1.1.tar.gz 25327 BLAKE2B 66611694e5beb558e185cd9a89e9368ebac035118360a4c1cb9bcba5ad2a0be74c32848e3983aec999b4cee6e3138c527fe31c869b52c84719ee89afe3aad232 SHA512 615a3767b74ca0ba2eae993f6e475963df2a0933f1e6c9bbfe35144c4dc6018af276144b2ec1b608b695dc7fca904784ebc63cd58a432f966588846cb36f94ea -EBUILD options-1.2.1.1.ebuild 860 BLAKE2B 85adfff07995b3f2b576ede295e35be3b17ca5c88be9348bbda24b6a9e39a2ebcbad692124540dccd3c53875f0ee474aa19982fffa2e0e5b51252eeca757cca8 SHA512 10cdbf905a60b8e8226cb2703ea5fda1042fb05d887a11bd2c4e4edccb9b2d84f674ee205c35d4da270a914f25178c7c3b8ddf13c10293bd313f5835ac49d4d3 -MISC metadata.xml 1803 BLAKE2B 8cb824136f208f42f22c79344cdceeff042be92bb2fda3ebd0ff18931b028980459bcdfac015b4c5bdd4481d2b4fd2e5395eaf6eee2bb3352649354c238cf59a SHA512 0ee4d11702f1f43fb4fbb5416b96fbcf5d56ce3280deaa0474acce57a00f172133b19a8ce204c76a1b89320e708b9e3eb2cefb0ed1306d45d131073a382cef27 diff --git a/dev-haskell/options/metadata.xml b/dev-haskell/options/metadata.xml deleted file mode 100644 index 4d7ecf23aaee..000000000000 --- a/dev-haskell/options/metadata.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - haskell@gentoo.org - Gentoo Haskell - - - The @options@ package lets library and application developers easily work - with command-line options. - - The following example is a full program that can accept two options, - @--message@ and @--quiet@: - - @ - import Control.Applicative - import Options - - data MainOptions = MainOptions - &#x20; &#x7b; optMessage :: String - &#x20; , optQuiet :: Bool - &#x20; &#x7d; - - instance 'Options' MainOptions where - &#x20; defineOptions = pure MainOptions - &#x20; \<*\> simpleOption \"message\" \"Hello world!\" - &#x20; \"A message to show the user.\" - &#x20; \<*\> simpleOption \"quiet\" False - &#x20; \"Whether to be quiet.\" - - main :: IO () - main = runCommand $ \\opts args -> do - &#x20; if optQuiet opts - &#x20; then return () - &#x20; else putStrLn (optMessage opts) - @ - - >$ ./hello - >Hello world! - >$ ./hello --message='ciao mondo' - >ciao mondo - >$ ./hello --quiet - >$ - - In addition, this library will automatically create documentation options - such as @--help@ and @--help-all@: - - >$ ./hello --help - >Help Options: - > -h, --help - > Show option summary. - > --help-all - > Show all help options. - > - >Application Options: - > --message :: text - > A message to show the user. - > default: "Hello world!" - > --quiet :: bool - > Whether to be quiet. - > default: false - - diff --git a/dev-haskell/options/options-1.2.1.1.ebuild b/dev-haskell/options/options-1.2.1.1.ebuild deleted file mode 100644 index 4757f77492b0..000000000000 --- a/dev-haskell/options/options-1.2.1.1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -# ebuild generated by hackport 0.4.4.9999 - -CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" -inherit haskell-cabal - -DESCRIPTION="A powerful and easy-to-use command-line option parser" -HOMEPAGE="https://john-millikin.com/software/haskell-options/" -SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/${PV}" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86" -IUSE="" - -RESTRICT=test # circular depends - -RDEPEND=">=dev-haskell/monads-tf-0.1:=[profile?] - >=dev-haskell/transformers-0.2:=[profile?] - >=dev-lang/ghc-7.4.1:= -" -DEPEND="${RDEPEND} - >=dev-haskell/cabal-1.8 - test? ( >=dev-haskell/chell-0.4 =dev-haskell/chell-quickcheck-0.2