diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..afbb35f --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +subfinder (2.3.8-0kali1) kali-dev; urgency=medium + + * Initial release (see 6496) + + -- Sophie Brun Fri, 24 Jul 2020 11:58:51 +0200 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..d71d34f --- /dev/null +++ b/debian/control @@ -0,0 +1,35 @@ +Source: subfinder +Section: utils +Priority: optional +Maintainer: Kali Developers +Uploaders: Sophie Brun +Build-Depends: debhelper-compat (= 12), + dh-golang, + golang-github-json-iterator-go-dev, + golang-github-lib-pq-dev, + golang-github-m-mizutani-urlscan-go-dev, + golang-github-miekg-dns-dev, + golang-github-pkg-errors-dev, + golang-github-projectdiscovery-gologger-dev, + golang-github-rs-xid-dev, + golang-github-stretchr-testify-dev, + golang-github-tomnomnom-linkheader-dev, + golang-go, + golang-gopkg-yaml.v3-dev +Standards-Version: 4.5.0 +Homepage: https://github.com/projectdiscovery/subfinder +Vcs-Browser: https://gitlab.com/kalilinux/packages/subfinder +Vcs-Git: https://gitlab.com/kalilinux/packages/subfinder.git +Rules-Requires-Root: no +XS-Go-Import-Path: github.com/projectdiscovery/subfinder +Testsuite: autopkgtest-pkg-go + +Package: subfinder +Architecture: any +Built-Using: ${misc:Built-Using} +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: subdomain discovery tool + This package contains a subdomain discovery tool that discovers valid + subdomains for websites by using passive online sources. It has a simple + modular architecture and is optimized for speed. subfinder is built for doing + one thing only - passive subdomain enumeration, and it does that very well. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..654696a --- /dev/null +++ b/debian/copyright @@ -0,0 +1,31 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: subfinder +Source: https://github.com/projectdiscovery/subfinder + +Files: * +Copyright: Exposed Atoms Pvt Ltd +License: MIT + +Files: debian/* +Copyright: 2020 Sophie Brun +License: MIT + +License: MIT + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to permit + persons to whom the Software is furnished to do so, subject to the + following conditions: + . + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..9ec0724 --- /dev/null +++ b/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f +# output every command that modifies files on the build system. +#export DH_VERBOSE = 1 + +export DH_GOPKG := github.com/projectdiscovery/subfinder +#export GOCACHE=$(CURDIR)/vendor +#export GOPATH=$(CURDIR)/vendor + + +%: + dh $@ --buildsystem=golang --sourcedir=cmd/subfinder + +override_dh_auto_install: + dh_auto_install -- --no-source diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..4da647c --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +version=4 +opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%subfinder-$1.tar.gz%" \ + https://github.com/projectdiscovery/subfinder/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate