[arch-commits] Commit in arpwatch/repos/community-x86_64 (8 files)

Sergej Pupykin spupykin at gemini.archlinux.org
Wed Apr 20 19:23:56 UTC 2022


    Date: Wednesday, April 20, 2022 @ 19:23:56
  Author: spupykin
Revision: 1187162

archrelease: copy trunk to community-x86_64

Added:
  arpwatch/repos/community-x86_64/LICENSE
    (from rev 1187161, arpwatch/trunk/LICENSE)
  arpwatch/repos/community-x86_64/PKGBUILD
    (from rev 1187161, arpwatch/trunk/PKGBUILD)
  arpwatch/repos/community-x86_64/arpwatch.service
    (from rev 1187161, arpwatch/trunk/arpwatch.service)
  arpwatch/repos/community-x86_64/ethercodes.dat.gz
    (from rev 1187161, arpwatch/trunk/ethercodes.dat.gz)
Deleted:
  arpwatch/repos/community-x86_64/LICENSE
  arpwatch/repos/community-x86_64/PKGBUILD
  arpwatch/repos/community-x86_64/arpwatch.service
  arpwatch/repos/community-x86_64/ethercodes.dat.gz

------------------+
 LICENSE          |   36 ++++++++++----------
 PKGBUILD         |   92 ++++++++++++++++++++++++++---------------------------
 arpwatch.service |   24 ++++++-------
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: LICENSE
===================================================================
--- LICENSE	2022-04-20 19:23:40 UTC (rev 1187161)
+++ LICENSE	2022-04-20 19:23:56 UTC (rev 1187162)
@@ -1,18 +0,0 @@
-Copyright (c) 1992, 1993, 1994, 1995, 1996, 1998, 2000
-     The Regents of the University of California.  All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that: (1) source code distributions
-retain the above copyright notice and this paragraph in its entirety, (2)
-distributions including binary code include the above copyright notice and
-this paragraph in its entirety in the documentation or other materials
-provided with the distribution, and (3) all advertising materials mentioning
-features or use of this software display the following acknowledgement:
-``This product includes software developed by the University of California,
-Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
-the University nor the names of its contributors may be used to endorse
-or promote products derived from this software without specific prior
-written permission.
-THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
-WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

Copied: arpwatch/repos/community-x86_64/LICENSE (from rev 1187161, arpwatch/trunk/LICENSE)
===================================================================
--- LICENSE	                        (rev 0)
+++ LICENSE	2022-04-20 19:23:56 UTC (rev 1187162)
@@ -0,0 +1,18 @@
+Copyright (c) 1992, 1993, 1994, 1995, 1996, 1998, 2000
+     The Regents of the University of California.  All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that: (1) source code distributions
+retain the above copyright notice and this paragraph in its entirety, (2)
+distributions including binary code include the above copyright notice and
+this paragraph in its entirety in the documentation or other materials
+provided with the distribution, and (3) all advertising materials mentioning
+features or use of this software display the following acknowledgement:
+``This product includes software developed by the University of California,
+Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
+the University nor the names of its contributors may be used to endorse
+or promote products derived from this software without specific prior
+written permission.
+THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-04-20 19:23:40 UTC (rev 1187161)
+++ PKGBUILD	2022-04-20 19:23:56 UTC (rev 1187162)
@@ -1,46 +0,0 @@
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Sébastien Luttringer
-
-pkgname=arpwatch
-pkgver=3.1
-pkgrel=2
-pkgdesc='Ethernet/FDDI station activity monitor'
-arch=('x86_64')
-url='ftp://ftp.ee.lbl.gov/'
-license=('BSD')
-depends=('libpcap' 'smtp-forwarder')
-source=("https://ee.lbl.gov/downloads/arpwatch/arpwatch-$pkgver.tar.gz"
-        'LICENSE'
-        "ethercodes.dat.gz"
-        "$pkgname.service")
-sha512sums=('2e6f6e388e1828e34626e36356a89f3bc95d268b9242955d6636ac05041bcf533e7625ed73b37b6ea5eab8cfed54b8c483547556c98664efff63c18639efa282'
-            'ed46c36220507d8ffbd01a3cc90c9047536b8af26af8c9623fae7a6584ad922b6adebabb6de771b0dbdc802da1a6cb51b8b30a8902c92d71f8b31ee763d61624'
-            'dc9818e6453e0d9ef38864536ea66b15a8acb48091b609e422227538d3d4c6b93cc853778f8f4ea8cd887dc15c1c62da66f4325c540eb80f9c78705d63a65226'
-            '4a9460c8a376d9183265b73e2c3b02965223144fecfeeb630ec5e70d40d4aed5725e5a43ae370938afa0a2fd362785020eca679e585a7f400e4e67f255807a84')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i '/@HAVE_FREEBSD_TRUE@/d' Makefile.in
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
-    --prefix=/usr \
-    --mandir=/usr/share/man \
-    --sbindir=/usr/bin \
-    --with-watcher=arpwatch
-  make SENDMAIL=/usr/bin/sendmail
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -d -m 0755 "$pkgdir"/usr/{bin,share/man/man8}
-  make DESTDIR="$pkgdir" install
-  # install ether prefix database
-  install -Dm644 "$srcdir"/ethercodes.dat "$pkgdir/var/lib/$pkgname/ethercodes.dat"
-  # license
-  install -Dm644 "$srcdir"/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  # systemd
-  install -Dm644 "$srcdir"/$pkgname.service "$pkgdir/usr/lib/systemd/system/$pkgname at .service"
-}

Copied: arpwatch/repos/community-x86_64/PKGBUILD (from rev 1187161, arpwatch/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-04-20 19:23:56 UTC (rev 1187162)
@@ -0,0 +1,46 @@
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Sébastien Luttringer
+
+pkgname=arpwatch
+pkgver=3.3
+pkgrel=1
+pkgdesc='Ethernet/FDDI station activity monitor'
+arch=('x86_64')
+url='ftp://ftp.ee.lbl.gov/'
+license=('BSD')
+depends=('libpcap' 'smtp-forwarder')
+source=("https://ee.lbl.gov/downloads/arpwatch/arpwatch-$pkgver.tar.gz"
+        'LICENSE'
+        "ethercodes.dat.gz"
+        "$pkgname.service")
+sha512sums=('4e3d542917dc9060ae7b35b40f41cb696eb36e68846194a76f025c5ecb1df1e67d5c1c66ba3c7e581e1f915b988d05cb7805f28d410784bd27dc3a448dccdece'
+            'ed46c36220507d8ffbd01a3cc90c9047536b8af26af8c9623fae7a6584ad922b6adebabb6de771b0dbdc802da1a6cb51b8b30a8902c92d71f8b31ee763d61624'
+            'dc9818e6453e0d9ef38864536ea66b15a8acb48091b609e422227538d3d4c6b93cc853778f8f4ea8cd887dc15c1c62da66f4325c540eb80f9c78705d63a65226'
+            '4a9460c8a376d9183265b73e2c3b02965223144fecfeeb630ec5e70d40d4aed5725e5a43ae370938afa0a2fd362785020eca679e585a7f400e4e67f255807a84')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i '/@HAVE_FREEBSD_TRUE@/d' Makefile.in
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+    --prefix=/usr \
+    --mandir=/usr/share/man \
+    --sbindir=/usr/bin \
+    --with-watcher=arpwatch
+  make SENDMAIL=/usr/bin/sendmail
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -d -m 0755 "$pkgdir"/usr/{bin,share/man/man8}
+  make DESTDIR="$pkgdir" install
+  # install ether prefix database
+  install -Dm644 "$srcdir"/ethercodes.dat "$pkgdir/var/lib/$pkgname/ethercodes.dat"
+  # license
+  install -Dm644 "$srcdir"/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  # systemd
+  install -Dm644 "$srcdir"/$pkgname.service "$pkgdir/usr/lib/systemd/system/$pkgname at .service"
+}

Deleted: arpwatch.service
===================================================================
--- arpwatch.service	2022-04-20 19:23:40 UTC (rev 1187161)
+++ arpwatch.service	2022-04-20 19:23:56 UTC (rev 1187162)
@@ -1,12 +0,0 @@
-[Unit]
-Description=Watch ARP on interface %i
-After=network.target
-
-[Service]
-Type=forking
-WorkingDirectory=/var/lib/arpwatch
-ExecStartPre=/usr/bin/touch /var/lib/arpwatch/%i.dat
-ExecStart=/usr/bin/arpwatch -f /var/lib/arpwatch/%i.dat -i %i
-
-[Install]
-WantedBy=multi-user.target

Copied: arpwatch/repos/community-x86_64/arpwatch.service (from rev 1187161, arpwatch/trunk/arpwatch.service)
===================================================================
--- arpwatch.service	                        (rev 0)
+++ arpwatch.service	2022-04-20 19:23:56 UTC (rev 1187162)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Watch ARP on interface %i
+After=network.target
+
+[Service]
+Type=forking
+WorkingDirectory=/var/lib/arpwatch
+ExecStartPre=/usr/bin/touch /var/lib/arpwatch/%i.dat
+ExecStart=/usr/bin/arpwatch -f /var/lib/arpwatch/%i.dat -i %i
+
+[Install]
+WantedBy=multi-user.target

Deleted: ethercodes.dat.gz
===================================================================
(Binary files differ)

Copied: arpwatch/repos/community-x86_64/ethercodes.dat.gz (from rev 1187161, arpwatch/trunk/ethercodes.dat.gz)
===================================================================
(Binary files differ)



More information about the arch-commits mailing list