[Bug 219929] security/openssl: ${DIST_SUBDIR} not match in ${MASTER_SITE_BACKUP}

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sun Jun 11 16:29:11 UTC 2017


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

            Bug ID: 219929
           Summary: security/openssl: ${DIST_SUBDIR} not match in
                    ${MASTER_SITE_BACKUP}
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: brnrd at freebsd.org
          Reporter: loader at FreeBSD.org
          Assignee: brnrd at freebsd.org
             Flags: maintainer-feedback?(brnrd at freebsd.org)

# cd /usr/ports/security/openssl/
# make -V MASTER_SITE_BACKUP
http://distcache.FreeBSD.org/ports-distfiles/openssl-1.0.2l/
# make -dV -V MASTER_SITE_BACKUP
http://distcache.FreeBSD.org/ports-distfiles/openssl-${DISTVERSIONPREFIX}1.0.2l${DISTVERSIONSUFFIX}/

It seems that ${DISTVERSIONFULL} was not expanded before assigning,
a workaround, maybe:

Index: Makefile
===================================================================
--- Makefile    (revision 442466)
+++ Makefile    (working copy)
@@ -7,7 +7,7 @@
 CATEGORIES=    security devel
 MASTER_SITES=  http://www.openssl.org/source/ \
                ftp://ftp.cert.dfn.de/pub/tools/net/openssl/source/
-DIST_SUBDIR=   ${DISTNAME:C/[a-z]$//}
+DIST_SUBDIR=   ${PORTNAME}-${DISTVERSION:C/[a-z]$//}

 MAINTAINER=    brnrd at FreeBSD.org
 COMMENT=       SSL and crypto library

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


More information about the freebsd-ports-bugs mailing list