[arch-commits] Commit in arp-scan/repos/community-x86_64 (4 files)

2019-11-11 Thread Massimiliano Torromeo via arch-commits
Date: Monday, November 11, 2019 @ 11:44:50
  Author: mtorromeo
Revision: 526663

archrelease: copy trunk to community-x86_64

Added:
  arp-scan/repos/community-x86_64/PKGBUILD
(from rev 526662, arp-scan/trunk/PKGBUILD)
  arp-scan/repos/community-x86_64/socket-error.patch
(from rev 526662, arp-scan/trunk/socket-error.patch)
Deleted:
  arp-scan/repos/community-x86_64/PKGBUILD
  arp-scan/repos/community-x86_64/socket-error.patch

+
 PKGBUILD   |   50 +-
 socket-error.patch |   30 +++---
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-11 11:44:44 UTC (rev 526662)
+++ PKGBUILD2019-11-11 11:44:50 UTC (rev 526663)
@@ -1,25 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: xav 
-
-pkgname=arp-scan
-pkgver=1.9.6
-pkgrel=1
-pkgdesc="A tool that uses ARP to discover and fingerprint IP hosts on the 
local network"
-arch=('x86_64')
-url="https://github.com/royhills/arp-scan;
-license=('GPL')
-depends=('libpcap' 'perl-libwww')
-source=(https://github.com/royhills/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('971b45c3369816467994797fbcd0076eb8f0ffb9c42764ea6dba25ab3fd490da')
-
-build() {
-   cd "$srcdir"/$pkgname-$pkgver
-   autoreconf --install
-   ./configure --prefix=/usr --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd "$srcdir"/$pkgname-$pkgver
-   make DESTDIR="${pkgdir}" install
-}

Copied: arp-scan/repos/community-x86_64/PKGBUILD (from rev 526662, 
arp-scan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-11-11 11:44:50 UTC (rev 526663)
@@ -0,0 +1,25 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: xav 
+
+pkgname=arp-scan
+pkgver=1.9.7
+pkgrel=1
+pkgdesc="A tool that uses ARP to discover and fingerprint IP hosts on the 
local network"
+arch=('x86_64')
+url="https://github.com/royhills/arp-scan;
+license=('GPL')
+depends=('libpcap' 'perl-libwww')
+source=(https://github.com/royhills/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('e03c36e4933c655bd0e4a841272554a347cd0136faf42c4a6564059e0761c039')
+
+build() {
+   cd "$srcdir"/$pkgname-$pkgver
+   autoreconf --install
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "$srcdir"/$pkgname-$pkgver
+   make DESTDIR="${pkgdir}" install
+}

Deleted: socket-error.patch
===
--- socket-error.patch  2019-11-11 11:44:44 UTC (rev 526662)
+++ socket-error.patch  2019-11-11 11:44:50 UTC (rev 526663)
@@ -1,15 +0,0 @@
-diff --git a/link-packet-socket.c b/link-packet-socket.c
-index d25463b..de1eefc 100644
 a/link-packet-socket.c
-+++ b/link-packet-socket.c
-@@ -68,8 +68,8 @@ link_open(const char *device) {
-handle = Malloc(sizeof(*handle));
-memset(handle, '\0', sizeof(*handle));
-if ((handle->fd = socket(PF_PACKET, SOCK_RAW, 0)) < 0) {
--  free(handle);
--  return NULL;
-+  warn_msg("ERROR: Cannot open raw packet socket");
-+  err_sys("socket");
-}
-strlcpy(handle->ifr.ifr_name, device, sizeof(handle->ifr.ifr_name));
-if ((ioctl(handle->fd, SIOCGIFINDEX, &(handle->ifr))) != 0)

Copied: arp-scan/repos/community-x86_64/socket-error.patch (from rev 526662, 
arp-scan/trunk/socket-error.patch)
===
--- socket-error.patch  (rev 0)
+++ socket-error.patch  2019-11-11 11:44:50 UTC (rev 526663)
@@ -0,0 +1,15 @@
+diff --git a/link-packet-socket.c b/link-packet-socket.c
+index d25463b..de1eefc 100644
+--- a/link-packet-socket.c
 b/link-packet-socket.c
+@@ -68,8 +68,8 @@ link_open(const char *device) {
+handle = Malloc(sizeof(*handle));
+memset(handle, '\0', sizeof(*handle));
+if ((handle->fd = socket(PF_PACKET, SOCK_RAW, 0)) < 0) {
+-  free(handle);
+-  return NULL;
++  warn_msg("ERROR: Cannot open raw packet socket");
++  err_sys("socket");
+}
+strlcpy(handle->ifr.ifr_name, device, sizeof(handle->ifr.ifr_name));
+if ((ioctl(handle->fd, SIOCGIFINDEX, &(handle->ifr))) != 0)


[arch-commits] Commit in arp-scan/repos/community-x86_64 (4 files)

2019-10-25 Thread Massimiliano Torromeo via arch-commits
Date: Friday, October 25, 2019 @ 17:41:40
  Author: mtorromeo
Revision: 519564

archrelease: copy trunk to community-x86_64

Added:
  arp-scan/repos/community-x86_64/PKGBUILD
(from rev 519563, arp-scan/trunk/PKGBUILD)
  arp-scan/repos/community-x86_64/socket-error.patch
(from rev 519563, arp-scan/trunk/socket-error.patch)
Deleted:
  arp-scan/repos/community-x86_64/PKGBUILD
  arp-scan/repos/community-x86_64/socket-error.patch

+
 PKGBUILD   |   57 ++-
 socket-error.patch |   30 +-
 2 files changed, 40 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-25 17:41:21 UTC (rev 519563)
+++ PKGBUILD2019-10-25 17:41:40 UTC (rev 519564)
@@ -1,32 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: xav 
-
-pkgname=arp-scan
-pkgver=1.9.5
-pkgrel=2
-pkgdesc="A tool that uses ARP to discover and fingerprint IP hosts on the 
local network"
-arch=('x86_64')
-url="https://github.com/royhills/arp-scan;
-license=('GPL')
-depends=('libpcap' 'perl-libwww')
-source=(https://github.com/royhills/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz
-
libpcap-timeout.patch::https://github.com/royhills/arp-scan/commit/8513a181c10be83afdc46f49e9abe97212189d4a.patch)
-sha256sums=('aa9498af84158a315b7e0ea6c2cddfa746660ca3987cbe7e32c0c90f5382d9d2'
-'0ad040df57810bca6f8c016e7b83fdfe05f5aae683574ad7d73929746701c911')
-
-prepare() {
-   cd "$srcdir"/$pkgname-$pkgver
-   patch -p1 -i "$srcdir"/libpcap-timeout.patch
-}
-
-build() {
-   cd "$srcdir"/$pkgname-$pkgver
-   autoreconf --install
-   ./configure --prefix=/usr --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd "$srcdir"/$pkgname-$pkgver
-   make DESTDIR="${pkgdir}" install
-}

Copied: arp-scan/repos/community-x86_64/PKGBUILD (from rev 519563, 
arp-scan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-25 17:41:40 UTC (rev 519564)
@@ -0,0 +1,25 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: xav 
+
+pkgname=arp-scan
+pkgver=1.9.6
+pkgrel=1
+pkgdesc="A tool that uses ARP to discover and fingerprint IP hosts on the 
local network"
+arch=('x86_64')
+url="https://github.com/royhills/arp-scan;
+license=('GPL')
+depends=('libpcap' 'perl-libwww')
+source=(https://github.com/royhills/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('971b45c3369816467994797fbcd0076eb8f0ffb9c42764ea6dba25ab3fd490da')
+
+build() {
+   cd "$srcdir"/$pkgname-$pkgver
+   autoreconf --install
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "$srcdir"/$pkgname-$pkgver
+   make DESTDIR="${pkgdir}" install
+}

Deleted: socket-error.patch
===
--- socket-error.patch  2019-10-25 17:41:21 UTC (rev 519563)
+++ socket-error.patch  2019-10-25 17:41:40 UTC (rev 519564)
@@ -1,15 +0,0 @@
-diff --git a/link-packet-socket.c b/link-packet-socket.c
-index d25463b..de1eefc 100644
 a/link-packet-socket.c
-+++ b/link-packet-socket.c
-@@ -68,8 +68,8 @@ link_open(const char *device) {
-handle = Malloc(sizeof(*handle));
-memset(handle, '\0', sizeof(*handle));
-if ((handle->fd = socket(PF_PACKET, SOCK_RAW, 0)) < 0) {
--  free(handle);
--  return NULL;
-+  warn_msg("ERROR: Cannot open raw packet socket");
-+  err_sys("socket");
-}
-strlcpy(handle->ifr.ifr_name, device, sizeof(handle->ifr.ifr_name));
-if ((ioctl(handle->fd, SIOCGIFINDEX, &(handle->ifr))) != 0)

Copied: arp-scan/repos/community-x86_64/socket-error.patch (from rev 519563, 
arp-scan/trunk/socket-error.patch)
===
--- socket-error.patch  (rev 0)
+++ socket-error.patch  2019-10-25 17:41:40 UTC (rev 519564)
@@ -0,0 +1,15 @@
+diff --git a/link-packet-socket.c b/link-packet-socket.c
+index d25463b..de1eefc 100644
+--- a/link-packet-socket.c
 b/link-packet-socket.c
+@@ -68,8 +68,8 @@ link_open(const char *device) {
+handle = Malloc(sizeof(*handle));
+memset(handle, '\0', sizeof(*handle));
+if ((handle->fd = socket(PF_PACKET, SOCK_RAW, 0)) < 0) {
+-  free(handle);
+-  return NULL;
++  warn_msg("ERROR: Cannot open raw packet socket");
++  err_sys("socket");
+}
+strlcpy(handle->ifr.ifr_name, device, sizeof(handle->ifr.ifr_name));
+if ((ioctl(handle->fd, SIOCGIFINDEX, &(handle->ifr))) != 0)


[arch-commits] Commit in arp-scan/repos/community-x86_64 (4 files)

2019-10-14 Thread Massimiliano Torromeo via arch-commits
Date: Monday, October 14, 2019 @ 11:33:52
  Author: mtorromeo
Revision: 515577

archrelease: copy trunk to community-x86_64

Added:
  arp-scan/repos/community-x86_64/PKGBUILD
(from rev 515576, arp-scan/trunk/PKGBUILD)
  arp-scan/repos/community-x86_64/socket-error.patch
(from rev 515576, arp-scan/trunk/socket-error.patch)
Deleted:
  arp-scan/repos/community-x86_64/PKGBUILD
  arp-scan/repos/community-x86_64/socket-error.patch

+
 PKGBUILD   |   58 ---
 socket-error.patch |   30 +-
 2 files changed, 47 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-14 11:33:36 UTC (rev 515576)
+++ PKGBUILD2019-10-14 11:33:52 UTC (rev 515577)
@@ -1,26 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: xav 
-
-pkgname=arp-scan
-pkgver=1.9.5
-pkgrel=1
-pkgdesc="A tool that uses ARP to discover and fingerprint IP hosts on the 
local network"
-arch=('x86_64')
-url="https://github.com/royhills/arp-scan;
-license=('GPL')
-depends=('libpcap' 'perl-libwww')
-source=(https://github.com/royhills/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-
-build() {
-   cd "$srcdir"/$pkgname-$pkgver
-   autoreconf --install
-   ./configure --prefix=/usr --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd "$srcdir"/$pkgname-$pkgver
-   make DESTDIR="${pkgdir}" install
-}
-
-sha256sums=('aa9498af84158a315b7e0ea6c2cddfa746660ca3987cbe7e32c0c90f5382d9d2')

Copied: arp-scan/repos/community-x86_64/PKGBUILD (from rev 515576, 
arp-scan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-14 11:33:52 UTC (rev 515577)
@@ -0,0 +1,32 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: xav 
+
+pkgname=arp-scan
+pkgver=1.9.5
+pkgrel=2
+pkgdesc="A tool that uses ARP to discover and fingerprint IP hosts on the 
local network"
+arch=('x86_64')
+url="https://github.com/royhills/arp-scan;
+license=('GPL')
+depends=('libpcap' 'perl-libwww')
+source=(https://github.com/royhills/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz
+
libpcap-timeout.patch::https://github.com/royhills/arp-scan/commit/8513a181c10be83afdc46f49e9abe97212189d4a.patch)
+sha256sums=('aa9498af84158a315b7e0ea6c2cddfa746660ca3987cbe7e32c0c90f5382d9d2'
+'0ad040df57810bca6f8c016e7b83fdfe05f5aae683574ad7d73929746701c911')
+
+prepare() {
+   cd "$srcdir"/$pkgname-$pkgver
+   patch -p1 -i "$srcdir"/libpcap-timeout.patch
+}
+
+build() {
+   cd "$srcdir"/$pkgname-$pkgver
+   autoreconf --install
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "$srcdir"/$pkgname-$pkgver
+   make DESTDIR="${pkgdir}" install
+}

Deleted: socket-error.patch
===
--- socket-error.patch  2019-10-14 11:33:36 UTC (rev 515576)
+++ socket-error.patch  2019-10-14 11:33:52 UTC (rev 515577)
@@ -1,15 +0,0 @@
-diff --git a/link-packet-socket.c b/link-packet-socket.c
-index d25463b..de1eefc 100644
 a/link-packet-socket.c
-+++ b/link-packet-socket.c
-@@ -68,8 +68,8 @@ link_open(const char *device) {
-handle = Malloc(sizeof(*handle));
-memset(handle, '\0', sizeof(*handle));
-if ((handle->fd = socket(PF_PACKET, SOCK_RAW, 0)) < 0) {
--  free(handle);
--  return NULL;
-+  warn_msg("ERROR: Cannot open raw packet socket");
-+  err_sys("socket");
-}
-strlcpy(handle->ifr.ifr_name, device, sizeof(handle->ifr.ifr_name));
-if ((ioctl(handle->fd, SIOCGIFINDEX, &(handle->ifr))) != 0)

Copied: arp-scan/repos/community-x86_64/socket-error.patch (from rev 515576, 
arp-scan/trunk/socket-error.patch)
===
--- socket-error.patch  (rev 0)
+++ socket-error.patch  2019-10-14 11:33:52 UTC (rev 515577)
@@ -0,0 +1,15 @@
+diff --git a/link-packet-socket.c b/link-packet-socket.c
+index d25463b..de1eefc 100644
+--- a/link-packet-socket.c
 b/link-packet-socket.c
+@@ -68,8 +68,8 @@ link_open(const char *device) {
+handle = Malloc(sizeof(*handle));
+memset(handle, '\0', sizeof(*handle));
+if ((handle->fd = socket(PF_PACKET, SOCK_RAW, 0)) < 0) {
+-  free(handle);
+-  return NULL;
++  warn_msg("ERROR: Cannot open raw packet socket");
++  err_sys("socket");
+}
+strlcpy(handle->ifr.ifr_name, device, sizeof(handle->ifr.ifr_name));
+if ((ioctl(handle->fd, SIOCGIFINDEX, &(handle->ifr))) != 0)


[arch-commits] Commit in arp-scan/repos/community-x86_64 (4 files)

2019-03-19 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, March 19, 2019 @ 09:15:07
  Author: mtorromeo
Revision: 442640

archrelease: copy trunk to community-x86_64

Added:
  arp-scan/repos/community-x86_64/PKGBUILD
(from rev 442639, arp-scan/trunk/PKGBUILD)
  arp-scan/repos/community-x86_64/socket-error.patch
(from rev 442639, arp-scan/trunk/socket-error.patch)
Deleted:
  arp-scan/repos/community-x86_64/PKGBUILD
  arp-scan/repos/community-x86_64/socket-error.patch

+
 PKGBUILD   |   59 ++-
 socket-error.patch |   30 -
 2 files changed, 41 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-03-19 09:14:48 UTC (rev 442639)
+++ PKGBUILD2019-03-19 09:15:07 UTC (rev 442640)
@@ -1,33 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: xav 
-
-pkgname=arp-scan
-pkgver=1.9
-pkgrel=4
-pkgdesc="A tool that uses ARP to discover and fingerprint IP hosts on the 
local network"
-arch=('x86_64')
-url="https://github.com/royhills/arp-scan;
-license=('GPL')
-depends=('libpcap' 'perl-libwww')
-source=(https://github.com/royhills/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz
-socket-error.patch)
-
-prepare() {
-   cd "$srcdir"/$pkgname-$pkgver
-   patch -p1 -i "$srcdir"/socket-error.patch
-}
-
-build() {
-   cd "$srcdir"/$pkgname-$pkgver
-   autoreconf --install
-   ./configure --prefix=/usr --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd "$srcdir"/$pkgname-$pkgver
-   make DESTDIR="${pkgdir}" install
-}
-
-sha256sums=('b2a446a170e4a2feeb825cd08db48a147f8dffae702077f33e456c4200e7afb0'
-'bcf605b29dac8d90ecda92558b676521ad764e048250602f7a61fd0c56fd053b')

Copied: arp-scan/repos/community-x86_64/PKGBUILD (from rev 442639, 
arp-scan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-03-19 09:15:07 UTC (rev 442640)
@@ -0,0 +1,26 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: xav 
+
+pkgname=arp-scan
+pkgver=1.9.5
+pkgrel=1
+pkgdesc="A tool that uses ARP to discover and fingerprint IP hosts on the 
local network"
+arch=('x86_64')
+url="https://github.com/royhills/arp-scan;
+license=('GPL')
+depends=('libpcap' 'perl-libwww')
+source=(https://github.com/royhills/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+
+build() {
+   cd "$srcdir"/$pkgname-$pkgver
+   autoreconf --install
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "$srcdir"/$pkgname-$pkgver
+   make DESTDIR="${pkgdir}" install
+}
+
+sha256sums=('aa9498af84158a315b7e0ea6c2cddfa746660ca3987cbe7e32c0c90f5382d9d2')

Deleted: socket-error.patch
===
--- socket-error.patch  2019-03-19 09:14:48 UTC (rev 442639)
+++ socket-error.patch  2019-03-19 09:15:07 UTC (rev 442640)
@@ -1,15 +0,0 @@
-diff --git a/link-packet-socket.c b/link-packet-socket.c
-index d25463b..de1eefc 100644
 a/link-packet-socket.c
-+++ b/link-packet-socket.c
-@@ -68,8 +68,8 @@ link_open(const char *device) {
-handle = Malloc(sizeof(*handle));
-memset(handle, '\0', sizeof(*handle));
-if ((handle->fd = socket(PF_PACKET, SOCK_RAW, 0)) < 0) {
--  free(handle);
--  return NULL;
-+  warn_msg("ERROR: Cannot open raw packet socket");
-+  err_sys("socket");
-}
-strlcpy(handle->ifr.ifr_name, device, sizeof(handle->ifr.ifr_name));
-if ((ioctl(handle->fd, SIOCGIFINDEX, &(handle->ifr))) != 0)

Copied: arp-scan/repos/community-x86_64/socket-error.patch (from rev 442639, 
arp-scan/trunk/socket-error.patch)
===
--- socket-error.patch  (rev 0)
+++ socket-error.patch  2019-03-19 09:15:07 UTC (rev 442640)
@@ -0,0 +1,15 @@
+diff --git a/link-packet-socket.c b/link-packet-socket.c
+index d25463b..de1eefc 100644
+--- a/link-packet-socket.c
 b/link-packet-socket.c
+@@ -68,8 +68,8 @@ link_open(const char *device) {
+handle = Malloc(sizeof(*handle));
+memset(handle, '\0', sizeof(*handle));
+if ((handle->fd = socket(PF_PACKET, SOCK_RAW, 0)) < 0) {
+-  free(handle);
+-  return NULL;
++  warn_msg("ERROR: Cannot open raw packet socket");
++  err_sys("socket");
+}
+strlcpy(handle->ifr.ifr_name, device, sizeof(handle->ifr.ifr_name));
+if ((ioctl(handle->fd, SIOCGIFINDEX, &(handle->ifr))) != 0)