[arch-commits] Commit in iputils/repos (8 files)

2017-02-11 Thread Pierre Schmitz
Date: Saturday, February 11, 2017 @ 12:07:20
  Author: pierre
Revision: 288664

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  iputils/repos/staging-i686/
  iputils/repos/staging-i686/PKGBUILD
(from rev 288663, iputils/trunk/PKGBUILD)
  iputils/repos/staging-i686/iputils.install
(from rev 288663, iputils/trunk/iputils.install)
  iputils/repos/staging-i686/tftp.xinetd
(from rev 288663, iputils/trunk/tftp.xinetd)
  iputils/repos/staging-x86_64/
  iputils/repos/staging-x86_64/PKGBUILD
(from rev 288663, iputils/trunk/PKGBUILD)
  iputils/repos/staging-x86_64/iputils.install
(from rev 288663, iputils/trunk/iputils.install)
  iputils/repos/staging-x86_64/tftp.xinetd
(from rev 288663, iputils/trunk/tftp.xinetd)

+
 staging-i686/PKGBUILD  |   51 +++
 staging-i686/iputils.install   |9 ++
 staging-i686/tftp.xinetd   |   10 +++
 staging-x86_64/PKGBUILD|   51 +++
 staging-x86_64/iputils.install |9 ++
 staging-x86_64/tftp.xinetd |   10 +++
 6 files changed, 140 insertions(+)

Copied: iputils/repos/staging-i686/PKGBUILD (from rev 288663, 
iputils/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-02-11 12:07:20 UTC (rev 288664)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Maintainer: Tobias Powalowski 
+# Contributor: Aaron Griffin 
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=1f2bb12
+pkgver=20161105.${_rev}
+pkgrel=2
+pkgdesc="Network monitoring tools, including ping"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap' 'libidn')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook-utils' 'perl-sgmls' 'git')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=("git+https://github.com/iputils/iputils.git#commit=${_rev};
+tftp.xinetd)
+sha1sums=('SKIP'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd "${srcdir}/${pkgname}"
+
+  make USE_NETTLE=no USE_GNUTLS=no CCOPTOPT="$CFLAGS"
+  # fix perl-sgmls
+  sed -i -e 's#sgmlspl#sgmlspl.pl#g' "${srcdir}/${pkgname}/doc/Makefile"
+  make -C doc man
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+
+  install -dm755 "${pkgdir}"/usr/bin
+
+  install -m755 arping clockdiff ping rarpd rdisc tftpd tracepath 
"${pkgdir}"/usr/bin/
+
+  install -dm755 "${pkgdir}"/usr/share/man/man8
+  install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
+ "${pkgdir}"/usr/share/man/man8/
+
+  # FS#24768
+  install -dm755 "${pkgdir}"/etc/xinetd.d/
+  install -m644 "${srcdir}"/tftp.xinetd "${pkgdir}"/etc/xinetd.d/tftp
+}

Copied: iputils/repos/staging-i686/iputils.install (from rev 288663, 
iputils/trunk/iputils.install)
===
--- staging-i686/iputils.install(rev 0)
+++ staging-i686/iputils.install2017-02-11 12:07:20 UTC (rev 288664)
@@ -0,0 +1,9 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/ping  2>/dev/null || chmod +s usr/bin/ping 
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/staging-i686/tftp.xinetd (from rev 288663, 
iputils/trunk/tftp.xinetd)
===
--- staging-i686/tftp.xinetd(rev 0)
+++ staging-i686/tftp.xinetd2017-02-11 12:07:20 UTC (rev 288664)
@@ -0,0 +1,10 @@
+service tftp
+{
+   socket_type = dgram
+   protocol= udp
+   wait= yes
+   user= nobody
+   server  = /usr/sbin/tftpd
+   server_args = /var/tftpboot
+   disable = yes
+}

Copied: iputils/repos/staging-x86_64/PKGBUILD (from rev 288663, 
iputils/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-02-11 12:07:20 UTC (rev 288664)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Maintainer: Tobias Powalowski 
+# Contributor: Aaron Griffin 
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=1f2bb12
+pkgver=20161105.${_rev}
+pkgrel=2
+pkgdesc="Network monitoring tools, including ping"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap' 'libidn')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook-utils' 

[arch-commits] Commit in iputils/repos (8 files)

2016-11-16 Thread Tobias Powalowski
Date: Wednesday, November 16, 2016 @ 08:00:34
  Author: tpowa
Revision: 280875

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iputils/repos/testing-i686/
  iputils/repos/testing-i686/PKGBUILD
(from rev 280874, iputils/trunk/PKGBUILD)
  iputils/repos/testing-i686/iputils.install
(from rev 280874, iputils/trunk/iputils.install)
  iputils/repos/testing-i686/tftp.xinetd
(from rev 280874, iputils/trunk/tftp.xinetd)
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 280874, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/iputils.install
(from rev 280874, iputils/trunk/iputils.install)
  iputils/repos/testing-x86_64/tftp.xinetd
(from rev 280874, iputils/trunk/tftp.xinetd)

+
 testing-i686/PKGBUILD  |   51 +++
 testing-i686/iputils.install   |9 ++
 testing-i686/tftp.xinetd   |   10 +++
 testing-x86_64/PKGBUILD|   51 +++
 testing-x86_64/iputils.install |9 ++
 testing-x86_64/tftp.xinetd |   10 +++
 6 files changed, 140 insertions(+)

Copied: iputils/repos/testing-i686/PKGBUILD (from rev 280874, 
iputils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-11-16 08:00:34 UTC (rev 280875)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Maintainer: Tobias Powalowski 
+# Contributor: Aaron Griffin 
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=1f2bb12
+pkgver=20161105.${_rev}
+pkgrel=1
+pkgdesc="Network monitoring tools, including ping"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap' 'libidn')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook-utils' 'perl-sgmls' 'git')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=("git+https://github.com/iputils/iputils.git#commit=${_rev};
+tftp.xinetd)
+sha1sums=('SKIP'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd "${srcdir}/${pkgname}"
+
+  make USE_NETTLE=no USE_GNUTLS=no CCOPTOPT="$CFLAGS"
+  # fix perl-sgmls
+  sed -i -e 's#sgmlspl#sgmlspl.pl#g' "${srcdir}/${pkgname}/doc/Makefile"
+  make -C doc man
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+
+  install -dm755 "${pkgdir}"/usr/bin
+
+  install -m755 arping clockdiff ping rarpd rdisc tftpd tracepath 
"${pkgdir}"/usr/bin/
+
+  install -dm755 "${pkgdir}"/usr/share/man/man8
+  install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
+ "${pkgdir}"/usr/share/man/man8/
+
+  # FS#24768
+  install -dm755 "${pkgdir}"/etc/xinetd.d/
+  install -m644 "${srcdir}"/tftp.xinetd "${pkgdir}"/etc/xinetd.d/tftp
+}

Copied: iputils/repos/testing-i686/iputils.install (from rev 280874, 
iputils/trunk/iputils.install)
===
--- testing-i686/iputils.install(rev 0)
+++ testing-i686/iputils.install2016-11-16 08:00:34 UTC (rev 280875)
@@ -0,0 +1,9 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/ping  2>/dev/null || chmod +s usr/bin/ping 
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/testing-i686/tftp.xinetd (from rev 280874, 
iputils/trunk/tftp.xinetd)
===
--- testing-i686/tftp.xinetd(rev 0)
+++ testing-i686/tftp.xinetd2016-11-16 08:00:34 UTC (rev 280875)
@@ -0,0 +1,10 @@
+service tftp
+{
+   socket_type = dgram
+   protocol= udp
+   wait= yes
+   user= nobody
+   server  = /usr/sbin/tftpd
+   server_args = /var/tftpboot
+   disable = yes
+}

Copied: iputils/repos/testing-x86_64/PKGBUILD (from rev 280874, 
iputils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-11-16 08:00:34 UTC (rev 280875)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Maintainer: Tobias Powalowski 
+# Contributor: Aaron Griffin 
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=1f2bb12
+pkgver=20161105.${_rev}
+pkgrel=1
+pkgdesc="Network monitoring tools, including ping"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap' 'libidn')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook-utils' 

[arch-commits] Commit in iputils/repos (8 files)

2016-03-10 Thread Tobias Powalowski
Date: Thursday, March 10, 2016 @ 16:50:28
  Author: tpowa
Revision: 261285

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iputils/repos/testing-i686/
  iputils/repos/testing-i686/PKGBUILD
(from rev 261284, iputils/trunk/PKGBUILD)
  iputils/repos/testing-i686/iputils.install
(from rev 261284, iputils/trunk/iputils.install)
  iputils/repos/testing-i686/tftp.xinetd
(from rev 261284, iputils/trunk/tftp.xinetd)
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 261284, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/iputils.install
(from rev 261284, iputils/trunk/iputils.install)
  iputils/repos/testing-x86_64/tftp.xinetd
(from rev 261284, iputils/trunk/tftp.xinetd)

+
 testing-i686/PKGBUILD  |   59 +++
 testing-i686/iputils.install   |9 +
 testing-i686/tftp.xinetd   |   10 ++
 testing-x86_64/PKGBUILD|   59 +++
 testing-x86_64/iputils.install |9 +
 testing-x86_64/tftp.xinetd |   10 ++
 6 files changed, 156 insertions(+)

Copied: iputils/repos/testing-i686/PKGBUILD (from rev 261284, 
iputils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-10 15:50:28 UTC (rev 261285)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Maintainer: Tobias Powalowski 
+# Contributor: Aaron Griffin 
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=0db72a4
+pkgver=20160308.${_rev}
+pkgrel=1
+pkgdesc="Network monitoring tools, including ping"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook2x' 'opensp' 'git')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=("git+https://github.com/iputils/iputils.git#commit=${_rev};
+tftp.xinetd)
+sha1sums=('SKIP'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd "${srcdir}/${pkgname}"
+
+  make USE_GNUTLS=no CCOPTOPT="$CFLAGS"
+
+  cd doc
+  for file in *.sgml; do
+xf=${file/.sgml/.xml}
+osx -xlower -xno-nl-in-tag $file > $xf || true
+sed -i "s|\(.*\), \(.*\)|\1, 
\2|g" $xf
+docbook2man $xf
+  done
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+
+  install -dm755 "${pkgdir}"/usr/bin
+
+  install -m755 arping clockdiff ping rarpd rdisc tftpd tracepath tracepath6 
"${pkgdir}"/usr/bin/
+
+  install -dm755 "${pkgdir}"/usr/share/man/man8
+  install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
+ "${pkgdir}"/usr/share/man/man8/
+
+  cd "${pkgdir}"/usr/share/man/man8
+  ln -sf tracepath.8.gz tracepath6.8.gz
+
+  # FS#24768
+  install -dm755 "${pkgdir}"/etc/xinetd.d/
+  install -m644 "${srcdir}"/tftp.xinetd "${pkgdir}"/etc/xinetd.d/tftp
+}

Copied: iputils/repos/testing-i686/iputils.install (from rev 261284, 
iputils/trunk/iputils.install)
===
--- testing-i686/iputils.install(rev 0)
+++ testing-i686/iputils.install2016-03-10 15:50:28 UTC (rev 261285)
@@ -0,0 +1,9 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/ping  2>/dev/null || chmod +s usr/bin/ping 
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/testing-i686/tftp.xinetd (from rev 261284, 
iputils/trunk/tftp.xinetd)
===
--- testing-i686/tftp.xinetd(rev 0)
+++ testing-i686/tftp.xinetd2016-03-10 15:50:28 UTC (rev 261285)
@@ -0,0 +1,10 @@
+service tftp
+{
+   socket_type = dgram
+   protocol= udp
+   wait= yes
+   user= nobody
+   server  = /usr/sbin/tftpd
+   server_args = /var/tftpboot
+   disable = yes
+}

Copied: iputils/repos/testing-x86_64/PKGBUILD (from rev 261284, 
iputils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-03-10 15:50:28 UTC (rev 261285)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Maintainer: Tobias Powalowski 
+# Contributor: Aaron Griffin 
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=0db72a4
+pkgver=20160308.${_rev}
+pkgrel=1
+pkgdesc="Network monitoring tools, including ping"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.skbuff.net/iputils/;

[arch-commits] Commit in iputils/repos (8 files)

2015-09-04 Thread Tobias Powalowski
Date: Friday, September 4, 2015 @ 20:49:37
  Author: tpowa
Revision: 245304

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iputils/repos/testing-i686/
  iputils/repos/testing-i686/PKGBUILD
(from rev 245303, iputils/trunk/PKGBUILD)
  iputils/repos/testing-i686/iputils.install
(from rev 245303, iputils/trunk/iputils.install)
  iputils/repos/testing-i686/tftp.xinetd
(from rev 245303, iputils/trunk/tftp.xinetd)
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 245303, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/iputils.install
(from rev 245303, iputils/trunk/iputils.install)
  iputils/repos/testing-x86_64/tftp.xinetd
(from rev 245303, iputils/trunk/tftp.xinetd)

+
 testing-i686/PKGBUILD  |   60 +++
 testing-i686/iputils.install   |   10 ++
 testing-i686/tftp.xinetd   |   10 ++
 testing-x86_64/PKGBUILD|   60 +++
 testing-x86_64/iputils.install |   10 ++
 testing-x86_64/tftp.xinetd |   10 ++
 6 files changed, 160 insertions(+)

Copied: iputils/repos/testing-i686/PKGBUILD (from rev 245303, 
iputils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-04 18:49:37 UTC (rev 245304)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Maintainer: Tobias Powalowski 
+# Contributor: Aaron Griffin 
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=1b5d03a
+pkgver=20150815.${_rev}
+pkgrel=1
+pkgdesc="Network monitoring tools, including ping"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook2x' 'opensp' 'git')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=("git+https://github.com/iputils/iputils.git#commit=${_rev};
+tftp.xinetd)
+sha1sums=('SKIP'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd "${srcdir}/${pkgname}"
+
+  make USE_GNUTLS=no CCOPTOPT="$CFLAGS"
+
+  cd doc
+  for file in *.sgml; do
+xf=${file/.sgml/.xml}
+osx -xlower -xno-nl-in-tag $file > $xf || true
+sed -i "s|\(.*\), \(.*\)|\1, 
\2|g" $xf
+docbook2man $xf
+  done
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+
+  install -dm755 "${pkgdir}"/usr/bin
+
+  install -m755 arping clockdiff ping rarpd rdisc tftpd tracepath tracepath6 
"${pkgdir}"/usr/bin/
+
+  install -dm755 "${pkgdir}"/usr/share/man/man8
+  install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
+ "${pkgdir}"/usr/share/man/man8/
+
+  cd "${pkgdir}"/usr/share/man/man8
+  ln -sf ping.8.gz  ping6.8.gz
+  ln -sf tracepath.8.gz tracepath6.8.gz
+
+  # FS#24768
+  install -dm755 "${pkgdir}"/etc/xinetd.d/
+  install -m644 "${srcdir}"/tftp.xinetd "${pkgdir}"/etc/xinetd.d/tftp
+}

Copied: iputils/repos/testing-i686/iputils.install (from rev 245303, 
iputils/trunk/iputils.install)
===
--- testing-i686/iputils.install(rev 0)
+++ testing-i686/iputils.install2015-09-04 18:49:37 UTC (rev 245304)
@@ -0,0 +1,10 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/ping  2>/dev/null || chmod +s usr/bin/ping 
+  setcap cap_net_raw=ep usr/bin/ping6 2>/dev/null || chmod +s usr/bin/ping6
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/testing-i686/tftp.xinetd (from rev 245303, 
iputils/trunk/tftp.xinetd)
===
--- testing-i686/tftp.xinetd(rev 0)
+++ testing-i686/tftp.xinetd2015-09-04 18:49:37 UTC (rev 245304)
@@ -0,0 +1,10 @@
+service tftp
+{
+   socket_type = dgram
+   protocol= udp
+   wait= yes
+   user= nobody
+   server  = /usr/sbin/tftpd
+   server_args = /var/tftpboot
+   disable = yes
+}

Copied: iputils/repos/testing-x86_64/PKGBUILD (from rev 245303, 
iputils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-09-04 18:49:37 UTC (rev 245304)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Maintainer: Tobias Powalowski 
+# Contributor: Aaron Griffin 
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=1b5d03a
+pkgver=20150815.${_rev}
+pkgrel=1
+pkgdesc="Network monitoring 

[arch-commits] Commit in iputils/repos (8 files)

2015-05-08 Thread Tobias Powalowski
Date: Friday, May 8, 2015 @ 15:50:30
  Author: tpowa
Revision: 238699

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iputils/repos/testing-i686/
  iputils/repos/testing-i686/PKGBUILD
(from rev 238698, iputils/trunk/PKGBUILD)
  iputils/repos/testing-i686/iputils.install
(from rev 238698, iputils/trunk/iputils.install)
  iputils/repos/testing-i686/tftp.xinetd
(from rev 238698, iputils/trunk/tftp.xinetd)
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 238698, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/iputils.install
(from rev 238698, iputils/trunk/iputils.install)
  iputils/repos/testing-x86_64/tftp.xinetd
(from rev 238698, iputils/trunk/tftp.xinetd)

+
 testing-i686/PKGBUILD  |   62 +++
 testing-i686/iputils.install   |   10 ++
 testing-i686/tftp.xinetd   |   10 ++
 testing-x86_64/PKGBUILD|   62 +++
 testing-x86_64/iputils.install |   10 ++
 testing-x86_64/tftp.xinetd |   10 ++
 6 files changed, 164 insertions(+)

Copied: iputils/repos/testing-i686/PKGBUILD (from rev 238698, 
iputils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-08 13:50:30 UTC (rev 238699)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=fad11dc
+pkgver=20140519.${_rev}
+pkgrel=1
+pkgdesc=Network monitoring tools, including ping
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook2x' 'opensp' 'git')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=(git+https://github.com/iputils/iputils.git#commit=${_rev};
+tftp.xinetd)
+sha1sums=('SKIP'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd ${srcdir}/${pkgname}
+
+  make USE_GNUTLS=no CCOPTOPT=$CFLAGS
+
+  cd doc
+  for file in *.sgml; do
+xf=${file/.sgml/.xml}
+osx -xlower -xno-nl-in-tag $file  $xf || true
+sed -i s|refname\(.*\), \(.*\)/refname|refname\1/refname, 
refname\2/refname|g $xf
+docbook2man $xf
+  done
+}
+
+package() {
+  cd ${srcdir}/${pkgname}
+
+  install -dm755 ${pkgdir}/usr/bin
+
+  install -m755 arping clockdiff rarpd rdisc tftpd tracepath tracepath6 
${pkgdir}/usr/bin/
+
+  install -m755 ping{,6} ${pkgdir}/usr/bin/
+
+  install -dm755 ${pkgdir}/usr/share/man/man8
+  install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
+ ${pkgdir}/usr/share/man/man8/
+
+  cd ${pkgdir}/usr/share/man/man8
+  ln -sf ping.8.gz  ping6.8.gz
+  ln -sf tracepath.8.gz tracepath6.8.gz
+
+  # FS#24768
+  install -dm755 ${pkgdir}/etc/xinetd.d/
+  install -m644 ${srcdir}/tftp.xinetd ${pkgdir}/etc/xinetd.d/tftp
+}

Copied: iputils/repos/testing-i686/iputils.install (from rev 238698, 
iputils/trunk/iputils.install)
===
--- testing-i686/iputils.install(rev 0)
+++ testing-i686/iputils.install2015-05-08 13:50:30 UTC (rev 238699)
@@ -0,0 +1,10 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/ping  2/dev/null || chmod +s usr/bin/ping 
+  setcap cap_net_raw=ep usr/bin/ping6 2/dev/null || chmod +s usr/bin/ping6
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/testing-i686/tftp.xinetd (from rev 238698, 
iputils/trunk/tftp.xinetd)
===
--- testing-i686/tftp.xinetd(rev 0)
+++ testing-i686/tftp.xinetd2015-05-08 13:50:30 UTC (rev 238699)
@@ -0,0 +1,10 @@
+service tftp
+{
+   socket_type = dgram
+   protocol= udp
+   wait= yes
+   user= nobody
+   server  = /usr/sbin/tftpd
+   server_args = /var/tftpboot
+   disable = yes
+}

Copied: iputils/repos/testing-x86_64/PKGBUILD (from rev 238698, 
iputils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-05-08 13:50:30 UTC (rev 238699)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=fad11dc
+pkgver=20140519.${_rev}

[arch-commits] Commit in iputils/repos (8 files)

2013-08-13 Thread Tobias Powalowski
Date: Tuesday, August 13, 2013 @ 17:08:26
  Author: tpowa
Revision: 192532

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iputils/repos/testing-i686/
  iputils/repos/testing-i686/PKGBUILD
(from rev 192531, iputils/trunk/PKGBUILD)
  iputils/repos/testing-i686/iputils.install
(from rev 192531, iputils/trunk/iputils.install)
  iputils/repos/testing-i686/tftp.xinetd
(from rev 192531, iputils/trunk/tftp.xinetd)
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 192531, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/iputils.install
(from rev 192531, iputils/trunk/iputils.install)
  iputils/repos/testing-x86_64/tftp.xinetd
(from rev 192531, iputils/trunk/tftp.xinetd)

+
 testing-i686/PKGBUILD  |   60 +++
 testing-i686/iputils.install   |   10 ++
 testing-i686/tftp.xinetd   |   10 ++
 testing-x86_64/PKGBUILD|   60 +++
 testing-x86_64/iputils.install |   10 ++
 testing-x86_64/tftp.xinetd |   10 ++
 6 files changed, 160 insertions(+)

Copied: iputils/repos/testing-i686/PKGBUILD (from rev 192531, 
iputils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-08-13 15:08:26 UTC (rev 192532)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=iputils
+pkgver=20121221
+pkgrel=3
+pkgdesc=Network monitoring tools, including ping
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook2x' 'opensp')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=(http://www.skbuff.net/${pkgname}/${pkgname}-s${pkgver}.tar.bz2
+tftp.xinetd)
+sha1sums=('4d56d8c75d6a5d58f052e4056e975f01ebab9ba9'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd ${srcdir}/${pkgname}-s${pkgver}
+
+  make USE_GNUTLS=no CCOPTOPT=$CFLAGS
+
+  cd doc
+  for file in *.sgml; do
+xf=${file/.sgml/.xml}
+osx -xlower -xno-nl-in-tag $file  $xf || true
+sed -i s|refname\(.*\), \(.*\)/refname|refname\1/refname, 
refname\2/refname|g $xf
+docbook2man $xf
+  done
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-s${pkgver}
+
+  install -dm755 ${pkgdir}/usr/bin
+
+  install -m755 arping clockdiff rarpd rdisc tftpd tracepath tracepath6 
${pkgdir}/usr/bin/
+
+  install -m755 ping{,6} ${pkgdir}/usr/bin/
+
+  install -dm755 ${pkgdir}/usr/share/man/man8
+  install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
+ ${pkgdir}/usr/share/man/man8/
+
+  cd ${pkgdir}/usr/share/man/man8
+  ln -sf ping.8.gz  ping6.8.gz
+  ln -sf tracepath.8.gz tracepath6.8.gz
+
+  # FS#24768
+  install -dm755 ${pkgdir}/etc/xinetd.d/
+  install -m644 ${srcdir}/tftp.xinetd ${pkgdir}/etc/xinetd.d/tftp
+}

Copied: iputils/repos/testing-i686/iputils.install (from rev 192531, 
iputils/trunk/iputils.install)
===
--- testing-i686/iputils.install(rev 0)
+++ testing-i686/iputils.install2013-08-13 15:08:26 UTC (rev 192532)
@@ -0,0 +1,10 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/ping  2/dev/null || chmod +s usr/bin/ping 
+  setcap cap_net_raw=ep usr/bin/ping6 2/dev/null || chmod +s usr/bin/ping6
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/testing-i686/tftp.xinetd (from rev 192531, 
iputils/trunk/tftp.xinetd)
===
--- testing-i686/tftp.xinetd(rev 0)
+++ testing-i686/tftp.xinetd2013-08-13 15:08:26 UTC (rev 192532)
@@ -0,0 +1,10 @@
+service tftp
+{
+   socket_type = dgram
+   protocol= udp
+   wait= yes
+   user= nobody
+   server  = /usr/sbin/tftpd
+   server_args = /var/tftpboot
+   disable = yes
+}

Copied: iputils/repos/testing-x86_64/PKGBUILD (from rev 192531, 
iputils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-08-13 15:08:26 UTC (rev 192532)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=iputils
+pkgver=20121221
+pkgrel=3
+pkgdesc=Network monitoring tools, including ping
+arch=('i686' 'x86_64')

[arch-commits] Commit in iputils/repos (8 files)

2013-05-14 Thread Stéphane Gaudreault
Date: Tuesday, May 14, 2013 @ 12:53:03
  Author: stephane
Revision: 185469

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iputils/repos/testing-i686/
  iputils/repos/testing-i686/PKGBUILD
(from rev 185468, iputils/trunk/PKGBUILD)
  iputils/repos/testing-i686/iputils.install
(from rev 185468, iputils/trunk/iputils.install)
  iputils/repos/testing-i686/tftp.xinetd
(from rev 185468, iputils/trunk/tftp.xinetd)
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 185468, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/iputils.install
(from rev 185468, iputils/trunk/iputils.install)
  iputils/repos/testing-x86_64/tftp.xinetd
(from rev 185468, iputils/trunk/tftp.xinetd)

+
 testing-i686/PKGBUILD  |   60 +++
 testing-i686/iputils.install   |   10 ++
 testing-i686/tftp.xinetd   |   10 ++
 testing-x86_64/PKGBUILD|   60 +++
 testing-x86_64/iputils.install |   10 ++
 testing-x86_64/tftp.xinetd |   10 ++
 6 files changed, 160 insertions(+)

Copied: iputils/repos/testing-i686/PKGBUILD (from rev 185468, 
iputils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-14 10:53:03 UTC (rev 185469)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=iputils
+pkgver=20121221
+pkgrel=2
+pkgdesc=Network monitoring tools, including ping
+arch=('i686' 'x86_64')
+license=('GPL' 'BSD')
+url=http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook2x' 'opensp')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=(http://www.skbuff.net/${pkgname}/${pkgname}-s${pkgver}.tar.bz2
+tftp.xinetd)
+sha1sums=('4d56d8c75d6a5d58f052e4056e975f01ebab9ba9'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd ${srcdir}/${pkgname}-s${pkgver}
+
+  make USE_GNUTLS=no CCOPTOPT=$CFLAGS
+
+  cd doc
+  for file in *.sgml; do
+xf=${file/.sgml/.xml}
+osx -xlower -xno-nl-in-tag $file  $xf || true
+sed -i s|refname\(.*\), \(.*\)/refname|refname\1/refname, 
refname\2/refname|g $xf
+docbook2man $xf
+  done
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-s${pkgver}
+
+  install -dm755 ${pkgdir}/usr/bin
+
+  install -m755 arping clockdiff rarpd rdisc tftpd tracepath tracepath6 
${pkgdir}/usr/bin/
+
+  install -m755 ping{,6} ${pkgdir}/usr/bin/
+
+  install -dm755 ${pkgdir}/usr/share/man/man8
+  install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
+ ${pkgdir}/usr/share/man/man8/
+
+  cd ${pkgdir}/usr/share/man/man8
+  ln -sf ping.8.gz  ping6.8.gz
+  ln -sf tracepath.8.gz tracepath6.8.gz
+
+  # FS#24768
+  install -dm755 ${pkgdir}/etc/xinetd.d/
+  install -m644 ${srcdir}/tftp.xinetd ${pkgdir}/etc/xinetd.d/tftp
+}

Copied: iputils/repos/testing-i686/iputils.install (from rev 185468, 
iputils/trunk/iputils.install)
===
--- testing-i686/iputils.install(rev 0)
+++ testing-i686/iputils.install2013-05-14 10:53:03 UTC (rev 185469)
@@ -0,0 +1,10 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/ping  2/dev/null || chmod +s usr/bin/ping 
+  setcap cap_net_raw=ep usr/bin/ping6 2/dev/null || chmod +s usr/bin/ping6
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/testing-i686/tftp.xinetd (from rev 185468, 
iputils/trunk/tftp.xinetd)
===
--- testing-i686/tftp.xinetd(rev 0)
+++ testing-i686/tftp.xinetd2013-05-14 10:53:03 UTC (rev 185469)
@@ -0,0 +1,10 @@
+service tftp
+{
+   socket_type = dgram
+   protocol= udp
+   wait= yes
+   user= nobody
+   server  = /usr/sbin/tftpd
+   server_args = /var/tftpboot
+   disable = yes
+}

Copied: iputils/repos/testing-x86_64/PKGBUILD (from rev 185468, 
iputils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-14 10:53:03 UTC (rev 185469)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=iputils
+pkgver=20121221
+pkgrel=2
+pkgdesc=Network monitoring tools, including ping
+arch=('i686' 'x86_64')

[arch-commits] Commit in iputils/repos (8 files)

2013-01-08 Thread Stéphane Gaudreault
Date: Tuesday, January 8, 2013 @ 11:17:49
  Author: stephane
Revision: 174908

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iputils/repos/testing-i686/
  iputils/repos/testing-i686/PKGBUILD
(from rev 174907, iputils/trunk/PKGBUILD)
  iputils/repos/testing-i686/iputils.install
(from rev 174907, iputils/trunk/iputils.install)
  iputils/repos/testing-i686/tftp.xinetd
(from rev 174907, iputils/trunk/tftp.xinetd)
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 174907, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/iputils.install
(from rev 174907, iputils/trunk/iputils.install)
  iputils/repos/testing-x86_64/tftp.xinetd
(from rev 174907, iputils/trunk/tftp.xinetd)

+
 testing-i686/PKGBUILD  |   62 +++
 testing-i686/iputils.install   |   10 ++
 testing-i686/tftp.xinetd   |   10 ++
 testing-x86_64/PKGBUILD|   62 +++
 testing-x86_64/iputils.install |   10 ++
 testing-x86_64/tftp.xinetd |   10 ++
 6 files changed, 164 insertions(+)

Copied: iputils/repos/testing-i686/PKGBUILD (from rev 174907, 
iputils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-01-08 16:17:49 UTC (rev 174908)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=iputils
+pkgver=20121221
+pkgrel=1
+pkgdesc=Network monitoring tools, including ping
+arch=('i686' 'x86_64')
+license=('GPL' 'BSD')
+url=http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook2x' 'opensp')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=(http://www.skbuff.net/${pkgname}/${pkgname}-s${pkgver}.tar.bz2
+tftp.xinetd)
+sha1sums=('4d56d8c75d6a5d58f052e4056e975f01ebab9ba9'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd ${srcdir}/${pkgname}-s${pkgver}
+
+  make USE_GNUTLS=no CCOPTOPT=$CFLAGS
+
+  cd doc
+  for file in *.sgml; do
+xf=${file/.sgml/.xml}
+osx -xlower -xno-nl-in-tag $file  $xf || true
+sed -i s|refname\(.*\), \(.*\)/refname|refname\1/refname, 
refname\2/refname|g $xf
+docbook2man $xf
+  done
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-s${pkgver}
+
+  install -dm755 ${pkgdir}/usr/{bin,sbin} ${pkgdir}/bin
+
+  install -m755 arping clockdiff rarpd rdisc tftpd tracepath tracepath6 \
+${pkgdir}/usr/sbin/
+
+  install -m755 ping{,6} ${pkgdir}/usr/bin/
+   ln -sf /usr/bin/ping{,6}  ${pkgdir}/bin/
+
+   install -dm755 ${pkgdir}/usr/share/man/man8
+   install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
+ ${pkgdir}/usr/share/man/man8/
+
+  cd ${pkgdir}/usr/share/man/man8
+  ln -sf ping.8.gz  ping6.8.gz
+  ln -sf tracepath.8.gz tracepath6.8.gz
+
+  # FS#24768
+  install -dm755 ${pkgdir}/etc/xinetd.d/
+  install -m644 ${srcdir}/tftp.xinetd ${pkgdir}/etc/xinetd.d/tftp
+}

Copied: iputils/repos/testing-i686/iputils.install (from rev 174907, 
iputils/trunk/iputils.install)
===
--- testing-i686/iputils.install(rev 0)
+++ testing-i686/iputils.install2013-01-08 16:17:49 UTC (rev 174908)
@@ -0,0 +1,10 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/ping  2/dev/null || chmod +s usr/bin/ping 
+  setcap cap_net_raw=ep usr/bin/ping6 2/dev/null || chmod +s usr/bin/ping6
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/testing-i686/tftp.xinetd (from rev 174907, 
iputils/trunk/tftp.xinetd)
===
--- testing-i686/tftp.xinetd(rev 0)
+++ testing-i686/tftp.xinetd2013-01-08 16:17:49 UTC (rev 174908)
@@ -0,0 +1,10 @@
+service tftp
+{
+   socket_type = dgram
+   protocol= udp
+   wait= yes
+   user= nobody
+   server  = /usr/sbin/tftpd
+   server_args = /var/tftpboot
+   disable = yes
+}

Copied: iputils/repos/testing-x86_64/PKGBUILD (from rev 174907, 
iputils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-01-08 16:17:49 UTC (rev 174908)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=iputils
+pkgver=20121221
+pkgrel=1

[arch-commits] Commit in iputils/repos (8 files)

2012-11-26 Thread Stéphane Gaudreault
Date: Monday, November 26, 2012 @ 11:26:15
  Author: stephane
Revision: 172031

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iputils/repos/testing-i686/
  iputils/repos/testing-i686/PKGBUILD
(from rev 172030, iputils/trunk/PKGBUILD)
  iputils/repos/testing-i686/iputils.install
(from rev 172030, iputils/trunk/iputils.install)
  iputils/repos/testing-i686/tftp.xinetd
(from rev 172030, iputils/trunk/tftp.xinetd)
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 172030, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/iputils.install
(from rev 172030, iputils/trunk/iputils.install)
  iputils/repos/testing-x86_64/tftp.xinetd
(from rev 172030, iputils/trunk/tftp.xinetd)

+
 testing-i686/PKGBUILD  |   65 +++
 testing-i686/iputils.install   |   10 ++
 testing-i686/tftp.xinetd   |   10 ++
 testing-x86_64/PKGBUILD|   65 +++
 testing-x86_64/iputils.install |   10 ++
 testing-x86_64/tftp.xinetd |   10 ++
 6 files changed, 170 insertions(+)

Copied: iputils/repos/testing-i686/PKGBUILD (from rev 172030, 
iputils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-11-26 16:26:15 UTC (rev 172031)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=iputils
+pkgver=20121126
+pkgrel=1
+pkgdesc=Network monitoring tools, including ping
+arch=('i686' 'x86_64')
+license=('GPL' 'BSD')
+url=http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook2x' 'opensp')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=(http://www.skbuff.net/${pkgname}/${pkgname}-s${pkgver}.tar.bz2
+tftp.xinetd)
+sha1sums=('3e46391f53381080d5e1961f1b2b0ccd9a158ab2'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd ${srcdir}/${pkgname}-s${pkgver}
+
+  # Use our CFLAGS
+  sed -i -e /^CCOPT=/s|-O2|${CFLAGS}| Makefile
+
+  make
+
+  cd doc
+  for file in *.sgml; do
+xf=${file/.sgml/.xml}
+osx -xlower -xno-nl-in-tag $file  $xf || true
+sed -i s|refname\(.*\), \(.*\)/refname|refname\1/refname, 
refname\2/refname|g $xf
+docbook2man $xf
+  done
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-s${pkgver}
+
+  install -dm755 ${pkgdir}/usr/{bin,sbin} ${pkgdir}/bin
+
+  install -m755 arping clockdiff rarpd rdisc tftpd tracepath tracepath6 \
+${pkgdir}/usr/sbin/
+
+  install -m755 ping{,6} ${pkgdir}/usr/bin/
+   ln -sf /usr/bin/ping{,6}  ${pkgdir}/bin/
+
+   install -dm755 ${pkgdir}/usr/share/man/man8
+   install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
+ ${pkgdir}/usr/share/man/man8/
+
+  cd ${pkgdir}/usr/share/man/man8
+  ln -sf ping.8.gz  ping6.8.gz
+  ln -sf tracepath.8.gz tracepath6.8.gz
+
+  # FS#24768
+  install -dm755 ${pkgdir}/etc/xinetd.d/
+  install -m644 ${srcdir}/tftp.xinetd ${pkgdir}/etc/xinetd.d/tftp
+}

Copied: iputils/repos/testing-i686/iputils.install (from rev 172030, 
iputils/trunk/iputils.install)
===
--- testing-i686/iputils.install(rev 0)
+++ testing-i686/iputils.install2012-11-26 16:26:15 UTC (rev 172031)
@@ -0,0 +1,10 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/ping  2/dev/null || chmod +s usr/bin/ping 
+  setcap cap_net_raw=ep usr/bin/ping6 2/dev/null || chmod +s usr/bin/ping6
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/testing-i686/tftp.xinetd (from rev 172030, 
iputils/trunk/tftp.xinetd)
===
--- testing-i686/tftp.xinetd(rev 0)
+++ testing-i686/tftp.xinetd2012-11-26 16:26:15 UTC (rev 172031)
@@ -0,0 +1,10 @@
+service tftp
+{
+   socket_type = dgram
+   protocol= udp
+   wait= yes
+   user= nobody
+   server  = /usr/sbin/tftpd
+   server_args = /var/tftpboot
+   disable = yes
+}

Copied: iputils/repos/testing-x86_64/PKGBUILD (from rev 172030, 
iputils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-11-26 16:26:15 UTC (rev 172031)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+

[arch-commits] Commit in iputils/repos (8 files)

2012-11-06 Thread Stéphane Gaudreault
Date: Tuesday, November 6, 2012 @ 09:23:26
  Author: stephane
Revision: 170365

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iputils/repos/testing-i686/
  iputils/repos/testing-i686/PKGBUILD
(from rev 170364, iputils/trunk/PKGBUILD)
  iputils/repos/testing-i686/iputils.install
(from rev 170364, iputils/trunk/iputils.install)
  iputils/repos/testing-i686/tftp.xinetd
(from rev 170364, iputils/trunk/tftp.xinetd)
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 170364, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/iputils.install
(from rev 170364, iputils/trunk/iputils.install)
  iputils/repos/testing-x86_64/tftp.xinetd
(from rev 170364, iputils/trunk/tftp.xinetd)

+
 testing-i686/PKGBUILD  |   65 +++
 testing-i686/iputils.install   |   10 ++
 testing-i686/tftp.xinetd   |   10 ++
 testing-x86_64/PKGBUILD|   65 +++
 testing-x86_64/iputils.install |   10 ++
 testing-x86_64/tftp.xinetd |   10 ++
 6 files changed, 170 insertions(+)

Copied: iputils/repos/testing-i686/PKGBUILD (from rev 170364, 
iputils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-11-06 14:23:26 UTC (rev 170365)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=iputils
+pkgver=20121106
+pkgrel=1
+pkgdesc=IP Configuration Utilities (and Ping)
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.linuxfoundation.org/en/Net:Iputils;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook2x' 'opensp')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=(http://www.skbuff.net/${pkgname}/${pkgname}-s${pkgver}.tar.bz2
+tftp.xinetd)
+sha1sums=('9570832f3945bb5f0e89f5837facc8fdca3b7769'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd ${srcdir}/${pkgname}-s${pkgver}
+
+  # Use our CFLAGS
+  sed -i -e /^CCOPT=/s|-O2|${CFLAGS}| Makefile
+
+  make
+
+  cd doc
+  for file in *.sgml; do
+xf=${file/.sgml/.xml}
+osx -xlower -xno-nl-in-tag $file  $xf || true
+sed -i s|refname\(.*\), \(.*\)/refname|refname\1/refname, 
refname\2/refname|g $xf
+docbook2man $xf
+  done
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-s${pkgver}
+
+  install -dm755 ${pkgdir}/usr/{bin,sbin} ${pkgdir}/bin
+
+  install -m755 arping clockdiff rarpd rdisc tftpd tracepath tracepath6 \
+${pkgdir}/usr/sbin/
+
+  install -m755 ping{,6} ${pkgdir}/usr/bin/
+   ln -sf /usr/bin/ping{,6}  ${pkgdir}/bin/
+
+   install -dm755 ${pkgdir}/usr/share/man/man8
+   install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
+ ${pkgdir}/usr/share/man/man8/
+
+  cd ${pkgdir}/usr/share/man/man8
+  ln -sf ping.8.gz  ping6.8.gz
+  ln -sf tracepath.8.gz tracepath6.8.gz
+
+  # FS#24768
+  install -dm755 ${pkgdir}/etc/xinetd.d/
+  install -m644 ${srcdir}/tftp.xinetd ${pkgdir}/etc/xinetd.d/tftp
+}

Copied: iputils/repos/testing-i686/iputils.install (from rev 170364, 
iputils/trunk/iputils.install)
===
--- testing-i686/iputils.install(rev 0)
+++ testing-i686/iputils.install2012-11-06 14:23:26 UTC (rev 170365)
@@ -0,0 +1,10 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/ping  2/dev/null || chmod +s usr/bin/ping 
+  setcap cap_net_raw=ep usr/bin/ping6 2/dev/null || chmod +s usr/bin/ping6
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/testing-i686/tftp.xinetd (from rev 170364, 
iputils/trunk/tftp.xinetd)
===
--- testing-i686/tftp.xinetd(rev 0)
+++ testing-i686/tftp.xinetd2012-11-06 14:23:26 UTC (rev 170365)
@@ -0,0 +1,10 @@
+service tftp
+{
+   socket_type = dgram
+   protocol= udp
+   wait= yes
+   user= nobody
+   server  = /usr/sbin/tftpd
+   server_args = /var/tftpboot
+   disable = yes
+}

Copied: iputils/repos/testing-x86_64/PKGBUILD (from rev 170364, 
iputils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-11-06 14:23:26 UTC (rev 170365)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org

[arch-commits] Commit in iputils/repos (8 files)

2012-06-18 Thread Stéphane Gaudreault
Date: Monday, June 18, 2012 @ 16:29:20
  Author: stephane
Revision: 162019

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iputils/repos/testing-i686/
  iputils/repos/testing-i686/PKGBUILD
(from rev 162018, iputils/trunk/PKGBUILD)
  iputils/repos/testing-i686/iputils.install
(from rev 162018, iputils/trunk/iputils.install)
  iputils/repos/testing-i686/tftp.xinetd
(from rev 162018, iputils/trunk/tftp.xinetd)
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 162018, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/iputils.install
(from rev 162018, iputils/trunk/iputils.install)
  iputils/repos/testing-x86_64/tftp.xinetd
(from rev 162018, iputils/trunk/tftp.xinetd)

+
 testing-i686/PKGBUILD  |   66 +++
 testing-i686/iputils.install   |   11 ++
 testing-i686/tftp.xinetd   |   10 +
 testing-x86_64/PKGBUILD|   66 +++
 testing-x86_64/iputils.install |   11 ++
 testing-x86_64/tftp.xinetd |   10 +
 6 files changed, 174 insertions(+)

Copied: iputils/repos/testing-i686/PKGBUILD (from rev 162018, 
iputils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-06-18 20:29:20 UTC (rev 162019)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=iputils
+pkgver=20101006
+pkgrel=3
+pkgdesc=IP Configuration Utilities (and Ping)
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.linuxfoundation.org/en/Net:Iputils;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook2x' 'opensp')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=(http://www.skbuff.net/${pkgname}/${pkgname}-s${pkgver}.tar.bz2 
tftp.xinetd)
+sha1sums=('a08cc5423a7bf940205f2353fe3d129cd39ff242'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd ${srcdir}/${pkgname}-s${pkgver}
+
+  # Use our CFLAGS
+  sed -i -e /^CCOPT=/s|-O2|${CFLAGS}| Makefile
+
+  make
+
+  cd doc
+  for file in *.sgml; do
+xf=${file/.sgml/.xml}
+osx -xlower -xno-nl-in-tag $file  $xf || true
+sed -i s|refname\(.*\), \(.*\)/refname|refname\1/refname, 
refname\2/refname|g $xf
+docbook2man $xf
+  done
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-s${pkgver}
+
+  install -dm755 ${pkgdir}/usr/{bin,sbin} ${pkgdir}/bin
+
+  install -m755 arping clockdiff rarpd rdisc tftpd tracepath tracepath6 \
+${pkgdir}/usr/sbin/
+
+  install -m755 ping{,6} ${pkgdir}/usr/bin/
+   ln -sf /usr/bin/ping{,6}  ${pkgdir}/bin/
+
+   install -dm755 ${pkgdir}/usr/share/man/man8
+   install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
+ ${pkgdir}/usr/share/man/man8/
+
+  cd ${pkgdir}/usr/share/man/man8
+  ln -sf ping.8.gz  ping6.8.gz
+  ln -sf tracepath.8.gz tracepath6.8.gz
+
+  # FS#24768
+  install -dm755 ${pkgdir}/etc/xinetd.d/
+  install -m644 ${srcdir}/tftp.xinetd ${pkgdir}/etc/xinetd.d/tftp
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/testing-i686/iputils.install (from rev 162018, 
iputils/trunk/iputils.install)
===
--- testing-i686/iputils.install(rev 0)
+++ testing-i686/iputils.install2012-06-18 20:29:20 UTC (rev 162019)
@@ -0,0 +1,11 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/ping 
+  setcap cap_net_raw=ep usr/bin/ping6 
+  echo   Traceroute is now provided by core/traceroute
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/testing-i686/tftp.xinetd (from rev 162018, 
iputils/trunk/tftp.xinetd)
===
--- testing-i686/tftp.xinetd(rev 0)
+++ testing-i686/tftp.xinetd2012-06-18 20:29:20 UTC (rev 162019)
@@ -0,0 +1,10 @@
+service tftp
+{
+   socket_type = dgram
+   protocol= udp
+   wait= yes
+   user= nobody
+   server  = /usr/sbin/tftpd
+   server_args = /var/tftpboot
+   disable = yes
+}

Copied: iputils/repos/testing-x86_64/PKGBUILD (from rev 162018, 
iputils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-06-18 20:29:20 UTC (rev 162019)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+

[arch-commits] Commit in iputils/repos (8 files)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:08:42
  Author: tpowa
Revision: 141976

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iputils/repos/testing-i686/
  iputils/repos/testing-i686/PKGBUILD
(from rev 141975, iputils/trunk/PKGBUILD)
  iputils/repos/testing-i686/iputils-s20101006-manpages.patch
(from rev 141975, iputils/trunk/iputils-s20101006-manpages.patch)
  iputils/repos/testing-i686/permission-fix.patch
(from rev 141975, iputils/trunk/permission-fix.patch)
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 141975, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/iputils-s20101006-manpages.patch
(from rev 141975, iputils/trunk/iputils-s20101006-manpages.patch)
  iputils/repos/testing-x86_64/permission-fix.patch
(from rev 141975, iputils/trunk/permission-fix.patch)

-+
 testing-i686/PKGBUILD   |   65 +
 testing-i686/iputils-s20101006-manpages.patch   | 1044 ++
 testing-i686/permission-fix.patch   |   15 
 testing-x86_64/PKGBUILD |   65 +
 testing-x86_64/iputils-s20101006-manpages.patch | 1044 ++
 testing-x86_64/permission-fix.patch |   15 
 6 files changed, 2248 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 141975:141976 to see the changes.