-
Notifications
You must be signed in to change notification settings - Fork 132
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 #1427 from garberg/repackage_whoisd
Modernize packaging of whoisd
- Loading branch information
Showing
8 changed files
with
61 additions
and
35 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,12 +2,15 @@ Source: nipap-whoisd | |
Maintainer: Kristian Larsson <[email protected]> | ||
Section: python | ||
Priority: optional | ||
Build-Depends: python3 (>= 3.6), debhelper (>= 10), dh-python | ||
Standards-Version: 4.4.0 | ||
Build-Depends: debhelper-compat (= 13), | ||
dh-python, | ||
python3-all, | ||
python3-setuptools | ||
Standards-Version: 4.6.1 | ||
|
||
Package: nipap-whoisd | ||
Architecture: all | ||
Depends: ${misc:Depends}, python3 (>= 3.6), python3-pynipap | ||
Depends: ${misc:Depends}, ${python3:Depends} | ||
Description: Neat IP Address Planner | ||
The NIPAP whois daemon provides a whois-style interface for querying data in | ||
the NIPAP backend. It receives whois queries, translates these into search | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
whoisd.conf.dist etc/nipap |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (quilt) |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[project] | ||
name = "nipap-whoisd" | ||
dynamic = ["version", "description"] | ||
readme = "README.rst" | ||
license = {text = "MIT"} | ||
classifiers = [ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'Intended Audience :: Telecommunications Industry', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Operating System :: POSIX :: Linux', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Internet' | ||
] | ||
keywords = ["nipap"] | ||
dependencies = [ | ||
"pynipap" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "http://SpriteLink.github.io/NIPAP" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "nipap_whoisd.__version__"} | ||
|
||
[build-system] | ||
requires = [ | ||
"setuptools", | ||
# Need to be pinned to 0.20.1 in Ubuntu 24.04 as using the latest 0.21.2 | ||
# gives a diff during .deb package build. Unfortunately the files are | ||
# generated twice - first once in a virtualenv (using the version specified | ||
# here) and then once without a virtualenv using the one from the system. | ||
# There two runs produce different outputs (wich they shouldn't) causing a | ||
# diff and the package utils to b0rk out. | ||
"docutils==0.20.1" | ||
] | ||
build-backend = "setuptools.build_meta" |
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