From owner-svn-ports-all@FreeBSD.ORG Mon Mar 23 18:56:13 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CCF0A4A1; Mon, 23 Mar 2015 18:56:13 +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 ADE57BA7; Mon, 23 Mar 2015 18:56:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2NIuDwT037836; Mon, 23 Mar 2015 18:56:13 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2NIuBJ4037830; Mon, 23 Mar 2015 18:56:11 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201503231856.t2NIuBJ4037830@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 23 Mar 2015 18:56:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r382022 - in head/lang: gcc gcc46 gcc47 gcc48 gcc49 gcc5 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Mar 2015 18:56:13 -0000 Author: bdrewery Date: Mon Mar 23 18:56:10 2015 New Revision: 382022 URL: https://svnweb.freebsd.org/changeset/ports/382022 QAT: https://qat.redports.org/buildarchive/r382022/ Log: Fix UNIQUENAME not being unique after recent PORTNAME shuffle. This was causing the gcc packages to be generated with a /usr/local/libdata/ldconfig/gcc file. All were conflicting. Bump PORTREVISION to fix packages built during this time. With hat: portmgr Reported by: sunpoet Modified: head/lang/gcc/Makefile head/lang/gcc46/Makefile head/lang/gcc47/Makefile head/lang/gcc48/Makefile head/lang/gcc49/Makefile head/lang/gcc5/Makefile Modified: head/lang/gcc/Makefile ============================================================================== --- head/lang/gcc/Makefile Mon Mar 23 18:35:45 2015 (r382021) +++ head/lang/gcc/Makefile Mon Mar 23 18:56:10 2015 (r382022) @@ -3,6 +3,7 @@ PORTNAME= gcc PORTVERSION= 4.8.4 +PORTREVISION= 1 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= releases/gcc-${DISTVERSION} @@ -25,6 +26,7 @@ BUILD_DEPENDS+= runtest:${PORTSDIR}/misc CONFLICTS= gcc48* CPE_VENDOR= gnu +UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} # DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names # of executables and directories once installed. Modified: head/lang/gcc46/Makefile ============================================================================== --- head/lang/gcc46/Makefile Mon Mar 23 18:35:45 2015 (r382021) +++ head/lang/gcc46/Makefile Mon Mar 23 18:56:10 2015 (r382022) @@ -3,7 +3,7 @@ PORTNAME= gcc PORTVERSION= 4.6.4 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} @@ -27,6 +27,7 @@ BUILD_DEPENDS+= runtest:${PORTSDIR}/misc .endif CPE_VENDOR= gnu +UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} # DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names # of executables and directories once installed. Modified: head/lang/gcc47/Makefile ============================================================================== --- head/lang/gcc47/Makefile Mon Mar 23 18:35:45 2015 (r382021) +++ head/lang/gcc47/Makefile Mon Mar 23 18:56:10 2015 (r382022) @@ -3,7 +3,7 @@ PORTNAME= gcc PORTVERSION= 4.7.4 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} @@ -28,6 +28,7 @@ BUILD_DEPENDS+= runtest:${PORTSDIR}/misc CONFLICTS= gcc-4.7.* CPE_VENDOR= gnu +UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} # DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names # of executables and directories once installed. Modified: head/lang/gcc48/Makefile ============================================================================== --- head/lang/gcc48/Makefile Mon Mar 23 18:35:45 2015 (r382021) +++ head/lang/gcc48/Makefile Mon Mar 23 18:56:10 2015 (r382022) @@ -3,6 +3,7 @@ PORTNAME= gcc PORTVERSION= 4.8.5.s20150319 +PORTREVISION= 1 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} @@ -27,6 +28,7 @@ BUILD_DEPENDS+= runtest:${PORTSDIR}/misc CONFLICTS= gcc-4.8.* CPE_VENDOR= gnu CPE_VERSION= ${GCC_VERSION} +UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} # DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names # of executables and directories once installed. A PORTVERSION of Modified: head/lang/gcc49/Makefile ============================================================================== --- head/lang/gcc49/Makefile Mon Mar 23 18:35:45 2015 (r382021) +++ head/lang/gcc49/Makefile Mon Mar 23 18:56:10 2015 (r382022) @@ -3,6 +3,7 @@ PORTNAME= gcc PORTVERSION= 4.9.3.s20150318 +PORTREVISION= 1 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} @@ -25,6 +26,7 @@ BUILD_DEPENDS+= runtest:${PORTSDIR}/misc .endif CPE_VENDOR= gnu +UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} # DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names # of executables and directories once installed. A PORTVERSION of Modified: head/lang/gcc5/Makefile ============================================================================== --- head/lang/gcc5/Makefile Mon Mar 23 18:35:45 2015 (r382021) +++ head/lang/gcc5/Makefile Mon Mar 23 18:56:10 2015 (r382022) @@ -3,6 +3,7 @@ PORTNAME= gcc PORTVERSION= 5.0.s20150322 +PORTREVISION= 1 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} @@ -26,6 +27,7 @@ BUILD_DEPENDS+= runtest:${PORTSDIR}/misc CPE_VENDOR= gnu CPE_VERSION= ${GCC_VERSION} +UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} # DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names # of executables and directories once installed. A PORTVERSION of