Date: Sunday, March 18, 2012 @ 09:40:58
Author: giovanni
Revision: 153712
archrelease: copy trunk to extra-i686, extra-x86_64
Added:
iperf/repos/extra-i686/PKGBUILD
(from rev 153711, iperf/trunk/PKGBUILD)
iperf/repos/extra-i686/client.cpp.patch
(from rev 153711, iperf/trunk/client.cpp.patch)
iperf/repos/extra-x86_64/PKGBUILD
(from rev 153711, iperf/trunk/PKGBUILD)
iperf/repos/extra-x86_64/client.cpp.patch
(from rev 153711, iperf/trunk/client.cpp.patch)
Deleted:
iperf/repos/extra-i686/PKGBUILD
iperf/repos/extra-i686/client.cpp.patch
iperf/repos/extra-i686/license
iperf/repos/extra-x86_64/PKGBUILD
iperf/repos/extra-x86_64/client.cpp.patch
iperf/repos/extra-x86_64/license
-------------------------------+
extra-i686/PKGBUILD | 70 ++++++++++++++++++++--------------------
extra-i686/client.cpp.patch | 34 +++++++++----------
extra-i686/license | 25 --------------
extra-x86_64/PKGBUILD | 70 ++++++++++++++++++++--------------------
extra-x86_64/client.cpp.patch | 34 +++++++++----------
extra-x86_64/license | 25 --------------
6 files changed, 104 insertions(+), 154 deletions(-)
Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2012-03-18 13:40:35 UTC (rev 153711)
+++ extra-i686/PKGBUILD 2012-03-18 13:40:58 UTC (rev 153712)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <[email protected]>
-# Contributor: Dale Blount <[email protected]>
-
-pkgname=iperf
-pkgver=2.0.5
-pkgrel=3
-pkgdesc="A tool to measure maximum TCP bandwidth"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://iperf.sourceforge.net"
-depends=('gcc-libs')
-source=("http://downloads.sourceforge.net/iperf/iperf-2.0.5.tar.gz"
- 'license'
- 'client.cpp.patch')
-md5sums=('44b5536b67719f4250faed632a3cd016'
- 'a2879f900b76668b28a1cc922909db18'
- '82ce63c87cc8bb2f0f94069857ac14a9')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- # FS#25159
- patch -Np1 -i ${srcdir}/client.cpp.patch
-
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}" install
- install -Dm644 ${srcdir}/license "${pkgdir}/usr/share/licenses/iperf/LICENSE"
-}
Copied: iperf/repos/extra-i686/PKGBUILD (from rev 153711, iperf/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-18 13:40:58 UTC (rev 153712)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Giovanni Scafora <[email protected]>
+# Contributor: Dale Blount <[email protected]>
+
+pkgname=iperf
+pkgver=2.0.5
+pkgrel=4
+pkgdesc="A tool to measure maximum TCP bandwidth"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://iperf.sourceforge.net"
+depends=('gcc-libs')
+source=("http://downloads.sourceforge.net/iperf/iperf-2.0.5.tar.gz"
+ 'client.cpp.patch')
+md5sums=('44b5536b67719f4250faed632a3cd016'
+ '82ce63c87cc8bb2f0f94069857ac14a9')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ # FS#25159
+ patch -Np1 -i ${srcdir}/client.cpp.patch
+
+ ./configure --prefix=/usr \
+ --enable-ipv6 \
+ --enable-threads
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+ install -Dm644 COPYING "${pkgdir}/usr/share/licenses/iperf/LICENSE"
+}
Deleted: extra-i686/client.cpp.patch
===================================================================
--- extra-i686/client.cpp.patch 2012-03-18 13:40:35 UTC (rev 153711)
+++ extra-i686/client.cpp.patch 2012-03-18 13:40:58 UTC (rev 153712)
@@ -1,17 +0,0 @@
---- a/src/Client.cpp 2010-04-01 22:23:17.000000000 +0200
-+++ b/src/Client.cpp 2011-07-19 11:03:42.000000000 +0200
-@@ -212,10 +212,10 @@
- char* readAt = mBuf;
-
- #if HAVE_THREAD
-- if ( !isUDP( mSettings ) ) {
-- RunTCP();
-- return;
-- }
-+// if ( !isUDP( mSettings ) ) {
-+// RunTCP();
-+// return;
-+// }
- #endif
-
- // Indicates if the stream is readable
Copied: iperf/repos/extra-i686/client.cpp.patch (from rev 153711,
iperf/trunk/client.cpp.patch)
===================================================================
--- extra-i686/client.cpp.patch (rev 0)
+++ extra-i686/client.cpp.patch 2012-03-18 13:40:58 UTC (rev 153712)
@@ -0,0 +1,17 @@
+--- a/src/Client.cpp 2010-04-01 22:23:17.000000000 +0200
++++ b/src/Client.cpp 2011-07-19 11:03:42.000000000 +0200
+@@ -212,10 +212,10 @@
+ char* readAt = mBuf;
+
+ #if HAVE_THREAD
+- if ( !isUDP( mSettings ) ) {
+- RunTCP();
+- return;
+- }
++// if ( !isUDP( mSettings ) ) {
++// RunTCP();
++// return;
++// }
+ #endif
+
+ // Indicates if the stream is readable
Deleted: extra-i686/license
===================================================================
--- extra-i686/license 2012-03-18 13:40:35 UTC (rev 153711)
+++ extra-i686/license 2012-03-18 13:40:58 UTC (rev 153712)
@@ -1,25 +0,0 @@
-Copyright (c) 1999-2006, The Board of Trustees of the University of Illinois
-All Rights Reserved.
-
-Iperf performance test
-Mark Gates
-Ajay Tirumala
-Jim Ferguson
-Jon Dugan
-Feng Qin
-Kevin Gibbs
-John Estabrook
-National Laboratory for Applied Network Research
-National Center for Supercomputing Applications
-University of Illinois at Urbana-Champaign
-http://www.ncsa.uiuc.edu
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
of this software (Iperf) and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
-
- * Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimers.
-
- * Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimers in the
documentation and/or other materials provided with the distribution.
-
- * Neither the names of the University of Illinois, NCSA, nor the names of
its contributors may be used to endorse or promote products derived from this
Software without specific prior written permission.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
CONTIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD 2012-03-18 13:40:35 UTC (rev 153711)
+++ extra-x86_64/PKGBUILD 2012-03-18 13:40:58 UTC (rev 153712)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <[email protected]>
-# Contributor: Dale Blount <[email protected]>
-
-pkgname=iperf
-pkgver=2.0.5
-pkgrel=3
-pkgdesc="A tool to measure maximum TCP bandwidth"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://iperf.sourceforge.net"
-depends=('gcc-libs')
-source=("http://downloads.sourceforge.net/iperf/iperf-2.0.5.tar.gz"
- 'license'
- 'client.cpp.patch')
-md5sums=('44b5536b67719f4250faed632a3cd016'
- 'a2879f900b76668b28a1cc922909db18'
- '82ce63c87cc8bb2f0f94069857ac14a9')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- # FS#25159
- patch -Np1 -i ${srcdir}/client.cpp.patch
-
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}" install
- install -Dm644 ${srcdir}/license "${pkgdir}/usr/share/licenses/iperf/LICENSE"
-}
Copied: iperf/repos/extra-x86_64/PKGBUILD (from rev 153711,
iperf/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD (rev 0)
+++ extra-x86_64/PKGBUILD 2012-03-18 13:40:58 UTC (rev 153712)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Giovanni Scafora <[email protected]>
+# Contributor: Dale Blount <[email protected]>
+
+pkgname=iperf
+pkgver=2.0.5
+pkgrel=4
+pkgdesc="A tool to measure maximum TCP bandwidth"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://iperf.sourceforge.net"
+depends=('gcc-libs')
+source=("http://downloads.sourceforge.net/iperf/iperf-2.0.5.tar.gz"
+ 'client.cpp.patch')
+md5sums=('44b5536b67719f4250faed632a3cd016'
+ '82ce63c87cc8bb2f0f94069857ac14a9')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ # FS#25159
+ patch -Np1 -i ${srcdir}/client.cpp.patch
+
+ ./configure --prefix=/usr \
+ --enable-ipv6 \
+ --enable-threads
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+ install -Dm644 COPYING "${pkgdir}/usr/share/licenses/iperf/LICENSE"
+}
Deleted: extra-x86_64/client.cpp.patch
===================================================================
--- extra-x86_64/client.cpp.patch 2012-03-18 13:40:35 UTC (rev 153711)
+++ extra-x86_64/client.cpp.patch 2012-03-18 13:40:58 UTC (rev 153712)
@@ -1,17 +0,0 @@
---- a/src/Client.cpp 2010-04-01 22:23:17.000000000 +0200
-+++ b/src/Client.cpp 2011-07-19 11:03:42.000000000 +0200
-@@ -212,10 +212,10 @@
- char* readAt = mBuf;
-
- #if HAVE_THREAD
-- if ( !isUDP( mSettings ) ) {
-- RunTCP();
-- return;
-- }
-+// if ( !isUDP( mSettings ) ) {
-+// RunTCP();
-+// return;
-+// }
- #endif
-
- // Indicates if the stream is readable
Copied: iperf/repos/extra-x86_64/client.cpp.patch (from rev 153711,
iperf/trunk/client.cpp.patch)
===================================================================
--- extra-x86_64/client.cpp.patch (rev 0)
+++ extra-x86_64/client.cpp.patch 2012-03-18 13:40:58 UTC (rev 153712)
@@ -0,0 +1,17 @@
+--- a/src/Client.cpp 2010-04-01 22:23:17.000000000 +0200
++++ b/src/Client.cpp 2011-07-19 11:03:42.000000000 +0200
+@@ -212,10 +212,10 @@
+ char* readAt = mBuf;
+
+ #if HAVE_THREAD
+- if ( !isUDP( mSettings ) ) {
+- RunTCP();
+- return;
+- }
++// if ( !isUDP( mSettings ) ) {
++// RunTCP();
++// return;
++// }
+ #endif
+
+ // Indicates if the stream is readable
Deleted: extra-x86_64/license
===================================================================
--- extra-x86_64/license 2012-03-18 13:40:35 UTC (rev 153711)
+++ extra-x86_64/license 2012-03-18 13:40:58 UTC (rev 153712)
@@ -1,25 +0,0 @@
-Copyright (c) 1999-2006, The Board of Trustees of the University of Illinois
-All Rights Reserved.
-
-Iperf performance test
-Mark Gates
-Ajay Tirumala
-Jim Ferguson
-Jon Dugan
-Feng Qin
-Kevin Gibbs
-John Estabrook
-National Laboratory for Applied Network Research
-National Center for Supercomputing Applications
-University of Illinois at Urbana-Champaign
-http://www.ncsa.uiuc.edu
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
of this software (Iperf) and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
-
- * Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimers.
-
- * Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimers in the
documentation and/or other materials provided with the distribution.
-
- * Neither the names of the University of Illinois, NCSA, nor the names of
its contributors may be used to endorse or promote products derived from this
Software without specific prior written permission.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
CONTIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.