-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from maxmind/greg/fix-versioning
Fix module import path
- Loading branch information
Showing
10 changed files
with
41 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,28 +24,28 @@ builds: | |
- '-s -w -X main.version={{.Version}} -X main.defaultConfigFile=/etc/GeoIP.conf -X main.defaultDatabaseDirectory=/usr/share/GeoIP' | ||
checksum: | ||
name_template: 'checksums-dpkg-rpm.txt' | ||
nfpm: | ||
vendor: 'MaxMind, Inc.' | ||
homepage: https://www.maxmind.com/ | ||
maintainer: 'MaxMind, Inc. <[email protected]>' | ||
description: Program to perform automatic updates of GeoIP2 and GeoIP Legacy binary databases. | ||
license: Apache 2.0 or MIT | ||
formats: | ||
- deb | ||
- rpm | ||
bindir: /usr/bin | ||
empty_folders: | ||
- /usr/share/GeoIP | ||
files: | ||
'CHANGELOG.md': '/usr/share/doc/geoipupdate/CHANGELOG.md' | ||
'LICENSE-APACHE': '/usr/share/doc/geoipupdate/LICENSE-APACHE' | ||
'LICENSE-MIT': '/usr/share/doc/geoipupdate/LICENSE-MIT' | ||
'README.md': '/usr/share/doc/geoipupdate/README.md' | ||
'GeoIP.conf': '/usr/share/doc/geoipupdate/GeoIP.conf' | ||
'GeoIP.conf.md': '/usr/share/doc/geoipupdate/GeoIP.conf.md' | ||
'geoipupdate.md': '/usr/share/doc/geoipupdate/geoipupdate.md' | ||
config_files: | ||
'GeoIP.conf': '/etc/GeoIP.conf' | ||
nfpms: | ||
- vendor: 'MaxMind, Inc.' | ||
homepage: https://www.maxmind.com/ | ||
maintainer: 'MaxMind, Inc. <[email protected]>' | ||
description: Program to perform automatic updates of GeoIP2 and GeoIP Legacy binary databases. | ||
license: Apache 2.0 or MIT | ||
formats: | ||
- deb | ||
- rpm | ||
bindir: /usr/bin | ||
empty_folders: | ||
- /usr/share/GeoIP | ||
files: | ||
'CHANGELOG.md': '/usr/share/doc/geoipupdate/CHANGELOG.md' | ||
'LICENSE-APACHE': '/usr/share/doc/geoipupdate/LICENSE-APACHE' | ||
'LICENSE-MIT': '/usr/share/doc/geoipupdate/LICENSE-MIT' | ||
'README.md': '/usr/share/doc/geoipupdate/README.md' | ||
'GeoIP.conf': '/usr/share/doc/geoipupdate/GeoIP.conf' | ||
'GeoIP.conf.md': '/usr/share/doc/geoipupdate/GeoIP.conf.md' | ||
'geoipupdate.md': '/usr/share/doc/geoipupdate/geoipupdate.md' | ||
config_files: | ||
'GeoIP.conf': '/etc/GeoIP.conf' | ||
release: | ||
# We disable the release as there is no way to disable the creation of | ||
# the archive version and we don't want to upload those. We also can | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,7 @@ Report bugs to [[email protected]](mailto:[email protected]). | |
|
||
Written by William Storey. | ||
|
||
This software is Copyright (c) 2018-2019 by MaxMind, Inc. | ||
This software is Copyright (c) 2018-2020 by MaxMind, Inc. | ||
|
||
This is free software, licensed under the Apache License, Version 2.0 or | ||
the MIT License, at your option. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module github.com/maxmind/geoipupdate | ||
module github.com/maxmind/geoipupdate/v4 | ||
|
||
go 1.13 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters