summaryrefslogtreecommitdiff
path: root/dev-ml/ppx_import
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/ppx_import
parent7bc9c63c9da678a7e6fceb095d56c634afd22c56 (diff)
gentoo resync : 15.01.2020
Diffstat (limited to 'dev-ml/ppx_import')
-rw-r--r--dev-ml/ppx_import/Manifest3
-rw-r--r--dev-ml/ppx_import/metadata.xml8
-rw-r--r--dev-ml/ppx_import/ppx_import-1.2.ebuild40
3 files changed, 0 insertions, 51 deletions
diff --git a/dev-ml/ppx_import/Manifest b/dev-ml/ppx_import/Manifest
deleted file mode 100644
index 6b32efd20b42..000000000000
--- a/dev-ml/ppx_import/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST ppx_import-1.2.tar.gz 13244 BLAKE2B 538fd11e151d740c601ca88ff682bf4ea84ddaea3fbbc5b54d43310e59baf00ae47ef397763861da8ff1b2af017bb318ec1cd48f8708b9dc2a2c68bf812e1aea SHA512 384a8f955573c66962383f0e3609e4764cb0056e7d5b7e5811fd9fd17e17ac58baea330131b8eb688cd4202d6e6bd5829fba024524f027201244ff10c86e0f01
-EBUILD ppx_import-1.2.ebuild 901 BLAKE2B 68644242d6f89aa6bf0a950e5512ac04eee85ae9df2eeb7094d6620f098c7c6ffddd9e19fea9c7916c30c1ee0f94de5603714f09e308c53b39179207286037e2 SHA512 216d612dd49776049b99b4c005ee4c44293084790edca26411ee3144ef3c41aef47bfc3812da334e544347c73a3a967680e3bb61394da0ee06f15be62d3f5710
-MISC metadata.xml 253 BLAKE2B 4f3d93fc0048b4fa776ac68ac8139f40fd6b5a41771337428698bc95a309fe33eb1ca5783ae7dcf10f42a0a0e7234f16a6b75679751c50a4810ed7d326f15985 SHA512 9dcf55163cd3a5e316e1781705eea4157793480cb5ffbe547ac63dbfb98be8f997f6967cc22fb4437fbbcae37368f348e8ef5cb9af0a634a16c667c3d336d020
diff --git a/dev-ml/ppx_import/metadata.xml b/dev-ml/ppx_import/metadata.xml
deleted file mode 100644
index 3515930a24e8..000000000000
--- a/dev-ml/ppx_import/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">whitequark/ppx_import</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-ml/ppx_import/ppx_import-1.2.ebuild b/dev-ml/ppx_import/ppx_import-1.2.ebuild
deleted file mode 100644
index 56b86b5efe91..000000000000
--- a/dev-ml/ppx_import/ppx_import-1.2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit opam
-
-DESCRIPTION="A syntax extension for importing declarations from interface files"
-HOMEPAGE="https://github.com/whitequark/ppx_import"
-SRC_URI="https://github.com/whitequark/ppx_import/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="+ocamlopt test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
- dev-lang/ocaml:=[ocamlopt?]
- dev-ml/ppx_tools:=
- dev-ml/cppo:=
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
- test? ( dev-ml/ounit dev-ml/ppx_deriving )
- dev-ml/ocamlbuild
- dev-ml/findlib
-"
-
-src_compile() {
- cp pkg/META.in pkg/META
- ocaml pkg/build.ml \
- native=$(usex ocamlopt true false) \
- native-dynlink=$(usex ocamlopt true false) \
- || die
-}
-
-src_test() {
- ocamlbuild -classic-display -use-ocamlfind src_test/test_ppx_import.byte -- || die
-}