Diff osm2pgsql-1.4.0-r100 with a osm2pgsql-99999999

/usr/portage/sci-geosciences/osm2pgsql/osm2pgsql-99999999.ebuild 2023-10-09 14:52:35.056368490 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
5 5

  
6 6
LUA_COMPAT=( lua5-{1..4} luajit )
7 7

  
8
inherit cmake lua-single
8
inherit cmake git-r3 lua-single
9

  
10
EGIT_REPO_URI="https://github.com/openstreetmap/${PN}.git"
9 11

  
10 12
DESCRIPTION="Converts OSM planet.osm data to a PostgreSQL/PostGIS database"
11 13
HOMEPAGE="https://osm2pgsql.org/"
12
SRC_URI="https://github.com/openstreetmap/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
14
SRC_URI=""
13 15

  
14 16
LICENSE="GPL-2"
15 17
SLOT="0"
16
KEYWORDS="amd64 ~x86"
18
KEYWORDS=""
17 19
IUSE="+lua"
18 20
REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"
19 21

  
......
36 38
RESTRICT="test"
37 39

  
38 40
PATCHES=(
39
	"${FILESDIR}"/${PN}-1.4.0-cmake_lua_version.patch
41
	"${FILESDIR}"/${PN}-1.7.0-cmake_lua_version.patch
40 42
)
41 43

  
42 44
src_configure() {
Thank you!