From owner-svn-ports-all@FreeBSD.ORG Thu Oct 17 13:39:37 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CF387C17; Thu, 17 Oct 2013 13:39:37 +0000 (UTC) (envelope-from girgen@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AE0652064; Thu, 17 Oct 2013 13:39:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9HDdbgV004508; Thu, 17 Oct 2013 13:39:37 GMT (envelope-from girgen@svn.freebsd.org) Received: (from girgen@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9HDdaAH004503; Thu, 17 Oct 2013 13:39:36 GMT (envelope-from girgen@svn.freebsd.org) Message-Id: <201310171339.r9HDdaAH004503@svn.freebsd.org> From: Palle Girgensohn Date: Thu, 17 Oct 2013 13:39:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330639 - in head/databases: postgresql90-plperl postgresql90-plpython postgresql91-pltcl postgresql92-pltcl postgresql93-pltcl 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.14 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: Thu, 17 Oct 2013 13:39:38 -0000 Author: girgen Date: Thu Oct 17 13:39:36 2013 New Revision: 330639 URL: http://svnweb.freebsd.org/changeset/ports/330639 Log: Fix LATEST_LINK and some cleanup Modified: head/databases/postgresql90-plperl/Makefile head/databases/postgresql90-plpython/Makefile head/databases/postgresql91-pltcl/Makefile head/databases/postgresql92-pltcl/Makefile head/databases/postgresql93-pltcl/Makefile Modified: head/databases/postgresql90-plperl/Makefile ============================================================================== --- head/databases/postgresql90-plperl/Makefile Thu Oct 17 13:28:50 2013 (r330638) +++ head/databases/postgresql90-plperl/Makefile Thu Oct 17 13:39:36 2013 (r330639) @@ -3,8 +3,7 @@ PORTNAME= postgresql CATEGORIES= databases perl5 -PKGNAMESUFFIX?= ${DISTV:S/.//}-plperl -DISTV= ${DISTVERSION:R} +PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} MAINTAINER= pgsql@FreeBSD.org COMMENT= Write SQL functions for PostgreSQL using Perl5 Modified: head/databases/postgresql90-plpython/Makefile ============================================================================== --- head/databases/postgresql90-plpython/Makefile Thu Oct 17 13:28:50 2013 (r330638) +++ head/databases/postgresql90-plpython/Makefile Thu Oct 17 13:39:36 2013 (r330639) @@ -2,8 +2,7 @@ PORTNAME= postgresql CATEGORIES= databases python -PKGNAMESUFFIX?= ${DISTV:S/.//}-plpython -DISTV= ${DISTVERSION:R} +PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} MAINTAINER= pgsql@FreeBSD.org COMMENT= Module for using Python to write SQL functions Modified: head/databases/postgresql91-pltcl/Makefile ============================================================================== --- head/databases/postgresql91-pltcl/Makefile Thu Oct 17 13:28:50 2013 (r330638) +++ head/databases/postgresql91-pltcl/Makefile Thu Oct 17 13:39:36 2013 (r330639) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= postgresql -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases tcl -PKGNAMESUFFIX?= ${DISTV:S/.//}-pltcl +PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} MAINTAINER= pgsql@FreeBSD.org COMMENT= Module for using Tcl to write SQL functions Modified: head/databases/postgresql92-pltcl/Makefile ============================================================================== --- head/databases/postgresql92-pltcl/Makefile Thu Oct 17 13:28:50 2013 (r330638) +++ head/databases/postgresql92-pltcl/Makefile Thu Oct 17 13:39:36 2013 (r330639) @@ -4,4 +4,4 @@ WANT_PGSQL_VER= 92 NO_STAGE= yes -.include "${.CURDIR}/../postgresql90-pltcl/Makefile" +.include "${.CURDIR}/../postgresql91-pltcl/Makefile" Modified: head/databases/postgresql93-pltcl/Makefile ============================================================================== --- head/databases/postgresql93-pltcl/Makefile Thu Oct 17 13:28:50 2013 (r330638) +++ head/databases/postgresql93-pltcl/Makefile Thu Oct 17 13:39:36 2013 (r330639) @@ -4,4 +4,4 @@ WANT_PGSQL_VER= 93 NO_STAGE= yes -.include "${.CURDIR}/../postgresql90-pltcl/Makefile" +.include "${.CURDIR}/../postgresql91-pltcl/Makefile"