dev-js/*: pelias-openstreetmap dependencies

Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2021-10-01 02:21:46 +02:00
parent 902e0be573
commit 8797af3e0f
960 changed files with 15785 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST point-in-polygon-1.0.1.tgz 1904 BLAKE2B 16f6e464479d24791800620b7b67cdc44158512f7cc56ee8c70fcae3b1ee8ea5d65b6b974693f942af6692c17050e46ea198dc9cad56f98050e3e2946203b31c SHA512 ef16e56a3309b44f7139f0d7919aeaf7c9239e86b398d3df357aaef5708a934ba1b6322635d4d18e47242162a2aed97252871653d5f2cd3c84db2e7f138e6fe4

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<bugs-to>https://github.com/substack/point-in-polygon/issues</bugs-to>
<remote-id type="github">substack/point-in-polygon</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,21 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit node
DESCRIPTION="determine if a point is inside a polygon with a ray intersection counting algorithm"
HOMEPAGE="
https://github.com/substack/point-in-polygon
https://www.npmjs.com/package/point-in-polygon
"
LICENSE="MIT"
KEYWORDS="~amd64"
IUSE="examples"
src_install() {
use examples && dodoc -r example
rm -rf example || die
node_src_install
}