pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/math/djbsort
Module Name: pkgsrc
Committed By: schmonz
Date: Tue Jul 31 05:38:57 UTC 2018
Modified Files:
pkgsrc/math/djbsort: Makefile PLIST buildlink3.mk distinfo
Added Files:
pkgsrc/math/djbsort: DEINSTALL INSTALL pseudo-PLIST
pkgsrc/math/djbsort/patches: patch-build patch-test patch-upgrade
Log Message:
>From DJB: "For correctness, ./test has to be run on the installation
machine, not on the machine preparing a binary package." (Also: "The
issues are explained in Section 8 of
https://pqcrypto.eu.org/deliverables/d2.4.pdf.")
For this to work, we install the source tree (with built objects) to
${PREFIX}/share/djbsort. Then we run tests, install to ${PREFIX}/include
and ${PREFIX}/lib, and check the installed files against pseudo-PLIST.
This means pkg_add(1) will fail if no C compiler is present, which is
unusual behavior for pkg_add but perhaps not entirely unreasonable for a
C library.
Bump PKGREVISION.
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/math/djbsort/DEINSTALL \
pkgsrc/math/djbsort/INSTALL pkgsrc/math/djbsort/pseudo-PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/math/djbsort/Makefile \
pkgsrc/math/djbsort/PLIST pkgsrc/math/djbsort/buildlink3.mk \
pkgsrc/math/djbsort/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/math/djbsort/patches/patch-build \
pkgsrc/math/djbsort/patches/patch-test \
pkgsrc/math/djbsort/patches/patch-upgrade
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/math/djbsort/Makefile
diff -u pkgsrc/math/djbsort/Makefile:1.1 pkgsrc/math/djbsort/Makefile:1.2
--- pkgsrc/math/djbsort/Makefile:1.1 Sun Jul 29 07:38:48 2018
+++ pkgsrc/math/djbsort/Makefile Tue Jul 31 05:38:56 2018
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2018/07/29 07:38:48 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2018/07/31 05:38:56 schmonz Exp $
DISTNAME= djbsort-20180717
+PKGREVISION= 1
CATEGORIES= math
MASTER_SITES= ${HOMEPAGE}
@@ -9,27 +10,38 @@ HOMEPAGE= https://sorting.cr.yp.to/
COMMENT= Library for sorting arrays of integers
LICENSE= public-domain
-PYTHON_FOR_BUILD_ONLY= yes
-PYTHON_VERSIONS_INCOMPATIBLE= 27
+DEPENDS+= python27-[0-9]*:../../lang/python27
+
+REPLACE_INTERPRETER+= python27
+REPLACE.python27.old= .*python2\{0,1\}[^ ]*
+REPLACE.python27.new= ${LOCALBASE}/bin/python2.7
+REPLACE_FILES.python27= verif/decompose verif/minmax verif/unroll
+
+PYTHON_VERSIONS_INCOMPATIBLE= 27 # so a python3 will be auto-selected
+
REPLACE_PYTHON= build test upgrade verif/tryinput
+SUBST_CLASSES+= python3
+SUBST_STAGE.python3= do-configure
+SUBST_FILES.python3= verif/verifymany
+SUBST_SED.python3= -e 's|time python3|time ${PYTHONBIN}|g'
+
+SHAREDIR= share/${PKGBASE}
+FILES_SUBST+= DIFF=${DIFF:Q}
+FILES_SUBST+= INSTALL_DATA=${INSTALL_DATA:Q}
+FILES_SUBST+= PSEUDO_PLIST=${PSEUDO_PLIST:Q}
+FILES_SUBST+= SHAREDIR=${SHAREDIR:Q}
-INSTALLATION_DIRS= include lib
+INSTALLATION_DIRS= include lib share
+
+pre-configure:
+ cd ${WRKSRC} && rm -f *.orig
do-build:
cd ${WRKSRC} && ./build
-do-test: do-build
- cd ${WRKSRC} && ./test
-
-do-install: do-test
- cd ${WRKSRC} && ./upgrade && \
- cd link-install/newest && \
- for i in include/*.h; do \
- ${INSTALL_DATA} $${i} ${DESTDIR}${PREFIX}/include; \
- done; \
- for i in lib/*/*.a; do \
- ${INSTALL_DATA} $${i} ${DESTDIR}${PREFIX}/lib; \
- done
+do-install:
+ cp pseudo-PLIST ${WRKSRC}
+ cp -Rp ${WRKSRC} ${DESTDIR}${PREFIX}/${SHAREDIR}
.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/math/djbsort/PLIST
diff -u pkgsrc/math/djbsort/PLIST:1.1 pkgsrc/math/djbsort/PLIST:1.2
--- pkgsrc/math/djbsort/PLIST:1.1 Sun Jul 29 07:38:48 2018
+++ pkgsrc/math/djbsort/PLIST Tue Jul 31 05:38:56 2018
@@ -1,5 +1,337 @@
-@comment $NetBSD: PLIST,v 1.1 2018/07/29 07:38:48 wiz Exp $
-include/djbsort_cpucycles.h
-include/int32_sort.h
-include/uint32_sort.h
-lib/libdjbsort.a
+@comment $NetBSD: PLIST,v 1.2 2018/07/31 05:38:56 schmonz Exp $
+share/djbsort/TYPES
+share/djbsort/benchmark
+share/djbsort/build
+share/djbsort/command/int32-speed.c
+share/djbsort/command/limits.c
+share/djbsort/command/limits.h
+share/djbsort/command/uint32-speed.c
+share/djbsort/compilers/abiname.c
+share/djbsort/compilers/c
+share/djbsort/cpucycles/amd64cpuinfo/architectures
+share/djbsort/cpucycles/amd64cpuinfo/cpucycles.c
+share/djbsort/cpucycles/amd64cpuinfo/implementation.c
+share/djbsort/cpucycles/amd64cpuspeed/architectures
+share/djbsort/cpucycles/amd64cpuspeed/cpucycles.c
+share/djbsort/cpucycles/amd64cpuspeed/implementation.c
+share/djbsort/cpucycles/amd64tscfreq/architectures
+share/djbsort/cpucycles/amd64tscfreq/cpucycles.c
+share/djbsort/cpucycles/amd64tscfreq/implementation.c
+share/djbsort/cpucycles/apple/cpucycles.c
+share/djbsort/cpucycles/apple/implementation.c
+share/djbsort/cpucycles/celllinux/architectures
+share/djbsort/cpucycles/celllinux/cpucycles.c
+share/djbsort/cpucycles/celllinux/implementation.c
+share/djbsort/cpucycles/cortex/architectures
+share/djbsort/cpucycles/cortex/cpucycles.c
+share/djbsort/cpucycles/cortex/implementation.c
+share/djbsort/cpucycles/cortex_vct/architectures
+share/djbsort/cpucycles/cortex_vct/cpucycles.c
+share/djbsort/cpucycles/cortex_vct/implementation.c
+share/djbsort/cpucycles/dev4ns/cpucycles.c
+share/djbsort/cpucycles/dev4ns/implementation.c
+share/djbsort/cpucycles/gettimeofday/cpucycles.c
+share/djbsort/cpucycles/gettimeofday/implementation.c
+share/djbsort/cpucycles/ia64cpuinfo/architectures
+share/djbsort/cpucycles/ia64cpuinfo/cpucycles.c
+share/djbsort/cpucycles/ia64cpuinfo/implementation.c
+share/djbsort/cpucycles/mips/architectures
+share/djbsort/cpucycles/mips/cpucycles.c
+share/djbsort/cpucycles/mips/implementation.c
+share/djbsort/cpucycles/monotonic/cpucycles.c
+share/djbsort/cpucycles/monotonic/implementation.c
+share/djbsort/cpucycles/monotoniccpuinfo/cpucycles.c
+share/djbsort/cpucycles/monotoniccpuinfo/implementation.c
+share/djbsort/cpucycles/osfreq.c
+share/djbsort/cpucycles/perfevent/cpucycles.c
+share/djbsort/cpucycles/perfevent/implementation.c
+share/djbsort/cpucycles/powerpccpuinfo/architectures
+share/djbsort/cpucycles/powerpccpuinfo/cpucycles.c
+share/djbsort/cpucycles/powerpccpuinfo/implementation.c
+share/djbsort/cpucycles/powerpcmacos/architectures
+share/djbsort/cpucycles/powerpcmacos/cpucycles.c
+share/djbsort/cpucycles/powerpcmacos/implementation.c
+share/djbsort/cpucycles/sparc32cpuinfo/architectures
+share/djbsort/cpucycles/sparc32cpuinfo/cpucycles.c
+share/djbsort/cpucycles/sparc32cpuinfo/implementation.c
+share/djbsort/cpucycles/sparccpuinfo/architectures
+share/djbsort/cpucycles/sparccpuinfo/cpucycles.c
+share/djbsort/cpucycles/sparccpuinfo/implementation.c
+share/djbsort/cpucycles/test.c
+share/djbsort/cpucycles/vct/architectures
+share/djbsort/cpucycles/vct/cpucycles.c
+share/djbsort/cpucycles/vct/implementation.c
+share/djbsort/cpucycles/x86cpuinfo/architectures
+share/djbsort/cpucycles/x86cpuinfo/cpucycles.c
+share/djbsort/cpucycles/x86cpuinfo/implementation.c
+share/djbsort/cpucycles/x86cpuspeed/architectures
+share/djbsort/cpucycles/x86cpuspeed/cpucycles.c
+share/djbsort/cpucycles/x86cpuspeed/implementation.c
+share/djbsort/cpucycles/x86estimate/architectures
+share/djbsort/cpucycles/x86estimate/cpucycles.c
+share/djbsort/cpucycles/x86estimate/implementation.c
+share/djbsort/cpucycles/x86tscfreq/architectures
+share/djbsort/cpucycles/x86tscfreq/cpucycles.c
+share/djbsort/cpucycles/x86tscfreq/implementation.c
+share/djbsort/do
+share/djbsort/h-external/djbsort_cpucycles.h
+share/djbsort/h-external/int32_sort.h
+share/djbsort/h-external/uint32_sort.h
+share/djbsort/h-internal/cpucycles.h
+share/djbsort/h-internal/int32_minmax.c
+share/djbsort/h-internal/int32_minmax_x86.c
+share/djbsort/int32/avx2/sort.c
+share/djbsort/int32/cycles.c
+share/djbsort/int32/portable1/sort.c
+share/djbsort/int32/portable2/sort.c
+share/djbsort/int32/portable3/sort.c
+share/djbsort/int32/portable4/sort.c
+share/djbsort/int32/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/include/cpucycles.h
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/include/int32_minmax.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/include/int32_minmax_x86.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/command/int32-speed.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/command/limits.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/command/uint32-speed.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/compilers/abiname.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/compilers/base.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/cpucycles/cpucycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/avx2/compiler.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/avx2/cycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/avx2/implementation.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/avx2/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/avx2/version.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/avx2/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable1/compiler.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable1/cycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable1/implementation.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable1/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable1/version.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable1/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable2/compiler.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable2/cycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable2/implementation.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable2/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable2/version.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable2/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable3/compiler.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable3/cycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable3/implementation.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable3/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable3/version.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable3/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable4/compiler.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable4/cycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable4/implementation.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable4/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable4/version.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/int32/portable4/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/uint32/useint32/compiler.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/uint32/useint32/cycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/uint32/useint32/implementation.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/uint32/useint32/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/uint32/useint32/version.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-O3/uint32/useint32/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/command/int32-speed.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/command/limits.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/command/uint32-speed.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/compilers/abiname.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/compilers/base.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/cpucycles/cpucycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/avx2/compiler.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/avx2/cycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/avx2/implementation.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/avx2/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/avx2/version.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/avx2/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable1/compiler.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable1/cycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable1/implementation.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable1/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable1/version.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable1/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable2/compiler.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable2/cycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable2/implementation.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable2/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable2/version.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable2/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable3/compiler.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable3/cycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable3/implementation.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable3/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable3/version.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable3/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable4/compiler.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable4/cycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable4/implementation.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable4/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable4/version.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/int32/portable4/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/uint32/useint32/compiler.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/uint32/useint32/cycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/uint32/useint32/implementation.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/uint32/useint32/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/uint32/useint32/version.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/clang_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-mavx2_-O3/uint32/useint32/works.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/cpucycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/avx2/sort.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/cpucycles.c
+share/djbsort/link-build/build-${PKGVERSION}/pkgsrchostname/notes/log
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/command/int32-speed.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/command/limits.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/command/uint32-speed.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/compilers/abiname.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/compilers/base.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/amd64cpuinfo/architectures
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/amd64cpuinfo/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/amd64cpuinfo/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/amd64cpuinfo/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/amd64tscfreq/architectures
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/amd64tscfreq/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/amd64tscfreq/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/amd64tscfreq/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/dev4ns/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/dev4ns/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/dev4ns/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/gettimeofday/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/gettimeofday/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/gettimeofday/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/monotonic/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/monotonic/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/monotonic/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/monotoniccpuinfo/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/monotoniccpuinfo/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/monotoniccpuinfo/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/x86cpuinfo/architectures
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/x86cpuinfo/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/x86cpuinfo/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/x86cpuinfo/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/x86estimate/architectures
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/x86estimate/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/x86estimate/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/x86estimate/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/x86tscfreq/architectures
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/x86tscfreq/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/x86tscfreq/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/cpucycles/x86tscfreq/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable1/compiler.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable1/cycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable1/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable1/sort.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable1/version.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable1/works.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable2/compiler.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable2/cycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable2/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable2/sort.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable2/version.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable2/works.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable3/compiler.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable3/cycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable3/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable3/sort.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable3/version.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable3/works.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable4/compiler.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable4/cycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable4/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable4/sort.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable4/version.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/int32/portable4/works.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/uint32/useint32/compiler.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/uint32/useint32/cycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/uint32/useint32/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/uint32/useint32/sort.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/uint32/useint32/version.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-O3/uint32/useint32/works.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/command/int32-speed.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/command/limits.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/command/uint32-speed.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/compilers/abiname.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/compilers/base.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/amd64cpuinfo/architectures
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/amd64cpuinfo/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/amd64cpuinfo/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/amd64cpuinfo/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/amd64tscfreq/architectures
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/amd64tscfreq/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/amd64tscfreq/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/amd64tscfreq/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/dev4ns/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/dev4ns/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/dev4ns/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/gettimeofday/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/gettimeofday/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/gettimeofday/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/monotonic/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/monotonic/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/monotonic/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/monotoniccpuinfo/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/monotoniccpuinfo/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/monotoniccpuinfo/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/x86cpuinfo/architectures
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/x86cpuinfo/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/x86cpuinfo/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/x86cpuinfo/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/x86estimate/architectures
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/x86estimate/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/x86estimate/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/x86estimate/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/x86tscfreq/architectures
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/x86tscfreq/cpucycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/x86tscfreq/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/cpucycles/x86tscfreq/test.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/avx2/compiler.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/avx2/cycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/avx2/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/avx2/sort.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/avx2/version.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/avx2/works.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable1/compiler.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable1/cycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable1/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable1/sort.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable1/version.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable1/works.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable2/compiler.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable2/cycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable2/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable2/sort.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable2/version.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable2/works.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable3/compiler.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable3/cycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable3/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable3/sort.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable3/version.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable3/works.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable4/compiler.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable4/cycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable4/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable4/sort.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable4/version.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/int32/portable4/works.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/uint32/useint32/compiler.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/uint32/useint32/cycles.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/uint32/useint32/implementation.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/uint32/useint32/sort.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/uint32/useint32/version.o
+share/djbsort/link-build/obj-${PKGVERSION}/pkgsrchostname/gcc_-fPIC_-Wall_-fomit-frame-pointer_-fwrapv_-march=core-avx2_-O3/uint32/useint32/works.o
+share/djbsort/link-install/run-${PKGVERSION}/pkgsrchostname/include/djbsort_cpucycles.h
+share/djbsort/link-install/run-${PKGVERSION}/pkgsrchostname/include/int32_sort.h
+share/djbsort/link-install/run-${PKGVERSION}/pkgsrchostname/include/uint32_sort.h
+share/djbsort/pseudo-PLIST
+share/djbsort/test
+share/djbsort/uint32/cycles.c
+share/djbsort/uint32/useint32/sort.c
+share/djbsort/uint32/works.c
+share/djbsort/upgrade
+share/djbsort/verif/decompose
+share/djbsort/verif/minmax
+share/djbsort/verif/tryinput
+share/djbsort/verif/unroll
+share/djbsort/verif/verifymany
+share/djbsort/version
+@pkgdir lib
+@pkgdir include
Index: pkgsrc/math/djbsort/buildlink3.mk
diff -u pkgsrc/math/djbsort/buildlink3.mk:1.1 pkgsrc/math/djbsort/buildlink3.mk:1.2
--- pkgsrc/math/djbsort/buildlink3.mk:1.1 Sun Jul 29 07:38:48 2018
+++ pkgsrc/math/djbsort/buildlink3.mk Tue Jul 31 05:38:56 2018
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.1 2018/07/29 07:38:48 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.2 2018/07/31 05:38:56 schmonz Exp $
BUILDLINK_TREE+= djbsort
@@ -8,6 +8,7 @@ DJBSORT_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.djbsort+= djbsort>=20180717
BUILDLINK_PKGSRCDIR.djbsort?= ../../math/djbsort
BUILDLINK_DEPMETHOD.djbsort?= build
+BUILDLINK_FILES_CMD.djbsort= ${CAT} ${BUILDLINK_PREFIX.djbsort}/share/djbsort/pseudo-PLIST
.endif # DJBSORT_BUILDLINK3_MK
BUILDLINK_TREE+= -djbsort
Index: pkgsrc/math/djbsort/distinfo
diff -u pkgsrc/math/djbsort/distinfo:1.1 pkgsrc/math/djbsort/distinfo:1.2
--- pkgsrc/math/djbsort/distinfo:1.1 Sun Jul 29 07:38:48 2018
+++ pkgsrc/math/djbsort/distinfo Tue Jul 31 05:38:56 2018
@@ -1,6 +1,9 @@
-$NetBSD: distinfo,v 1.1 2018/07/29 07:38:48 wiz Exp $
+$NetBSD: distinfo,v 1.2 2018/07/31 05:38:56 schmonz Exp $
SHA1 (djbsort-20180717.tar.gz) = 8f6efd8f66aa23707d54c083b9fb28371a409c55
RMD160 (djbsort-20180717.tar.gz) = 64d92cccf13d8a997ea25ee77491f54b6a6b3ce1
SHA512 (djbsort-20180717.tar.gz) = c26a871c46006580343b2876203264c8de0db613ee90ba5dd050f46a71a346d9340ecd06220dc1c0a46a6c1cd910af4bd2cb3fcd39588a62cc2a4a996fc9113e
Size (djbsort-20180717.tar.gz) = 25055 bytes
+SHA1 (patch-build) = 0f1ae219495cc63fc301aa1f9ae1c1655da3aaa3
+SHA1 (patch-test) = b5ba29b15d7baa896bf9e47a1522e88e73df4c9e
+SHA1 (patch-upgrade) = 2bec25c36e1ed28c67e4967ac929780d28bb2e68
Added files:
Index: pkgsrc/math/djbsort/DEINSTALL
diff -u /dev/null pkgsrc/math/djbsort/DEINSTALL:1.1
--- /dev/null Tue Jul 31 05:38:57 2018
+++ pkgsrc/math/djbsort/DEINSTALL Tue Jul 31 05:38:56 2018
@@ -0,0 +1,13 @@
+# $NetBSD: DEINSTALL,v 1.1 2018/07/31 05:38:56 schmonz Exp $
+
+SHAREDIR="@SHAREDIR@"
+
+case "${STAGE}" in
+
+DEINSTALL)
+ cd ${PREFIX}/${SHAREDIR}
+ for i in $(${CAT} pseudo-PLIST); do
+ ${RM} -f ${PREFIX}/${i}
+ done
+ ;;
+esac
Index: pkgsrc/math/djbsort/INSTALL
diff -u /dev/null pkgsrc/math/djbsort/INSTALL:1.1
--- /dev/null Tue Jul 31 05:38:57 2018
+++ pkgsrc/math/djbsort/INSTALL Tue Jul 31 05:38:56 2018
@@ -0,0 +1,59 @@
+# $NetBSD: INSTALL,v 1.1 2018/07/31 05:38:56 schmonz Exp $
+
+DIFF="@DIFF@"
+INSTALL_DATA="@INSTALL_DATA@"
+PSEUDO_PLIST="@PSEUDO_PLIST@"
+SHAREDIR="@SHAREDIR@"
+
+case "${STAGE}" in
+
+POST-INSTALL)
+ cd ${PREFIX}/${SHAREDIR}
+
+ ./test
+ TEST_EXITCODE=$?
+ if [ ${TEST_EXITCODE} -ne 0 ]; then
+ ${CAT} <<EOF
+===========================================================================
+
+ERROR: tests exited nonzero (${TEST_EXITCODE}).
+
+The installation may not be correct or performant.
+
+===========================================================================
+EOF
+ exit 1
+ fi
+
+ ./upgrade
+
+ cd link-install/newest
+ _INSTALLED_FILES=''
+ for i in include/*.h; do
+ ${INSTALL_DATA} ${i} ${PREFIX}/include
+ _INSTALLED_FILES="${_INSTALLED_FILES}"'
+'"include/$(${BASENAME} ${i})"
+ done
+ for i in lib/*/*.a; do
+ ${INSTALL_DATA} ${i} ${PREFIX}/lib
+ _INSTALLED_FILES="${_INSTALLED_FILES}"'
+'"lib/$(${BASENAME} ${i})"
+ done
+ _INSTALLED_FILES=$(${ECHO} "${_INSTALLED_FILES}" | ${GREP} -v '^$' | ${SORT} -u)
+
+ cd ${PREFIX}/${SHAREDIR}
+ echo "${_INSTALLED_FILES}" | ${DIFF} -u pseudo-PLIST -
+ DIFF_EXITCODE=$?
+ if [ ${DIFF_EXITCODE} -ne 0 ]; then
+ ${CAT} <<EOF
+===========================================================================
+
+ERROR: installed files do not match pseudo-PLIST.
+
+===========================================================================
+EOF
+ exit 1
+ fi
+
+ ;;
+esac
Index: pkgsrc/math/djbsort/pseudo-PLIST
diff -u /dev/null pkgsrc/math/djbsort/pseudo-PLIST:1.1
--- /dev/null Tue Jul 31 05:38:57 2018
+++ pkgsrc/math/djbsort/pseudo-PLIST Tue Jul 31 05:38:56 2018
@@ -0,0 +1,4 @@
+include/djbsort_cpucycles.h
+include/int32_sort.h
+include/uint32_sort.h
+lib/libdjbsort.a
Index: pkgsrc/math/djbsort/patches/patch-build
diff -u /dev/null pkgsrc/math/djbsort/patches/patch-build:1.1
--- /dev/null Tue Jul 31 05:38:57 2018
+++ pkgsrc/math/djbsort/patches/patch-build Tue Jul 31 05:38:56 2018
@@ -0,0 +1,14 @@
+$NetBSD: patch-build,v 1.1 2018/07/31 05:38:56 schmonz Exp $
+
+Don't bake build host into binary packages.
+
+--- build.orig 2018-07-17 14:55:25.000000000 +0000
++++ build
+@@ -35,6 +35,7 @@ version = readfile('version').strip()
+ shorthostname = platform.node().split('.')[0].lower()
+ okcharacters = string.ascii_letters + string.digits
+ shorthostname = ''.join(c for c in shorthostname if c in okcharacters)
++shorthostname = 'pkgsrchostname'
+
+ startdir = os.getcwd()
+
Index: pkgsrc/math/djbsort/patches/patch-test
diff -u /dev/null pkgsrc/math/djbsort/patches/patch-test:1.1
--- /dev/null Tue Jul 31 05:38:57 2018
+++ pkgsrc/math/djbsort/patches/patch-test Tue Jul 31 05:38:56 2018
@@ -0,0 +1,14 @@
+$NetBSD: patch-test,v 1.1 2018/07/31 05:38:56 schmonz Exp $
+
+Don't bake build host into binary packages.
+
+--- test.orig 2018-07-17 14:55:25.000000000 +0000
++++ test
+@@ -36,6 +36,7 @@ version = readfile('version').strip()
+ shorthostname = platform.node().split('.')[0].lower()
+ okcharacters = string.ascii_letters + string.digits
+ shorthostname = ''.join(c for c in shorthostname if c in okcharacters)
++shorthostname = 'pkgsrchostname'
+
+ startdir = os.getcwd()
+
Index: pkgsrc/math/djbsort/patches/patch-upgrade
diff -u /dev/null pkgsrc/math/djbsort/patches/patch-upgrade:1.1
--- /dev/null Tue Jul 31 05:38:57 2018
+++ pkgsrc/math/djbsort/patches/patch-upgrade Tue Jul 31 05:38:56 2018
@@ -0,0 +1,14 @@
+$NetBSD: patch-upgrade,v 1.1 2018/07/31 05:38:56 schmonz Exp $
+
+Don't bake build host into binary packages.
+
+--- upgrade.orig 2018-07-17 14:55:25.000000000 +0000
++++ upgrade
+@@ -15,6 +15,7 @@ version = readfile('version').strip()
+ shorthostname = platform.node().split('.')[0].lower()
+ okcharacters = string.ascii_letters + string.digits
+ shorthostname = ''.join(c for c in shorthostname if c in okcharacters)
++shorthostname = 'pkgsrchostname'
+
+ os.chdir('link-install')
+
Home |
Main Index |
Thread Index |
Old Index