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

2019-01-23 Thread Sébastien Luttringer via arch-commits
Date: Wednesday, January 23, 2019 @ 14:38:56
  Author: seblu
Revision: 427248

archrelease: copy trunk to community-x86_64

Added:
  iperf/repos/community-x86_64/PKGBUILD
(from rev 427247, iperf/trunk/PKGBUILD)
  iperf/repos/community-x86_64/iperf-tcp.service
(from rev 427247, iperf/trunk/iperf-tcp.service)
  iperf/repos/community-x86_64/iperf-udp.service
(from rev 427247, iperf/trunk/iperf-udp.service)
  iperf/repos/community-x86_64/iperf.install
(from rev 427247, iperf/trunk/iperf.install)
Deleted:
  iperf/repos/community-x86_64/PKGBUILD
  iperf/repos/community-x86_64/iperf-tcp.service
  iperf/repos/community-x86_64/iperf-udp.service
  iperf/repos/community-x86_64/iperf.install

---+
 PKGBUILD  |  107 ++--
 iperf-tcp.service |   18 
 iperf-udp.service |   18 
 iperf.install |   22 +-
 4 files changed, 83 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-23 14:38:42 UTC (rev 427247)
+++ PKGBUILD2019-01-23 14:38:56 UTC (rev 427248)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer 
-# Contributor: Giovanni Scafora 
-# Contributor: Dale Blount 
-
-pkgname=iperf
-pkgver=2.0.12
-pkgrel=1
-pkgdesc='A tool to measure maximum TCP bandwidth'
-arch=('x86_64')
-license=('custom')
-url='https://sourceforge.net/projects/iperf2/'
-depends=('gcc-libs')
-install=iperf.install
-source=("https://downloads.sourceforge.net/iperf2/iperf-$pkgver.tar.gz;
-'iperf-tcp.service'
-'iperf-udp.service')
-md5sums=('e501e26b9289097086ce0c44a42b10bc'
- '1d8660b540aa0db2e627d3d400cb8de4'
- 'a27a8d27b1585bc999a04a2f082e2726')
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --enable-ipv6 \
-  --enable-multicast \
-  --enable-threads
-  make
-}
-
-package() {
-  pushd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/iperf/LICENSE"
-  popd
-  # systemd
-  install -Dm644 iperf-tcp.service 
"$pkgdir/usr/lib/systemd/system/iperf-tcp.service"
-  install -Dm644 iperf-udp.service 
"$pkgdir/usr/lib/systemd/system/iperf-udp.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: iperf/repos/community-x86_64/PKGBUILD (from rev 427247, 
iperf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-23 14:38:56 UTC (rev 427248)
@@ -0,0 +1,54 @@
+# Maintainer: Sébastien Luttringer 
+# Contributor: Giovanni Scafora 
+# Contributor: Dale Blount 
+
+pkgname=iperf
+pkgver=2.0.13
+pkgrel=1
+pkgdesc='A tool to measure maximum TCP bandwidth'
+arch=('x86_64')
+license=('custom')
+url='https://sourceforge.net/projects/iperf2/'
+depends=('gcc-libs')
+install=iperf.install
+source=("https://downloads.sourceforge.net/iperf2/iperf-$pkgver.tar.gz;
+'iperf-tcp.service'
+'iperf-udp.service')
+md5sums=('31ea1c6d5cbf80b16ff3abe4288dad5e'
+ '1d8660b540aa0db2e627d3d400cb8de4'
+ 'a27a8d27b1585bc999a04a2f082e2726')
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+src="${src%%::*}"
+src="${src##*/}"
+[[ $src = *.patch ]] || continue
+msg2 "Applying patch $src..."
+patch -Np1 < "../$src"
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --enable-ipv6 \
+  --enable-multicast \
+  --enable-threads \
+  --enable-fastsampling
+  make
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/iperf/LICENSE"
+  popd
+  # systemd
+  install -Dm644 iperf-tcp.service 
"$pkgdir/usr/lib/systemd/system/iperf-tcp.service"
+  install -Dm644 iperf-udp.service 
"$pkgdir/usr/lib/systemd/system/iperf-udp.service"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: iperf-tcp.service
===
--- iperf-tcp.service   2019-01-23 14:38:42 UTC (rev 427247)
+++ iperf-tcp.service   2019-01-23 14:38:56 UTC (rev 427248)
@@ -1,9 +0,0 @@
-[Unit]
-Description=Iperf TCP Server
-After=network.target
-
-[Service]
-ExecStart=/usr/bin/iperf -s -V
-
-[Install]
-WantedBy=multi-user.target

Copied: iperf/repos/community-x86_64/iperf-tcp.service (from rev 427247, 
iperf/trunk/iperf-tcp.service)
===
--- iperf-tcp.service

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

2018-08-19 Thread Sébastien Luttringer via arch-commits
Date: Sunday, August 19, 2018 @ 19:01:07
  Author: seblu
Revision: 372803

archrelease: copy trunk to community-x86_64

Added:
  iperf/repos/community-x86_64/PKGBUILD
(from rev 372802, iperf/trunk/PKGBUILD)
  iperf/repos/community-x86_64/iperf-tcp.service
(from rev 372802, iperf/trunk/iperf-tcp.service)
  iperf/repos/community-x86_64/iperf-udp.service
(from rev 372802, iperf/trunk/iperf-udp.service)
  iperf/repos/community-x86_64/iperf.install
(from rev 372802, iperf/trunk/iperf.install)
Deleted:
  iperf/repos/community-x86_64/PKGBUILD
  iperf/repos/community-x86_64/iperf-tcp.service
  iperf/repos/community-x86_64/iperf-udp.service
  iperf/repos/community-x86_64/iperf.install

---+
 PKGBUILD  |  106 ++--
 iperf-tcp.service |   18 
 iperf-udp.service |   18 
 iperf.install |   22 +-
 4 files changed, 82 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-19 19:01:00 UTC (rev 372802)
+++ PKGBUILD2018-08-19 19:01:07 UTC (rev 372803)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer 
-# Contributor: Giovanni Scafora 
-# Contributor: Dale Blount 
-
-pkgname=iperf
-pkgver=2.0.11
-pkgrel=1
-pkgdesc='A tool to measure maximum TCP bandwidth'
-arch=('x86_64')
-license=('custom')
-url='https://sourceforge.net/projects/iperf2/'
-depends=('gcc-libs')
-install=iperf.install
-source=("https://downloads.sourceforge.net/iperf2/iperf-$pkgver.tar.gz;
-'iperf-tcp.service'
-'iperf-udp.service')
-md5sums=('c63766d275b4537f419db096b9dfe4dc'
- '1d8660b540aa0db2e627d3d400cb8de4'
- 'a27a8d27b1585bc999a04a2f082e2726')
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --enable-ipv6 \
-  --enable-multicast \
-  --enable-threads
-  make
-}
-
-package() {
-  pushd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/iperf/LICENSE"
-  popd
-  # systemd
-  install -Dm644 iperf-tcp.service 
"$pkgdir/usr/lib/systemd/system/iperf-tcp.service"
-  install -Dm644 iperf-udp.service 
"$pkgdir/usr/lib/systemd/system/iperf-udp.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: iperf/repos/community-x86_64/PKGBUILD (from rev 372802, 
iperf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-19 19:01:07 UTC (rev 372803)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+# Contributor: Giovanni Scafora 
+# Contributor: Dale Blount 
+
+pkgname=iperf
+pkgver=2.0.12
+pkgrel=1
+pkgdesc='A tool to measure maximum TCP bandwidth'
+arch=('x86_64')
+license=('custom')
+url='https://sourceforge.net/projects/iperf2/'
+depends=('gcc-libs')
+install=iperf.install
+source=("https://downloads.sourceforge.net/iperf2/iperf-$pkgver.tar.gz;
+'iperf-tcp.service'
+'iperf-udp.service')
+md5sums=('e501e26b9289097086ce0c44a42b10bc'
+ '1d8660b540aa0db2e627d3d400cb8de4'
+ 'a27a8d27b1585bc999a04a2f082e2726')
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --enable-ipv6 \
+  --enable-multicast \
+  --enable-threads
+  make
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/iperf/LICENSE"
+  popd
+  # systemd
+  install -Dm644 iperf-tcp.service 
"$pkgdir/usr/lib/systemd/system/iperf-tcp.service"
+  install -Dm644 iperf-udp.service 
"$pkgdir/usr/lib/systemd/system/iperf-udp.service"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: iperf-tcp.service
===
--- iperf-tcp.service   2018-08-19 19:01:00 UTC (rev 372802)
+++ iperf-tcp.service   2018-08-19 19:01:07 UTC (rev 372803)
@@ -1,9 +0,0 @@
-[Unit]
-Description=Iperf TCP Server
-After=network.target
-
-[Service]
-ExecStart=/usr/bin/iperf -s -V
-
-[Install]
-WantedBy=multi-user.target

Copied: iperf/repos/community-x86_64/iperf-tcp.service (from rev 372802, 
iperf/trunk/iperf-tcp.service)
===
--- iperf-tcp.service   (rev 0)

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

2018-05-26 Thread Sébastien Luttringer via arch-commits
Date: Saturday, May 26, 2018 @ 23:31:15
  Author: seblu
Revision: 331303

archrelease: copy trunk to community-x86_64

Added:
  iperf/repos/community-x86_64/PKGBUILD
(from rev 331302, iperf/trunk/PKGBUILD)
  iperf/repos/community-x86_64/iperf-tcp.service
(from rev 331302, iperf/trunk/iperf-tcp.service)
  iperf/repos/community-x86_64/iperf-udp.service
(from rev 331302, iperf/trunk/iperf-udp.service)
  iperf/repos/community-x86_64/iperf.install
(from rev 331302, iperf/trunk/iperf.install)
Deleted:
  iperf/repos/community-x86_64/PKGBUILD
  iperf/repos/community-x86_64/iperf-tcp.service
  iperf/repos/community-x86_64/iperf-udp.service
  iperf/repos/community-x86_64/iperf.install

---+
 PKGBUILD  |  106 ++--
 iperf-tcp.service |   18 
 iperf-udp.service |   18 
 iperf.install |   22 +-
 4 files changed, 82 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-05-26 23:30:11 UTC (rev 331302)
+++ PKGBUILD2018-05-26 23:31:15 UTC (rev 331303)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer 
-# Contributor: Giovanni Scafora 
-# Contributor: Dale Blount 
-
-pkgname=iperf
-pkgver=2.0.10
-pkgrel=1
-pkgdesc='A tool to measure maximum TCP bandwidth'
-arch=('i686' 'x86_64')
-license=('custom')
-url='https://sourceforge.net/projects/iperf2/'
-depends=('gcc-libs')
-install=iperf.install
-source=("http://downloads.sourceforge.net/iperf2/iperf-$pkgver.tar.gz;
-'iperf-tcp.service'
-'iperf-udp.service')
-md5sums=('097cf0754bc1afa165975c06a91e6906'
- '1d8660b540aa0db2e627d3d400cb8de4'
- 'a27a8d27b1585bc999a04a2f082e2726')
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --enable-ipv6 \
-  --enable-multicast \
-  --enable-threads
-  make
-}
-
-package() {
-  pushd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/iperf/LICENSE"
-  popd
-  # systemd
-  install -Dm644 iperf-tcp.service 
"$pkgdir/usr/lib/systemd/system/iperf-tcp.service"
-  install -Dm644 iperf-udp.service 
"$pkgdir/usr/lib/systemd/system/iperf-udp.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: iperf/repos/community-x86_64/PKGBUILD (from rev 331302, 
iperf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-05-26 23:31:15 UTC (rev 331303)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+# Contributor: Giovanni Scafora 
+# Contributor: Dale Blount 
+
+pkgname=iperf
+pkgver=2.0.11
+pkgrel=1
+pkgdesc='A tool to measure maximum TCP bandwidth'
+arch=('x86_64')
+license=('custom')
+url='https://sourceforge.net/projects/iperf2/'
+depends=('gcc-libs')
+install=iperf.install
+source=("https://downloads.sourceforge.net/iperf2/iperf-$pkgver.tar.gz;
+'iperf-tcp.service'
+'iperf-udp.service')
+md5sums=('c63766d275b4537f419db096b9dfe4dc'
+ '1d8660b540aa0db2e627d3d400cb8de4'
+ 'a27a8d27b1585bc999a04a2f082e2726')
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --enable-ipv6 \
+  --enable-multicast \
+  --enable-threads
+  make
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/iperf/LICENSE"
+  popd
+  # systemd
+  install -Dm644 iperf-tcp.service 
"$pkgdir/usr/lib/systemd/system/iperf-tcp.service"
+  install -Dm644 iperf-udp.service 
"$pkgdir/usr/lib/systemd/system/iperf-udp.service"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: iperf-tcp.service
===
--- iperf-tcp.service   2018-05-26 23:30:11 UTC (rev 331302)
+++ iperf-tcp.service   2018-05-26 23:31:15 UTC (rev 331303)
@@ -1,9 +0,0 @@
-[Unit]
-Description=Iperf TCP Server
-After=network.target
-
-[Service]
-ExecStart=/usr/bin/iperf -s -V
-
-[Install]
-WantedBy=multi-user.target

Copied: iperf/repos/community-x86_64/iperf-tcp.service (from rev 331302,