[arch-commits] Commit in net-tools/repos (6 files)

Christian Hesse eworm at archlinux.org
Thu Aug 4 20:55:33 UTC 2016


    Date: Thursday, August 4, 2016 @ 20:55:33
  Author: eworm
Revision: 273048

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

Added:
  net-tools/repos/testing-i686/PKGBUILD
    (from rev 273047, net-tools/trunk/PKGBUILD)
  net-tools/repos/testing-x86_64/PKGBUILD
    (from rev 273047, net-tools/trunk/PKGBUILD)
Deleted:
  net-tools/repos/testing-i686/Makefile.patch
  net-tools/repos/testing-i686/PKGBUILD
  net-tools/repos/testing-x86_64/Makefile.patch
  net-tools/repos/testing-x86_64/PKGBUILD

-------------------------------+
 /PKGBUILD                     |   82 ++++++++++++++++++++++++++++++++++++++++
 testing-i686/Makefile.patch   |   17 --------
 testing-i686/PKGBUILD         |   40 -------------------
 testing-x86_64/Makefile.patch |   17 --------
 testing-x86_64/PKGBUILD       |   40 -------------------
 5 files changed, 82 insertions(+), 114 deletions(-)

Deleted: testing-i686/Makefile.patch
===================================================================
--- testing-i686/Makefile.patch	2016-08-04 20:55:28 UTC (rev 273047)
+++ testing-i686/Makefile.patch	2016-08-04 20:55:33 UTC (rev 273048)
@@ -1,17 +0,0 @@
---- Makefile.old	2012-08-07 22:07:58.235437087 +0200
-+++ Makefile	2012-08-07 22:10:21.192104345 +0200
-@@ -239,12 +239,12 @@
- 	install -m 0755 -d ${BASEDIR}/bin
- 	install -m 0755 arp        ${BASEDIR}/sbin
- 	install -m 0755 hostname   ${BASEDIR}/bin
--	install -m 0755 ifconfig   ${BASEDIR}/bin
-+	install -m 0755 ifconfig   ${BASEDIR}/sbin
- 	install -m 0755 nameif     ${BASEDIR}/sbin
- 	install -m 0755 netstat    ${BASEDIR}/bin
- 	install -m 0755 plipconfig $(BASEDIR)/sbin
- 	install -m 0755 rarp       ${BASEDIR}/sbin
--	install -m 0755 route      ${BASEDIR}/bin
-+	install -m 0755 route      ${BASEDIR}/sbin
- 	install -m 0755 slattach   $(BASEDIR)/sbin
- ifeq ($(HAVE_IP_TOOLS),1)
- 	install -m 0755 ipmaddr    $(BASEDIR)/sbin

Deleted: testing-i686/PKGBUILD
===================================================================
--- testing-i686/PKGBUILD	2016-08-04 20:55:28 UTC (rev 273047)
+++ testing-i686/PKGBUILD	2016-08-04 20:55:33 UTC (rev 273048)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: judd <jvinet at zeroflux.org>
-
-pkgname=net-tools
-pkgver=1.60.20160215git
-pkgrel=1
-pkgdesc="Configuration tools for Linux networking"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://net-tools.sourceforge.net/"
-depends=('glibc')
-makedepends=('git')
-# use git snapshot currently prefered over release
-source=("net-tools::git://git.code.sf.net/p/net-tools/code#commit=bd8bce")
-options=(!makeflags)
-sha1sums=('SKIP')
-
-prepare() {
-  sed -i "s#/sbin#/bin#" ${srcdir}/${pkgname}/Makefile
-  sed -i "s#/usr##" ${srcdir}/${pkgname}/man/Makefile
-}
-
-build() {
-  cd ${srcdir}/${pkgname}
-  yes "" | make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}
-  make DESTDIR=${pkgdir}/usr update
-
-  # the following is provided by yp-tools
-  rm "${pkgdir}"/usr/bin/{nis,yp}domainname
-  rm "${pkgdir}"/usr/share/man/man1/{nis,yp}domainname.1
-
-  # hostname is provided by inetutils
-  rm "${pkgdir}"/usr/bin/{hostname,dnsdomainname,domainname}
-  rm -rf "${pkgdir}"/usr/share/man/man1
-}

Copied: net-tools/repos/testing-i686/PKGBUILD (from rev 273047, net-tools/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2016-08-04 20:55:33 UTC (rev 273048)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=net-tools
+pkgver=1.60.20160710git
+_commit=115f1af2
+pkgrel=1
+pkgdesc="Configuration tools for Linux networking"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://net-tools.sourceforge.net/"
+depends=('glibc')
+makedepends=('git')
+# use git snapshot currently prefered over release
+source=("net-tools::git://git.code.sf.net/p/net-tools/code#commit=${_commit}")
+options=(!makeflags)
+sha1sums=('SKIP')
+
+prepare() {
+  sed -i "s#/sbin#/bin#" ${srcdir}/${pkgname}/Makefile
+  sed -i "s#/usr##" ${srcdir}/${pkgname}/man/Makefile
+}
+
+build() {
+  cd ${srcdir}/${pkgname}
+  yes "" | make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}
+  make DESTDIR=${pkgdir}/usr update
+
+  # the following is provided by yp-tools
+  rm "${pkgdir}"/usr/bin/{nis,yp}domainname
+  rm "${pkgdir}"/usr/share/man/man1/{nis,yp}domainname.1
+
+  # hostname is provided by inetutils
+  rm "${pkgdir}"/usr/bin/{hostname,dnsdomainname,domainname}
+  rm -rf "${pkgdir}"/usr/share/man/man1
+}

Deleted: testing-x86_64/Makefile.patch
===================================================================
--- testing-x86_64/Makefile.patch	2016-08-04 20:55:28 UTC (rev 273047)
+++ testing-x86_64/Makefile.patch	2016-08-04 20:55:33 UTC (rev 273048)
@@ -1,17 +0,0 @@
---- Makefile.old	2012-08-07 22:07:58.235437087 +0200
-+++ Makefile	2012-08-07 22:10:21.192104345 +0200
-@@ -239,12 +239,12 @@
- 	install -m 0755 -d ${BASEDIR}/bin
- 	install -m 0755 arp        ${BASEDIR}/sbin
- 	install -m 0755 hostname   ${BASEDIR}/bin
--	install -m 0755 ifconfig   ${BASEDIR}/bin
-+	install -m 0755 ifconfig   ${BASEDIR}/sbin
- 	install -m 0755 nameif     ${BASEDIR}/sbin
- 	install -m 0755 netstat    ${BASEDIR}/bin
- 	install -m 0755 plipconfig $(BASEDIR)/sbin
- 	install -m 0755 rarp       ${BASEDIR}/sbin
--	install -m 0755 route      ${BASEDIR}/bin
-+	install -m 0755 route      ${BASEDIR}/sbin
- 	install -m 0755 slattach   $(BASEDIR)/sbin
- ifeq ($(HAVE_IP_TOOLS),1)
- 	install -m 0755 ipmaddr    $(BASEDIR)/sbin

Deleted: testing-x86_64/PKGBUILD
===================================================================
--- testing-x86_64/PKGBUILD	2016-08-04 20:55:28 UTC (rev 273047)
+++ testing-x86_64/PKGBUILD	2016-08-04 20:55:33 UTC (rev 273048)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: judd <jvinet at zeroflux.org>
-
-pkgname=net-tools
-pkgver=1.60.20160215git
-pkgrel=1
-pkgdesc="Configuration tools for Linux networking"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://net-tools.sourceforge.net/"
-depends=('glibc')
-makedepends=('git')
-# use git snapshot currently prefered over release
-source=("net-tools::git://git.code.sf.net/p/net-tools/code#commit=bd8bce")
-options=(!makeflags)
-sha1sums=('SKIP')
-
-prepare() {
-  sed -i "s#/sbin#/bin#" ${srcdir}/${pkgname}/Makefile
-  sed -i "s#/usr##" ${srcdir}/${pkgname}/man/Makefile
-}
-
-build() {
-  cd ${srcdir}/${pkgname}
-  yes "" | make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}
-  make DESTDIR=${pkgdir}/usr update
-
-  # the following is provided by yp-tools
-  rm "${pkgdir}"/usr/bin/{nis,yp}domainname
-  rm "${pkgdir}"/usr/share/man/man1/{nis,yp}domainname.1
-
-  # hostname is provided by inetutils
-  rm "${pkgdir}"/usr/bin/{hostname,dnsdomainname,domainname}
-  rm -rf "${pkgdir}"/usr/share/man/man1
-}

Copied: net-tools/repos/testing-x86_64/PKGBUILD (from rev 273047, net-tools/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2016-08-04 20:55:33 UTC (rev 273048)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=net-tools
+pkgver=1.60.20160710git
+_commit=115f1af2
+pkgrel=1
+pkgdesc="Configuration tools for Linux networking"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://net-tools.sourceforge.net/"
+depends=('glibc')
+makedepends=('git')
+# use git snapshot currently prefered over release
+source=("net-tools::git://git.code.sf.net/p/net-tools/code#commit=${_commit}")
+options=(!makeflags)
+sha1sums=('SKIP')
+
+prepare() {
+  sed -i "s#/sbin#/bin#" ${srcdir}/${pkgname}/Makefile
+  sed -i "s#/usr##" ${srcdir}/${pkgname}/man/Makefile
+}
+
+build() {
+  cd ${srcdir}/${pkgname}
+  yes "" | make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}
+  make DESTDIR=${pkgdir}/usr update
+
+  # the following is provided by yp-tools
+  rm "${pkgdir}"/usr/bin/{nis,yp}domainname
+  rm "${pkgdir}"/usr/share/man/man1/{nis,yp}domainname.1
+
+  # hostname is provided by inetutils
+  rm "${pkgdir}"/usr/bin/{hostname,dnsdomainname,domainname}
+  rm -rf "${pkgdir}"/usr/share/man/man1
+}



More information about the arch-commits mailing list