summaryrefslogtreecommitdiff
path: root/dev-ml/ocaml-make
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
commit21435953e16cda318a82334ddbadb3b5c36d9ea7 (patch)
treee1810a4b135afce04b34862ef0fab2bfaeb8aeca /dev-ml/ocaml-make
parent7bc9c63c9da678a7e6fceb095d56c634afd22c56 (diff)
gentoo resync : 15.01.2020
Diffstat (limited to 'dev-ml/ocaml-make')
-rw-r--r--dev-ml/ocaml-make/Manifest3
-rw-r--r--dev-ml/ocaml-make/metadata.xml8
-rw-r--r--dev-ml/ocaml-make/ocaml-make-6.39.0.ebuild31
3 files changed, 0 insertions, 42 deletions
diff --git a/dev-ml/ocaml-make/Manifest b/dev-ml/ocaml-make/Manifest
deleted file mode 100644
index 23a4fd6673bc..000000000000
--- a/dev-ml/ocaml-make/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST ocaml-makefile-6.39.0.tbz 42477 BLAKE2B 35cffde17f8554f09da24aa1dbc0036b75fcf97516d87d727359899e48c2ccd512d4ae8fcac5319ff30c26e2c9ef813419926a8be103b9de4a9ad6418d1f253e SHA512 54a52c243ce23eba286502aa28ccdbb412aba7cf3ed90e3079ab1b187e61edc8a3197536d5c054b03a871eadbdd0e3b93c47904cb0594ccc2c4ce66ed31daa21
-EBUILD ocaml-make-6.39.0.ebuild 848 BLAKE2B fb26e664cd58b8cfbaecab2cb0146a5315e9f823fd175a6237f9a502b587abbac076916d925597e07f59020fe8dec00945194810dc4e40e1a05916fc49be214f SHA512 d18f31321f9f1f7c57535f362cd350b74ef052441bb518b72cea8dd6ac66526194cbe35db7d41afe217442ff1dcbe8d4b0e18a4cd121e569e0064250502e1f6b
-MISC metadata.xml 258 BLAKE2B ec4f255206047dd3a88cd717acb67f44218adf6ed0425d7ae57d1debfecea4cc586d3f8a59ba062f13c4fd4be865bf32753e6912ff8a5f485a15fbb070644a41 SHA512 bfb41358f236815ab23651f3de16ab635332b89ed54c883cfda6db09ea70961a49d8807e077904f90ae879a9aad5defcca411dac401fcce7dbfb59a2a9c3b5c5
diff --git a/dev-ml/ocaml-make/metadata.xml b/dev-ml/ocaml-make/metadata.xml
deleted file mode 100644
index d0651435f4c8..000000000000
--- a/dev-ml/ocaml-make/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-needed -->
- <upstream>
- <remote-id type="github">mmottl/ocaml-makefile</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-ml/ocaml-make/ocaml-make-6.39.0.ebuild b/dev-ml/ocaml-make/ocaml-make-6.39.0.ebuild
deleted file mode 100644
index e220e306ac95..000000000000
--- a/dev-ml/ocaml-make/ocaml-make-6.39.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-DESCRIPTION="Generic O'Caml Makefile for GNU Make"
-HOMEPAGE="http://mmottl.github.io/ocaml-makefile/ https://github.com/mmottl/ocaml-makefile"
-LICENSE="LGPL-2.1"
-
-DEPEND=""
-RDEPEND=">=dev-lang/ocaml-3.06-r1
- >=dev-ml/findlib-0.8"
-SRC_URI="https://github.com/mmottl/ocaml-makefile/releases/download/${PV}/ocaml-makefile-${PV}.tbz"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="examples"
-S="${WORKDIR}/${PN}file-${PV}"
-
-src_install () {
- # Just put the OCamlMakefile into /usr/include
- # where GNU Make will automatically pick it up.
- insinto /usr/include
- doins OCamlMakefile
- # install documentation
- dodoc README.md CHANGES.md
-
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r calc camlp4 gtk idl threads
- fi
-}