• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/sys/contrib/libsodium/packaging/dotnet-core/

Lines Matching refs:join

51     self.builddir = os.path.join(BUILDDIR, libsodium_version)
52 self.tempdir = os.path.join(TEMPDIR, libsodium_version)
53 self.projfile = os.path.join(self.builddir, '{0}.{1}.pkgproj'.format(PACKAGE, package_version))
54 self.propsfile = os.path.join(self.builddir, '{0}.props'.format(PACKAGE))
55 self.pkgfile = os.path.join(BUILDDIR, '{0}.{1}.nupkg'.format(PACKAGE, package_version))
61 self.cachefile = os.path.join(CACHEDIR, re.sub(r'[^A-Za-z0-9.]', '-', self.url))
62 self.packfile = os.path.join(version.builddir, 'runtimes', rid, 'native', LIBRARY + '.dll')
64 self.tempdir = os.path.join(version.tempdir, rid)
65 self.tempfile = os.path.join(self.tempdir, os.path.normpath(self.itemfile))
85 self.cachefile = os.path.join(CACHEDIR, re.sub(r'[^A-Za-z0-9.]', '-', self.url))
86 self.packfile = os.path.join(version.builddir, 'runtimes', rid, 'native', LIBRARY + '.dylib')
88 self.tempdir = os.path.join(version.tempdir, rid)
89 self.tempfile = os.path.join(self.tempdir, os.path.normpath(self.itemfile))
109 self.cachefile = os.path.join(CACHEDIR, re.sub(r'[^A-Za-z0-9.]', '-', self.url))
110 self.packfile = os.path.join(version.builddir, 'runtimes', rid, 'native', LIBRARY + '.so')
111 self.tempdir = os.path.join(version.tempdir, rid)
112 self.tempfile = os.path.join(self.tempdir, 'libsodium.so')
118 while not os.path.exists(os.path.join('recipes', recipe)):
145 self.cachefile = os.path.join(CACHEDIR, re.sub(r'[^A-Za-z0-9.]', '-', self.url))
146 self.packfile = os.path.join(version.builddir, filename)
148 self.tempdir = os.path.join(version.tempdir, 'extras')
149 self.tempfile = os.path.join(self.tempdir, os.path.normpath(self.itemfile))