Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/osmctools/
Date: Sat, 24 Oct 2020 23:58:41
Message-Id: 1603583616.57147887aaea5687854624d0ca13793c0f091407.conikost@gentoo
1 commit: 57147887aaea5687854624d0ca13793c0f091407
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 24 23:53:36 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 24 23:53:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57147887
7
8 sci-geosciences/osmctools: new package
9
10 Fast OpenStreetMap data tools:
11 * osmassignpoly
12 * osmchange - updates an .osm file using one or more .osc files
13 * osmconvert - reads and converts OSM data to the selected output file format
14 * osmfilter - filters OSM data
15 * osmgeobase
16 * osmposition
17 * osmrelpoly
18 * osmupdate - cares about updating an .osm, .o5m or .pbf file
19 * pbftoosm - converts .pbf file into .osm XML format
20
21 Package-Manager: Portage-3.0.8, Repoman-3.0.2
22 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
23
24 sci-geosciences/osmctools/Manifest | 1 +
25 sci-geosciences/osmctools/metadata.xml | 20 +++++++++++++++++
26 .../osmctools/osmctools-0.4_p20200520.ebuild | 26 ++++++++++++++++++++++
27 3 files changed, 47 insertions(+)
28
29 diff --git a/sci-geosciences/osmctools/Manifest b/sci-geosciences/osmctools/Manifest
30 new file mode 100644
31 index 00000000000..5d3232efbd6
32 --- /dev/null
33 +++ b/sci-geosciences/osmctools/Manifest
34 @@ -0,0 +1 @@
35 +DIST osmctools-0.4_p20200520.tar.gz 347932 BLAKE2B 33a4bccf15addd42f520c9ee996e1b1eedab7fa1dc4ddc3e4974f8da7b50eb623bd456dedabd694c110bcec494c007aad9d4c6a3ac0404dcc19bf269a2067e33 SHA512 533137524ca788aeda3844112df0e80b996aed7dc79157686c6a882e3e83d49d413201fe8e85534b531d4e4a960296b3f2dd15121464391398c9d07a988adc19
36
37 diff --git a/sci-geosciences/osmctools/metadata.xml b/sci-geosciences/osmctools/metadata.xml
38 new file mode 100644
39 index 00000000000..1562924bb2e
40 --- /dev/null
41 +++ b/sci-geosciences/osmctools/metadata.xml
42 @@ -0,0 +1,20 @@
43 +<?xml version="1.0" encoding="UTF-8"?>
44 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
45 +<pkgmetadata>
46 + <maintainer type="person">
47 + <email>conikost@g.o</email>
48 + <name>Conrad Kostecki</name>
49 + </maintainer>
50 + <longdescription>
51 + Fast OpenStreetMap data tools:
52 + * osmassignpoly
53 + * osmchange - updates an .osm file using one or more .osc files
54 + * osmconvert - reads and converts OSM data to the selected output file format
55 + * osmfilter - filters OSM data
56 + * osmgeobase
57 + * osmposition
58 + * osmrelpoly
59 + * osmupdate - cares about updating an .osm, .o5m or .pbf file
60 + * pbftoosm - converts .pbf file into .osm XML format
61 + </longdescription>
62 +</pkgmetadata>
63
64 diff --git a/sci-geosciences/osmctools/osmctools-0.4_p20200520.ebuild b/sci-geosciences/osmctools/osmctools-0.4_p20200520.ebuild
65 new file mode 100644
66 index 00000000000..fb444b3e342
67 --- /dev/null
68 +++ b/sci-geosciences/osmctools/osmctools-0.4_p20200520.ebuild
69 @@ -0,0 +1,26 @@
70 +# Copyright 1999-2020 Gentoo Authors
71 +# Distributed under the terms of the GNU General Public License v2
72 +
73 +EAPI=7
74 +
75 +inherit autotools
76 +
77 +EGIT_COMMIT="7154bde469f9b4f3f54ef82a8fa41e1592bb5693"
78 +
79 +DESCRIPTION="Fast OpenStreetMap data tools"
80 +HOMEPAGE="https://github.com/ramunasd/osmctools"
81 +SRC_URI="https://github.com/ramunasd/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
82 +S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
83 +
84 +LICENSE="AGPL-3"
85 +SLOT="0"
86 +KEYWORDS="~amd64 ~x86"
87 +
88 +DEPEND="sys-libs/zlib"
89 +RDEPEND="${DEPEND}"
90 +
91 +src_prepare() {
92 + default
93 +
94 + eautoreconf
95 +}