[Bug 228177] databases/postgresql*-server: CONFLICT installation with databases/postgresql-jdbc

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Fri May 11 22:42:53 UTC 2018


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=228177

            Bug ID: 228177
           Summary: databases/postgresql*-server: CONFLICT installation
                    with databases/postgresql-jdbc
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Many People
          Priority: ---
         Component: Individual Port(s)
          Assignee: pgsql at FreeBSD.org
          Reporter: vvd at unislabs.com
          Assignee: pgsql at FreeBSD.org
             Flags: maintainer-feedback?(pgsql at FreeBSD.org)
             Flags: maintainer-feedback?

Incorrect wildcard in definition of the CONFLICTS variable in ports Makefile.

diff -u Makefile.orig Makefile
--- Makefile.orig
+++ Makefile
@@ -14,9 +14,9 @@
 LICENSE=       PostgreSQL

 .if ${DISTVERSION:C/([0-9]*).*/\1/} == 10
-CONFLICTS+=    ${PORTNAME}*-9.*
+CONFLICTS+=    ${PORTNAME}[^-]*-9.*
 .else
-CONFLICTS+=    ${PORTNAME}*-9.[^${PORTVERSION:R:E}].* ${PORTNAME}10*
+CONFLICTS+=    ${PORTNAME}[^-]*-9.[^${PORTVERSION:R:E}].* ${PORTNAME}10*
 .endif

 WRKSRC=             ${WRKDIR}/postgresql-${DISTVERSION}

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list