summaryrefslogtreecommitdiff
path: root/dev-haskell/mmap
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-haskell/mmap
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-haskell/mmap')
-rw-r--r--dev-haskell/mmap/Manifest1
-rw-r--r--dev-haskell/mmap/metadata.xml16
-rw-r--r--dev-haskell/mmap/mmap-0.5.9.ebuild43
3 files changed, 0 insertions, 60 deletions
diff --git a/dev-haskell/mmap/Manifest b/dev-haskell/mmap/Manifest
deleted file mode 100644
index fffbf585afb1..000000000000
--- a/dev-haskell/mmap/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mmap-0.5.9.tar.gz 11731 BLAKE2B 1a2133f487f9b214c8a4be3aa91a38ee849b40649b77eec8e656fbd99d32c31761d1daeb474a56e9e0611db631a22828ab20171c6522f324e278ace0de0dac2e SHA512 3b9ac1150050ac9d8e7870610923c8303b5fc74a4fdd796d7b6b411e2ba836111ae8520e16ad345aaf93b4dbcd27abd4c359a89b27d854db8dbd252b90a5298d
diff --git a/dev-haskell/mmap/metadata.xml b/dev-haskell/mmap/metadata.xml
deleted file mode 100644
index 9589e8ac9a61..000000000000
--- a/dev-haskell/mmap/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>haskell@gentoo.org</email>
- <name>Gentoo Haskell</name>
- </maintainer>
- <longdescription>
- This library provides a wrapper to mmap(2) or MapViewOfFile,
- allowing files or devices to be lazily loaded into memory as
- strict or lazy ByteStrings, ForeignPtrs or plain Ptrs, using
- the virtual memory subsystem to do on-demand loading.
- Modifications are also supported.
- </longdescription>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/dev-haskell/mmap/mmap-0.5.9.ebuild b/dev-haskell/mmap/mmap-0.5.9.ebuild
deleted file mode 100644
index f9ad6cb37e6e..000000000000
--- a/dev-haskell/mmap/mmap-0.5.9.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# ebuild generated by hackport 0.3.3.9999
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour"
-inherit haskell-cabal
-
-DESCRIPTION="Memory mapped files for POSIX and Windows"
-HOMEPAGE="https://hackage.haskell.org/package/mmap"
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-# IUSE="test"
-IUSE=""
-
-RESTRICT="test" # the test suite compile fails: Not in scope: data constructor `Permissions'
-
-RDEPEND=">=dev-lang/ghc-6.10.4:="
-DEPEND="${RDEPEND}
- >=dev-haskell/cabal-1.6"
-# test? ( dev-haskell/hunit[profile?] )" # pcheck dislikes useless depends
-
-src_configure() {
- cabal_src_configure # $(cabal_flag test mmaptest)
-}
-
-src_test() {
- # breaking the abstraction a bit, we're not supposed to know about ./setup
- # and how it works...
- ./dist/build/mmaptest/mmaptest || die "tests failed"
-}
-
-src_install() {
- cabal_src_install
-
- rm "${D}/usr/bin/mmaptest"
- rmdir "${D}/usr/bin" 2> /dev/null # only if empty
-}