[arch-commits] Commit in hwloc/repos (3 files)

2019-11-19 Thread Anatol Pomozov via arch-commits
Date: Tuesday, November 19, 2019 @ 15:49:47
  Author: anatolik
Revision: 369434

archrelease: copy trunk to testing-x86_64

Added:
  hwloc/repos/testing-x86_64/
  hwloc/repos/testing-x86_64/PKGBUILD
(from rev 369433, hwloc/trunk/PKGBUILD)
  hwloc/repos/testing-x86_64/fix_completion_dir.patch
(from rev 369433, hwloc/trunk/fix_completion_dir.patch)

--+
 PKGBUILD |   48 +
 fix_completion_dir.patch |   13 
 2 files changed, 61 insertions(+)

Copied: hwloc/repos/testing-x86_64/PKGBUILD (from rev 369433, 
hwloc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-11-19 15:49:47 UTC (rev 369434)
@@ -0,0 +1,48 @@
+# Maintainer: Levente Polyak 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Sylvain HENRY 
+# Contributor: Hervé YVIQUEL 
+
+pkgname=hwloc
+pkgver=2.1.0
+pkgrel=1
+pkgdesc='Portable Hardware Locality is a portable abstraction of hierarchical 
architectures'
+url='https://www.open-mpi.org/projects/hwloc/'
+arch=('x86_64')
+license=('BSD')
+depends=('libtool' 'systemd-libs' 'libpciaccess')
+makedepends=('cairo' 'libxml2' 'pciutils' 'systemd')
+optdepends=('cairo' 'libxml2' 'pciutils')
+options=('!docs')
+source=(https://www.open-mpi.org/software/hwloc/v${pkgver%.*}/downloads/${pkgname}-${pkgver}.tar.bz2
+fix_completion_dir.patch)
+sha256sums=('19429752f772cf68321196970ffb10dafd7e02ab38d2b3382b157c78efd10862'
+'3487e1f7819eba4131ae70140a624f0fff6ec9761ed3944eb6beebdf73f5147f')
+
+prepare() {
+  cd hwloc-${pkgver}
+  patch -p1 < ../fix_completion_dir.patch
+  autoconf -f -i
+}
+
+build() {
+  cd hwloc-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--enable-plugins
+  make
+}
+
+check() {
+  cd hwloc-${pkgver}
+  make check
+}
+
+package() {
+  cd hwloc-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: hwloc/repos/testing-x86_64/fix_completion_dir.patch (from rev 369433, 
hwloc/trunk/fix_completion_dir.patch)
===
--- testing-x86_64/fix_completion_dir.patch (rev 0)
+++ testing-x86_64/fix_completion_dir.patch 2019-11-19 15:49:47 UTC (rev 
369434)
@@ -0,0 +1,13 @@
+diff --git a/Makefile.am b/Makefile.am
+index 089dcc7a..dae7aba3 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -56,7 +56,7 @@ endif HWLOC_BUILD_STANDALONE
+ # Only install the valgrind suppressions file if we're building in
+ # standalone mode
+ if HWLOC_BUILD_STANDALONE
+-bashcompdir = $(sysconfdir)/bash_completion.d
++bashcompdir = /usr/share/bash-completion/completions
+ dist_bashcomp_DATA = contrib/completion/hwloc-completion.bash
+ dist_pkgdata_DATA = contrib/hwloc-valgrind.supp
+ dist_doc_DATA = contrib/misc/dynamic_SVG_example.html


[arch-commits] Commit in hwloc/repos (3 files)

2012-05-20 Thread Stéphane Gaudreault
Date: Sunday, May 20, 2012 @ 18:11:17
  Author: stephane
Revision: 159284

db-move: moved hwloc from [testing] to [extra] (i686)

Added:
  hwloc/repos/extra-i686/PKGBUILD
(from rev 159283, hwloc/repos/testing-i686/PKGBUILD)
Deleted:
  hwloc/repos/extra-i686/PKGBUILD
  hwloc/repos/testing-i686/

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-05-20 21:40:30 UTC (rev 159283)
+++ extra-i686/PKGBUILD 2012-05-20 22:11:17 UTC (rev 159284)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Sylvain HENRY hsy...@yahoo.fr
-# Contributor: Hervé YVIQUEL ellde...@gmail.com
-
-pkgname=hwloc
-pkgver=1.4.1
-pkgrel=1
-pkgdesc=Portable Hardware Locality is a portable abstraction of hierarchical 
architectures
-arch=('i686' 'x86_64')
-url=http://www.open-mpi.org/projects/hwloc/;
-license=('BSD')
-depends=('sh' 'pciutils' 'cairo' 'libxml2')
-makedepends=('pkg-config')
-options=('!libtool' '!docs')
-source=(http://www.open-mpi.org/software/hwloc/v1.4/downloads/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('911d2ba77fa968c3c72caf75a9e21637f3677acc')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-
-   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: hwloc/repos/extra-i686/PKGBUILD (from rev 159283, 
hwloc/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-05-20 22:11:17 UTC (rev 159284)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Sylvain HENRY hsy...@yahoo.fr
+# Contributor: Hervé YVIQUEL ellde...@gmail.com
+
+pkgname=hwloc
+pkgver=1.4.2
+pkgrel=1
+pkgdesc=Portable Hardware Locality is a portable abstraction of hierarchical 
architectures
+arch=('i686' 'x86_64')
+url=http://www.open-mpi.org/projects/hwloc/;
+license=('BSD')
+depends=('sh' 'pciutils' 'cairo' 'libxml2')
+makedepends=('pkg-config')
+options=('!libtool' '!docs')
+source=(http://www.open-mpi.org/software/hwloc/v1.4/downloads/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('2c2ca4101b4ea6782393b555a320c566da50cb68')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+
+   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



[arch-commits] Commit in hwloc/repos (3 files)

2012-05-20 Thread Stéphane Gaudreault
Date: Sunday, May 20, 2012 @ 18:11:18
  Author: stephane
Revision: 159285

db-move: moved hwloc from [testing] to [extra] (x86_64)

Added:
  hwloc/repos/extra-x86_64/PKGBUILD
(from rev 159283, hwloc/repos/testing-x86_64/PKGBUILD)
Deleted:
  hwloc/repos/extra-x86_64/PKGBUILD
  hwloc/repos/testing-x86_64/

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-05-20 22:11:17 UTC (rev 159284)
+++ extra-x86_64/PKGBUILD   2012-05-20 22:11:18 UTC (rev 159285)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Sylvain HENRY hsy...@yahoo.fr
-# Contributor: Hervé YVIQUEL ellde...@gmail.com
-
-pkgname=hwloc
-pkgver=1.4.1
-pkgrel=1
-pkgdesc=Portable Hardware Locality is a portable abstraction of hierarchical 
architectures
-arch=('i686' 'x86_64')
-url=http://www.open-mpi.org/projects/hwloc/;
-license=('BSD')
-depends=('sh' 'pciutils' 'cairo' 'libxml2')
-makedepends=('pkg-config')
-options=('!libtool' '!docs')
-source=(http://www.open-mpi.org/software/hwloc/v1.4/downloads/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('911d2ba77fa968c3c72caf75a9e21637f3677acc')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-
-   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: hwloc/repos/extra-x86_64/PKGBUILD (from rev 159283, 
hwloc/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-05-20 22:11:18 UTC (rev 159285)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Sylvain HENRY hsy...@yahoo.fr
+# Contributor: Hervé YVIQUEL ellde...@gmail.com
+
+pkgname=hwloc
+pkgver=1.4.2
+pkgrel=1
+pkgdesc=Portable Hardware Locality is a portable abstraction of hierarchical 
architectures
+arch=('i686' 'x86_64')
+url=http://www.open-mpi.org/projects/hwloc/;
+license=('BSD')
+depends=('sh' 'pciutils' 'cairo' 'libxml2')
+makedepends=('pkg-config')
+options=('!libtool' '!docs')
+source=(http://www.open-mpi.org/software/hwloc/v1.4/downloads/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('2c2ca4101b4ea6782393b555a320c566da50cb68')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+
+   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}