[arch-commits] Commit in ntop/repos (12 files)
Balló György
bgyorgy at nymeria.archlinux.org
Tue Sep 10 01:53:11 UTC 2013
Date: Tuesday, September 10, 2013 @ 03:53:10
Author: bgyorgy
Revision: 96996
archrelease: copy trunk to community-i686, community-x86_64
Added:
ntop/repos/community-i686/PKGBUILD
(from rev 96995, ntop/trunk/PKGBUILD)
ntop/repos/community-i686/ntop.install
(from rev 96995, ntop/trunk/ntop.install)
ntop/repos/community-i686/ntop.service
(from rev 96995, ntop/trunk/ntop.service)
ntop/repos/community-x86_64/PKGBUILD
(from rev 96995, ntop/trunk/PKGBUILD)
ntop/repos/community-x86_64/ntop.install
(from rev 96995, ntop/trunk/ntop.install)
ntop/repos/community-x86_64/ntop.service
(from rev 96995, ntop/trunk/ntop.service)
Deleted:
ntop/repos/community-i686/PKGBUILD
ntop/repos/community-i686/ntop.install
ntop/repos/community-i686/ntop.service
ntop/repos/community-x86_64/PKGBUILD
ntop/repos/community-x86_64/ntop.install
ntop/repos/community-x86_64/ntop.service
-------------------------------+
/PKGBUILD | 100 ++++++++++++++++++++++++++++++++++++++++
/ntop.install | 16 ++++++
/ntop.service | 28 +++++++++++
community-i686/PKGBUILD | 42 ----------------
community-i686/ntop.install | 8 ---
community-i686/ntop.service | 14 -----
community-x86_64/PKGBUILD | 42 ----------------
community-x86_64/ntop.install | 8 ---
community-x86_64/ntop.service | 14 -----
9 files changed, 144 insertions(+), 128 deletions(-)
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2013-09-10 01:52:59 UTC (rev 96995)
+++ community-i686/PKGBUILD 2013-09-10 01:53:10 UTC (rev 96996)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
-
-pkgname=ntop
-pkgver=5.0.1
-pkgrel=3
-pkgdesc='A network traffic probe that shows the network usage.'
-arch=('i686' 'x86_64')
-url='http://www.ntop.org/'
-license=('GPL')
-depends=('libevent' 'libpcap' 'gd' 'glibc' 'libxml2' 'openssl' 'rrdtool' 'pcre' 'geoip' 'lua')
-makedepends=('subversion' 'wget' 'ca-certificates')
-options=('!libtool' '!makeflags')
-install='ntop.install'
-source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/Stable/${pkgname}-${pkgver}.tar.gz"
- 'ntop.service')
-md5sums=('01710b6925a8a5ffe1a41b8b512ebd69'
- '0e149d20f881600e8387d850ac268483')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib --disable-snmp
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}" install-recursive
-
- install -dm0755 -o nobody -g nobody "${pkgdir}/var/lib/ntop"
- install -dm0755 -o nobody -g nobody "${pkgdir}/var/lib/ntop/rrd"
-
- for _f in "${pkgdir}/usr/lib/ntop/plugins/"*.so; do
- _plug="$(basename ${_f})"
- ln -sf "../../lib${_plug}" "${_f}"
- done
-
- install -Dm0644 "${srcdir}/ntop.service" "${pkgdir}/usr/lib/systemd/system/ntop.service"
-}
Copied: ntop/repos/community-i686/PKGBUILD (from rev 96995, ntop/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-10 01:53:10 UTC (rev 96996)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
+
+pkgname=ntop
+pkgver=5.0.1
+pkgrel=4
+pkgdesc='A network traffic probe that shows the network usage.'
+arch=('i686' 'x86_64')
+url='http://www.ntop.org/'
+license=('GPL')
+depends=('libevent' 'libpcap' 'gd' 'glibc' 'libxml2' 'openssl' 'rrdtool' 'pcre' 'geoip' 'lua' 'python2')
+makedepends=('subversion' 'wget' 'ca-certificates')
+options=('!libtool' '!makeflags')
+install='ntop.install'
+source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/Stable/${pkgname}-${pkgver}.tar.gz"
+ 'ntop.service')
+md5sums=('01710b6925a8a5ffe1a41b8b512ebd69'
+ '0e149d20f881600e8387d850ac268483')
+
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ # Python2 fix
+ find . -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+ sed -i 's/python-config/python2-config/' configure.in
+}
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib --disable-snmp
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install-recursive
+
+ install -dm0755 -o nobody -g nobody "${pkgdir}/var/lib/ntop"
+ install -dm0755 -o nobody -g nobody "${pkgdir}/var/lib/ntop/rrd"
+
+ for _f in "${pkgdir}/usr/lib/ntop/plugins/"*.so; do
+ _plug="$(basename ${_f})"
+ ln -sf "../../lib${_plug}" "${_f}"
+ done
+
+ install -Dm0644 "${srcdir}/ntop.service" "${pkgdir}/usr/lib/systemd/system/ntop.service"
+}
Deleted: community-i686/ntop.install
===================================================================
--- community-i686/ntop.install 2013-09-10 01:52:59 UTC (rev 96995)
+++ community-i686/ntop.install 2013-09-10 01:53:10 UTC (rev 96996)
@@ -1,8 +0,0 @@
-post_install() {
- /bin/cat <<EOF
-==> Before running the daemon script for the first time, you need to run
- ntop as the root user to set an administrator password.
-==> If you attempt to run ntop as a daemon without setting a password, a
- FATAL ERROR message is generated and ntop stops.
-EOF
-}
Copied: ntop/repos/community-i686/ntop.install (from rev 96995, ntop/trunk/ntop.install)
===================================================================
--- community-i686/ntop.install (rev 0)
+++ community-i686/ntop.install 2013-09-10 01:53:10 UTC (rev 96996)
@@ -0,0 +1,8 @@
+post_install() {
+ /bin/cat <<EOF
+==> Before running the daemon script for the first time, you need to run
+ ntop as the root user to set an administrator password.
+==> If you attempt to run ntop as a daemon without setting a password, a
+ FATAL ERROR message is generated and ntop stops.
+EOF
+}
Deleted: community-i686/ntop.service
===================================================================
--- community-i686/ntop.service 2013-09-10 01:52:59 UTC (rev 96995)
+++ community-i686/ntop.service 2013-09-10 01:53:10 UTC (rev 96996)
@@ -1,14 +0,0 @@
-[Unit]
-Description=A network traffic probe similar to the UNIX top command
-Requires=network.target
-ConditionPathExists=/var/lib/ntop/ntop_pw.db
-After=syslog.target network.target
-
-[Service]
-Environment=LANG=C
-ExecStart=/usr/bin/ntop -i eth0 -w 3000
-Type=simple
-StandardError=syslog
-
-[Install]
-WantedBy=multi-user.target
Copied: ntop/repos/community-i686/ntop.service (from rev 96995, ntop/trunk/ntop.service)
===================================================================
--- community-i686/ntop.service (rev 0)
+++ community-i686/ntop.service 2013-09-10 01:53:10 UTC (rev 96996)
@@ -0,0 +1,14 @@
+[Unit]
+Description=A network traffic probe similar to the UNIX top command
+Requires=network.target
+ConditionPathExists=/var/lib/ntop/ntop_pw.db
+After=syslog.target network.target
+
+[Service]
+Environment=LANG=C
+ExecStart=/usr/bin/ntop -i eth0 -w 3000
+Type=simple
+StandardError=syslog
+
+[Install]
+WantedBy=multi-user.target
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2013-09-10 01:52:59 UTC (rev 96995)
+++ community-x86_64/PKGBUILD 2013-09-10 01:53:10 UTC (rev 96996)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
-
-pkgname=ntop
-pkgver=5.0.1
-pkgrel=3
-pkgdesc='A network traffic probe that shows the network usage.'
-arch=('i686' 'x86_64')
-url='http://www.ntop.org/'
-license=('GPL')
-depends=('libevent' 'libpcap' 'gd' 'glibc' 'libxml2' 'openssl' 'rrdtool' 'pcre' 'geoip' 'lua')
-makedepends=('subversion' 'wget' 'ca-certificates')
-options=('!libtool' '!makeflags')
-install='ntop.install'
-source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/Stable/${pkgname}-${pkgver}.tar.gz"
- 'ntop.service')
-md5sums=('01710b6925a8a5ffe1a41b8b512ebd69'
- '0e149d20f881600e8387d850ac268483')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib --disable-snmp
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}" install-recursive
-
- install -dm0755 -o nobody -g nobody "${pkgdir}/var/lib/ntop"
- install -dm0755 -o nobody -g nobody "${pkgdir}/var/lib/ntop/rrd"
-
- for _f in "${pkgdir}/usr/lib/ntop/plugins/"*.so; do
- _plug="$(basename ${_f})"
- ln -sf "../../lib${_plug}" "${_f}"
- done
-
- install -Dm0644 "${srcdir}/ntop.service" "${pkgdir}/usr/lib/systemd/system/ntop.service"
-}
Copied: ntop/repos/community-x86_64/PKGBUILD (from rev 96995, ntop/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2013-09-10 01:53:10 UTC (rev 96996)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
+
+pkgname=ntop
+pkgver=5.0.1
+pkgrel=4
+pkgdesc='A network traffic probe that shows the network usage.'
+arch=('i686' 'x86_64')
+url='http://www.ntop.org/'
+license=('GPL')
+depends=('libevent' 'libpcap' 'gd' 'glibc' 'libxml2' 'openssl' 'rrdtool' 'pcre' 'geoip' 'lua' 'python2')
+makedepends=('subversion' 'wget' 'ca-certificates')
+options=('!libtool' '!makeflags')
+install='ntop.install'
+source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/Stable/${pkgname}-${pkgver}.tar.gz"
+ 'ntop.service')
+md5sums=('01710b6925a8a5ffe1a41b8b512ebd69'
+ '0e149d20f881600e8387d850ac268483')
+
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ # Python2 fix
+ find . -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+ sed -i 's/python-config/python2-config/' configure.in
+}
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib --disable-snmp
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install-recursive
+
+ install -dm0755 -o nobody -g nobody "${pkgdir}/var/lib/ntop"
+ install -dm0755 -o nobody -g nobody "${pkgdir}/var/lib/ntop/rrd"
+
+ for _f in "${pkgdir}/usr/lib/ntop/plugins/"*.so; do
+ _plug="$(basename ${_f})"
+ ln -sf "../../lib${_plug}" "${_f}"
+ done
+
+ install -Dm0644 "${srcdir}/ntop.service" "${pkgdir}/usr/lib/systemd/system/ntop.service"
+}
Deleted: community-x86_64/ntop.install
===================================================================
--- community-x86_64/ntop.install 2013-09-10 01:52:59 UTC (rev 96995)
+++ community-x86_64/ntop.install 2013-09-10 01:53:10 UTC (rev 96996)
@@ -1,8 +0,0 @@
-post_install() {
- /bin/cat <<EOF
-==> Before running the daemon script for the first time, you need to run
- ntop as the root user to set an administrator password.
-==> If you attempt to run ntop as a daemon without setting a password, a
- FATAL ERROR message is generated and ntop stops.
-EOF
-}
Copied: ntop/repos/community-x86_64/ntop.install (from rev 96995, ntop/trunk/ntop.install)
===================================================================
--- community-x86_64/ntop.install (rev 0)
+++ community-x86_64/ntop.install 2013-09-10 01:53:10 UTC (rev 96996)
@@ -0,0 +1,8 @@
+post_install() {
+ /bin/cat <<EOF
+==> Before running the daemon script for the first time, you need to run
+ ntop as the root user to set an administrator password.
+==> If you attempt to run ntop as a daemon without setting a password, a
+ FATAL ERROR message is generated and ntop stops.
+EOF
+}
Deleted: community-x86_64/ntop.service
===================================================================
--- community-x86_64/ntop.service 2013-09-10 01:52:59 UTC (rev 96995)
+++ community-x86_64/ntop.service 2013-09-10 01:53:10 UTC (rev 96996)
@@ -1,14 +0,0 @@
-[Unit]
-Description=A network traffic probe similar to the UNIX top command
-Requires=network.target
-ConditionPathExists=/var/lib/ntop/ntop_pw.db
-After=syslog.target network.target
-
-[Service]
-Environment=LANG=C
-ExecStart=/usr/bin/ntop -i eth0 -w 3000
-Type=simple
-StandardError=syslog
-
-[Install]
-WantedBy=multi-user.target
Copied: ntop/repos/community-x86_64/ntop.service (from rev 96995, ntop/trunk/ntop.service)
===================================================================
--- community-x86_64/ntop.service (rev 0)
+++ community-x86_64/ntop.service 2013-09-10 01:53:10 UTC (rev 96996)
@@ -0,0 +1,14 @@
+[Unit]
+Description=A network traffic probe similar to the UNIX top command
+Requires=network.target
+ConditionPathExists=/var/lib/ntop/ntop_pw.db
+After=syslog.target network.target
+
+[Service]
+Environment=LANG=C
+ExecStart=/usr/bin/ntop -i eth0 -w 3000
+Type=simple
+StandardError=syslog
+
+[Install]
+WantedBy=multi-user.target
More information about the arch-commits
mailing list