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: Sun, 25 Oct 2020 12:22:46
Message-Id: 1603628431.66eea6378b6ce4ca304f5a25174e9b002279e19c.conikost@gentoo
1 commit: 66eea6378b6ce4ca304f5a25174e9b002279e19c
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 25 12:20:31 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 25 12:20:31 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66eea637
7
8 sci-geosciences/osmctools: bump to version 0.9
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.2
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 sci-geosciences/osmctools/Manifest | 1 +
14 sci-geosciences/osmctools/metadata.xml | 9 +++------
15 sci-geosciences/osmctools/osmctools-0.9.ebuild | 23 +++++++++++++++++++++++
16 3 files changed, 27 insertions(+), 6 deletions(-)
17
18 diff --git a/sci-geosciences/osmctools/Manifest b/sci-geosciences/osmctools/Manifest
19 index 5d3232efbd6..17108f055c9 100644
20 --- a/sci-geosciences/osmctools/Manifest
21 +++ b/sci-geosciences/osmctools/Manifest
22 @@ -1 +1,2 @@
23 DIST osmctools-0.4_p20200520.tar.gz 347932 BLAKE2B 33a4bccf15addd42f520c9ee996e1b1eedab7fa1dc4ddc3e4974f8da7b50eb623bd456dedabd694c110bcec494c007aad9d4c6a3ac0404dcc19bf269a2067e33 SHA512 533137524ca788aeda3844112df0e80b996aed7dc79157686c6a882e3e83d49d413201fe8e85534b531d4e4a960296b3f2dd15121464391398c9d07a988adc19
24 +DIST osmctools-0.9.tar.gz 181447 BLAKE2B 98b567219f712f282c37db6488863a3ae28c537cfdc5198f7457121a1e95a5edfb3fcc72f297a792485510a5fbb4d4d64be927b647d899f2c09648fbeb4419dc SHA512 6e51646e9291b53ce109f579c555c1eb9e6853452c81caebd530aa1be56aa3d313331a3544375f187c9d26888e4a330774f2acd6bdbb3baadf1a2db330430940
25
26 diff --git a/sci-geosciences/osmctools/metadata.xml b/sci-geosciences/osmctools/metadata.xml
27 index 1562924bb2e..9016058737b 100644
28 --- a/sci-geosciences/osmctools/metadata.xml
29 +++ b/sci-geosciences/osmctools/metadata.xml
30 @@ -7,14 +7,11 @@
31 </maintainer>
32 <longdescription>
33 Fast OpenStreetMap data tools:
34 - * osmassignpoly
35 - * osmchange - updates an .osm file using one or more .osc files
36 * osmconvert - reads and converts OSM data to the selected output file format
37 * osmfilter - filters OSM data
38 - * osmgeobase
39 - * osmposition
40 - * osmrelpoly
41 * osmupdate - cares about updating an .osm, .o5m or .pbf file
42 - * pbftoosm - converts .pbf file into .osm XML format
43 </longdescription>
44 + <upstream>
45 + <remote-id type="gitlab">osm-c-tools/osmctools</remote-id>
46 + </upstream>
47 </pkgmetadata>
48
49 diff --git a/sci-geosciences/osmctools/osmctools-0.9.ebuild b/sci-geosciences/osmctools/osmctools-0.9.ebuild
50 new file mode 100644
51 index 00000000000..85657d0e14d
52 --- /dev/null
53 +++ b/sci-geosciences/osmctools/osmctools-0.9.ebuild
54 @@ -0,0 +1,23 @@
55 +# Copyright 1999-2020 Gentoo Authors
56 +# Distributed under the terms of the GNU General Public License v2
57 +
58 +EAPI=7
59 +
60 +inherit autotools
61 +
62 +DESCRIPTION="A few really fast tools to convert, filter and update OSM data files"
63 +HOMEPAGE="https://gitlab.com/osm-c-tools"
64 +SRC_URI="https://gitlab.com/osm-c-tools/${PN}/-/archive/${PV}/${P}.tar.gz"
65 +
66 +LICENSE="AGPL-3"
67 +SLOT="0"
68 +KEYWORDS="~amd64 ~x86"
69 +
70 +DEPEND="sys-libs/zlib"
71 +RDEPEND="${DEPEND}"
72 +
73 +src_prepare() {
74 + default
75 +
76 + eautoreconf
77 +}