Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Mar 2015 13:58:24 -0500
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   Re: svn commit: r382022 - in head/lang: gcc gcc46 gcc47 gcc48 gcc49 gcc5
Message-ID:  <55106250.7000003@FreeBSD.org>
In-Reply-To: <201503231856.t2NIuBJ4037830@svn.freebsd.org>
References:  <201503231856.t2NIuBJ4037830@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
This is an OpenPGP/MIME signed message (RFC 4880 and 3156)
--7xSmI8vjIjqCGBmRHKbhoDxrGV6fNmVUx
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable

On 3/23/2015 1:56 PM, Bryan Drewery wrote:
> 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/
>=20
> Log:
>   Fix UNIQUENAME not being unique after recent PORTNAME shuffle.
>  =20
>   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.
>  =20
>   With hat:	portmgr
>   Reported by:	sunpoet
>=20
> 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
>=20
> Modified: head/lang/gcc/Makefile
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- 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 @@
> =20
>  PORTNAME=3D	gcc
>  PORTVERSION=3D	4.8.4
> +PORTREVISION=3D	1

I realize now it was not needed to bump lang/gcc. Oh well. I'd rather
not cause surprises for automated build systems watching commits by
backing it out.

>  CATEGORIES=3D	lang java
>  MASTER_SITES=3D	${MASTER_SITE_GCC}
>  MASTER_SITE_SUBDIR=3D	releases/gcc-${DISTVERSION}
> @@ -25,6 +26,7 @@ BUILD_DEPENDS+=3D	runtest:${PORTSDIR}/misc
> =20
>  CONFLICTS=3D	gcc48*
>  CPE_VENDOR=3D	gnu
> +UNIQUENAME=3D	${PORTNAME}${PKGNAMESUFFIX}
> =20
>  # DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names
>  # of executables and directories once installed.
>=20
> Modified: head/lang/gcc46/Makefile
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- 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 @@
> =20
>  PORTNAME=3D	gcc
>  PORTVERSION=3D	4.6.4
> -PORTREVISION=3D	4
> +PORTREVISION=3D	5
>  PORTEPOCH=3D	1
>  CATEGORIES=3D	lang java
>  MASTER_SITES=3D	${MASTER_SITE_GCC}
> @@ -27,6 +27,7 @@ BUILD_DEPENDS+=3D	runtest:${PORTSDIR}/misc
>  .endif
> =20
>  CPE_VENDOR=3D	gnu
> +UNIQUENAME=3D	${PORTNAME}${PKGNAMESUFFIX}
> =20
>  # DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names
>  # of executables and directories once installed.
>=20
> Modified: head/lang/gcc47/Makefile
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- 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 @@
> =20
>  PORTNAME=3D	gcc
>  PORTVERSION=3D	4.7.4
> -PORTREVISION=3D	2
> +PORTREVISION=3D	3
>  PORTEPOCH=3D	1
>  CATEGORIES=3D	lang java
>  MASTER_SITES=3D	${MASTER_SITE_GCC}
> @@ -28,6 +28,7 @@ BUILD_DEPENDS+=3D	runtest:${PORTSDIR}/misc
> =20
>  CONFLICTS=3D	gcc-4.7.*
>  CPE_VENDOR=3D	gnu
> +UNIQUENAME=3D	${PORTNAME}${PKGNAMESUFFIX}
> =20
>  # DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names
>  # of executables and directories once installed.
>=20
> Modified: head/lang/gcc48/Makefile
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- 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 @@
> =20
>  PORTNAME=3D	gcc
>  PORTVERSION=3D	4.8.5.s20150319
> +PORTREVISION=3D	1
>  CATEGORIES=3D	lang java
>  MASTER_SITES=3D	${MASTER_SITE_GCC}
>  MASTER_SITE_SUBDIR=3D	snapshots/${DISTVERSION}
> @@ -27,6 +28,7 @@ BUILD_DEPENDS+=3D	runtest:${PORTSDIR}/misc
>  CONFLICTS=3D	gcc-4.8.*
>  CPE_VENDOR=3D	gnu
>  CPE_VERSION=3D	${GCC_VERSION}
> +UNIQUENAME=3D	${PORTNAME}${PKGNAMESUFFIX}
> =20
>  # DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names
>  # of executables and directories once installed.  A PORTVERSION of
>=20
> Modified: head/lang/gcc49/Makefile
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- 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 @@
> =20
>  PORTNAME=3D	gcc
>  PORTVERSION=3D	4.9.3.s20150318
> +PORTREVISION=3D	1
>  CATEGORIES=3D	lang java
>  MASTER_SITES=3D	${MASTER_SITE_GCC}
>  MASTER_SITE_SUBDIR=3D	snapshots/${DISTVERSION}
> @@ -25,6 +26,7 @@ BUILD_DEPENDS+=3D	runtest:${PORTSDIR}/misc
>  .endif
> =20
>  CPE_VENDOR=3D	gnu
> +UNIQUENAME=3D	${PORTNAME}${PKGNAMESUFFIX}
> =20
>  # DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names
>  # of executables and directories once installed.  A PORTVERSION of
>=20
> Modified: head/lang/gcc5/Makefile
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- 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 @@
> =20
>  PORTNAME=3D	gcc
>  PORTVERSION=3D	5.0.s20150322
> +PORTREVISION=3D	1
>  CATEGORIES=3D	lang java
>  MASTER_SITES=3D	${MASTER_SITE_GCC}
>  MASTER_SITE_SUBDIR=3D	snapshots/${DISTVERSION}
> @@ -26,6 +27,7 @@ BUILD_DEPENDS+=3D	runtest:${PORTSDIR}/misc
> =20
>  CPE_VENDOR=3D	gnu
>  CPE_VERSION=3D	${GCC_VERSION}
> +UNIQUENAME=3D	${PORTNAME}${PKGNAMESUFFIX}
> =20
>  # DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names
>  # of executables and directories once installed.  A PORTVERSION of
>=20


--=20
Regards,
Bryan Drewery


--7xSmI8vjIjqCGBmRHKbhoDxrGV6fNmVUx
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: OpenPGP digital signature
Content-Disposition: attachment; filename="signature.asc"

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2

iQEcBAEBAgAGBQJVEGJQAAoJEDXXcbtuRpfPBfMIAKqDVdYVog4IXVmwMNB/GoY+
uX/L6hcbKiCnL5x3L/kObKuGoUmLdEnF9Fj8JEGHzN+tsBvxBoq6FF9qmab4aOdX
ezhluAiiCvo6cWf8BfoIpknwAaU4nyrLw6N2WSdkIX33vA0wxgL01fdrSOGukrpF
7h54EoKF3lB5/ESjOmhcjILkgpVYMDMOcvqTsmT+d8bTPG1uywnymQaCu3e2O5AH
jMb5aeay2pkbk1ZOR7kE9Aqu8tWil6FNquVoVcXA4xin0eihBac2AkGxtvJXIziq
cqfCDtu+zFEA4EwEmkuimlq0oJ2XoKA4JQ2hU8vzbYRLXbZPPM/6BQXUdmwd+t8=
=t1HS
-----END PGP SIGNATURE-----

--7xSmI8vjIjqCGBmRHKbhoDxrGV6fNmVUx--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?55106250.7000003>