app-admin/digaz - 9999 (nest)

Search

Install

Install this version:

emerge -a =app-admin/digaz-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =app-admin/digaz-9999

Or alternatively:

emerge --autounmask-write -a =app-admin/digaz-9999

Package Information

Description:
Look up region and other information for any Azure IP address
Homepage:
https://github.com/sampointer/digaz
License:
GPL-3

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

EGIT_REPO_URI="https://github.com/sampointer/${PN}.git"

inherit git-r3 go-module

DESCRIPTION="Look up region and other information for any Azure IP address"
HOMEPAGE="https://github.com/sampointer/digaz"

LICENSE="GPL-3"
SLOT="0"
RESTRICT="test"
PROPERTIES="test_network"

src_unpack() {
	git-r3_src_unpack
	go-module_live_vendor
}

src_compile() {
	ego build
}

src_test() {
	ego test -work ./...
}

src_install() {
	einstalldocs
	dobin digaz
}

Inherited Eclasses