From owner-svn-ports-head@FreeBSD.ORG Thu Jul 24 16:09:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7EBEABD6; Thu, 24 Jul 2014 16:09:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AA782FF6; Thu, 24 Jul 2014 16:09:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6OG9Fhb018839; Thu, 24 Jul 2014 16:09:15 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6OG9DW7018817; Thu, 24 Jul 2014 16:09:13 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201407241609.s6OG9DW7018817@svn.freebsd.org> From: Dmitry Marakasov Date: Thu, 24 Jul 2014 16:09:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362817 - in head: devel/hwloc net/mpich net/openmpi net/openmpi-devel sysutils/slurm-hpc www/trafficserver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Jul 2014 16:09:15 -0000 Author: amdmi3 Date: Thu Jul 24 16:09:13 2014 New Revision: 362817 URL: http://svnweb.freebsd.org/changeset/ports/362817 QAT: https://qat.redports.org/buildarchive/r362817/ Log: - Switch devel/hwloc to USES=libtool, drop .la files - Bump dependent ports as .so version has changed - Add LICENSE_FILE - While here, fix stagedir reference in www/trafficserver Approved by: portmgr blanket Modified: head/devel/hwloc/Makefile head/devel/hwloc/pkg-plist head/net/mpich/Makefile head/net/openmpi-devel/Makefile head/net/openmpi/Makefile head/sysutils/slurm-hpc/Makefile head/www/trafficserver/Makefile Modified: head/devel/hwloc/Makefile ============================================================================== --- head/devel/hwloc/Makefile Thu Jul 24 16:08:39 2014 (r362816) +++ head/devel/hwloc/Makefile Thu Jul 24 16:09:13 2014 (r362817) @@ -2,6 +2,7 @@ PORTNAME= hwloc PORTVERSION= 1.9 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.open-mpi.org/software/hwloc/v${PORTVERSION}/downloads/ \ http://icl.cs.utk.edu/open-mpi/software/hwloc/v${PORTVERSION}/downloads/ @@ -10,6 +11,7 @@ MAINTAINER= phd_kimberlite@yahoo.co.jp COMMENT= Portable Hardware Locality software package LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libpciaccess.so:${PORTSDIR}/devel/libpciaccess @@ -17,7 +19,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-static \ --enable-libxml2 \ --disable-gl -USES= pkgconfig pathfix iconv tar:bzip2 +USES= pkgconfig pathfix iconv libtool tar:bzip2 USE_LDCONFIG= yes USE_GNOME= libxml2 Modified: head/devel/hwloc/pkg-plist ============================================================================== --- head/devel/hwloc/pkg-plist Thu Jul 24 16:08:39 2014 (r362816) +++ head/devel/hwloc/pkg-plist Thu Jul 24 16:09:13 2014 (r362817) @@ -31,9 +31,9 @@ include/hwloc/openfabrics-verbs.h include/hwloc/plugins.h include/hwloc/rename.h lib/libhwloc.a -lib/libhwloc.la lib/libhwloc.so -lib/libhwloc.so.10 +lib/libhwloc.so.5 +lib/libhwloc.so.5.5.0 libdata/pkgconfig/hwloc.pc man/man1/hwloc-annotate.1.gz man/man1/hwloc-assembler-remote.1.gz Modified: head/net/mpich/Makefile ============================================================================== --- head/net/mpich/Makefile Thu Jul 24 16:08:39 2014 (r362816) +++ head/net/mpich/Makefile Thu Jul 24 16:09:13 2014 (r362817) @@ -2,6 +2,7 @@ PORTNAME= mpich PORTVERSION= 3.1.1 +PORTREVISION= 1 CATEGORIES= net parallel MASTER_SITES= http://www.mpich.org/static/downloads/${DISTVERSION}/ Modified: head/net/openmpi-devel/Makefile ============================================================================== --- head/net/openmpi-devel/Makefile Thu Jul 24 16:08:39 2014 (r362816) +++ head/net/openmpi-devel/Makefile Thu Jul 24 16:09:13 2014 (r362817) @@ -3,7 +3,7 @@ PORTNAME= openmpi DISTVERSION= 1.7.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net parallel MASTER_SITES= http://www.open-mpi.org/software/ompi/v1.7/downloads/ PKGNAMESUFFIX= -devel Modified: head/net/openmpi/Makefile ============================================================================== --- head/net/openmpi/Makefile Thu Jul 24 16:08:39 2014 (r362816) +++ head/net/openmpi/Makefile Thu Jul 24 16:09:13 2014 (r362817) @@ -5,7 +5,7 @@ PORTNAME= openmpi DISTVERSION= 1.8.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net parallel MASTER_SITES= http://www.open-mpi.org/software/ompi/v1.8/downloads/ Modified: head/sysutils/slurm-hpc/Makefile ============================================================================== --- head/sysutils/slurm-hpc/Makefile Thu Jul 24 16:08:39 2014 (r362816) +++ head/sysutils/slurm-hpc/Makefile Thu Jul 24 16:09:13 2014 (r362817) @@ -3,7 +3,7 @@ PORTNAME= slurm PORTVERSION= 2.6.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= http://www.schedmd.com/download/archive/ \ http://www.schedmd.com/download/latest/ \ Modified: head/www/trafficserver/Makefile ============================================================================== --- head/www/trafficserver/Makefile Thu Jul 24 16:08:39 2014 (r362816) +++ head/www/trafficserver/Makefile Thu Jul 24 16:09:13 2014 (r362817) @@ -3,7 +3,7 @@ PORTNAME= trafficserver PORTVERSION= 4.1.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MASTER_SITES= APACHE/${PORTNAME} @@ -28,6 +28,7 @@ USE_OPENSSL= yes USE_SQLITE= yes USE_RC_SUBR= ${PORTNAME} USE_LDCONFIG= yes +USE_PERL5= run build fixpacklist ONLY_FOR_ARCHS= i386 amd64 USERS= www GROUPS= nogroup