Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Jun 2017 16:29:11 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 219929] security/openssl: ${DIST_SUBDIR} not match in ${MASTER_SITE_BACKUP}
Message-ID:  <bug-219929-13@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219929

            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@freebsd.org
          Reporter: loader@FreeBSD.org
          Assignee: brnrd@freebsd.org
             Flags: maintainer-feedback?(brnrd@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
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- Makefile    (revision 442466)
+++ Makefile    (working copy)
@@ -7,7 +7,7 @@
 CATEGORIES=3D    security devel
 MASTER_SITES=3D  http://www.openssl.org/source/ \
                ftp://ftp.cert.dfn.de/pub/tools/net/openssl/source/
-DIST_SUBDIR=3D   ${DISTNAME:C/[a-z]$//}
+DIST_SUBDIR=3D   ${PORTNAME}-${DISTVERSION:C/[a-z]$//}

 MAINTAINER=3D    brnrd@FreeBSD.org
 COMMENT=3D       SSL and crypto library

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



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