summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO7
-rw-r--r--.gitignore2
-rw-r--r--PKGBUILD11
3 files changed, 10 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 50f752aeae56..4229912b57df 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = zmap-git
pkgdesc = Fast network scanner designed for Internet-wide network surveys
- pkgver = 2.1.1.1031.369bff3
+ pkgver = 3.0.0.1215.118b910
pkgrel = 1
url = https://zmap.io/
arch = i686
@@ -12,16 +12,13 @@ pkgbase = zmap-git
makedepends = gengetopt
makedepends = pkg-config
depends = gmp
- depends = hiredis
depends = json-c
depends = libpcap
- depends = libmongoc
provides = zmap
conflicts = zmap
- backup = etc/zmap/blacklist.conf
+ backup = etc/zmap/blocklist.conf
backup = etc/zmap/zmap.conf
source = zmap-git::git+https://github.com/zmap/zmap.git
sha512sums = SKIP
pkgname = zmap-git
-
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..3a31b69843b9
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+zmap-git/
+zmap-git-*.pkg.tar.zst \ No newline at end of file
diff --git a/PKGBUILD b/PKGBUILD
index 733d1f06a725..640c7d1eb4c4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,19 +1,20 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Maintainer: Sven Hebrok <xoimex[at]gmail[dot]org>
+# Contributor: Levente Polyak <anthraxx[at]archlinux[dot]org>
# Contributor: Jens Adam <jra@byte.cx>
# Contributor: Arch3y <arch3y[at]archstrike[dot]org>
pkgname=zmap-git
-pkgver=2.1.1.1031.369bff3
+pkgver=3.0.0.1215.118b910-1
pkgrel=1
pkgdesc='Fast network scanner designed for Internet-wide network surveys'
url='https://zmap.io/'
arch=('i686' 'x86_64')
license=('Apache')
-depends=('gmp' 'hiredis' 'json-c' 'libpcap' 'libmongoc')
+depends=('gmp' 'json-c' 'libpcap')
makedepends=('git' 'byacc' 'cmake' 'gengetopt' 'pkg-config')
provides=('zmap')
conflicts=('zmap')
-backup=('etc/zmap/blacklist.conf' 'etc/zmap/zmap.conf')
+backup=('etc/zmap/blocklist.conf' 'etc/zmap/zmap.conf')
source=(${pkgname}::git+https://github.com/zmap/zmap.git)
sha512sums=('SKIP')
@@ -33,7 +34,7 @@ build() {
package() {
cd ${pkgname}
- install -Dm 755 src/{zmap,ztee,zblacklist} -t "${pkgdir}/usr/bin"
+ install -Dm 755 src/{zmap,ztee,zblocklist} -t "${pkgdir}/usr/bin"
install -Dm 644 src/*.1 -t "${pkgdir}/usr/share/man/man1"
install -Dm 644 conf/* -t "${pkgdir}/etc/zmap"
install -Dm 644 AUTHORS CHANGELOG.md INSTALL.md README.md \