Actually removing the .pyenv directory.

This commit is contained in:
Alex Huddleston 2019-02-09 10:55:14 -06:00
parent a66a4d01e4
commit 49627606f7
16279 changed files with 0 additions and 1280576 deletions

View file

@ -1 +0,0 @@
2to3-3.7

View file

@ -1,5 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python3.7
import sys
from lib2to3.main import main
sys.exit(main("lib2to3.fixes"))

View file

@ -1,232 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/perl
# WARNING: do not edit!
# Generated by Makefile from tools/c_rehash.in
# Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved.
#
# Licensed under the OpenSSL license (the "License"). You may not use
# this file except in compliance with the License. You can obtain a copy
# in the file LICENSE in the source distribution or at
# https://www.openssl.org/source/license.html
# Perl c_rehash script, scan all files in a directory
# and add symbolic links to their hash values.
my $dir = "";
my $prefix = "/Users/shadow8t4/git/MultiPub/.pyenv";
my $errorcount = 0;
my $openssl = $ENV{OPENSSL} || "openssl";
my $pwd;
my $x509hash = "-subject_hash";
my $crlhash = "-hash";
my $verbose = 0;
my $symlink_exists=eval {symlink("",""); 1};
my $removelinks = 1;
## Parse flags.
while ( $ARGV[0] =~ /^-/ ) {
my $flag = shift @ARGV;
last if ( $flag eq '--');
if ( $flag eq '-old') {
$x509hash = "-subject_hash_old";
$crlhash = "-hash_old";
} elsif ( $flag eq '-h' || $flag eq '-help' ) {
help();
} elsif ( $flag eq '-n' ) {
$removelinks = 0;
} elsif ( $flag eq '-v' ) {
$verbose++;
}
else {
print STDERR "Usage error; try -h.\n";
exit 1;
}
}
sub help {
print "Usage: c_rehash [-old] [-h] [-help] [-v] [dirs...]\n";
print " -old use old-style digest\n";
print " -h or -help print this help text\n";
print " -v print files removed and linked\n";
exit 0;
}
eval "require Cwd";
if (defined(&Cwd::getcwd)) {
$pwd=Cwd::getcwd();
} else {
$pwd=`pwd`;
chomp($pwd);
}
# DOS/Win32 or Unix delimiter? Prefix our installdir, then search.
my $path_delim = ($pwd =~ /^[a-z]\:/i) ? ';' : ':';
$ENV{PATH} = "$prefix/bin" . ($ENV{PATH} ? $path_delim . $ENV{PATH} : "");
if (! -x $openssl) {
my $found = 0;
foreach (split /$path_delim/, $ENV{PATH}) {
if (-x "$_/$openssl") {
$found = 1;
$openssl = "$_/$openssl";
last;
}
}
if ($found == 0) {
print STDERR "c_rehash: rehashing skipped ('openssl' program not available)\n";
exit 0;
}
}
if (@ARGV) {
@dirlist = @ARGV;
} elsif ($ENV{SSL_CERT_DIR}) {
@dirlist = split /$path_delim/, $ENV{SSL_CERT_DIR};
} else {
$dirlist[0] = "$dir/certs";
}
if (-d $dirlist[0]) {
chdir $dirlist[0];
$openssl="$pwd/$openssl" if (!-x $openssl);
chdir $pwd;
}
foreach (@dirlist) {
if (-d $_ ) {
if ( -w $_) {
hash_dir($_);
} else {
print "Skipping $_, can't write\n";
$errorcount++;
}
}
}
exit($errorcount);
sub hash_dir {
my %hashlist;
print "Doing $_[0]\n";
chdir $_[0];
opendir(DIR, ".");
my @flist = sort readdir(DIR);
closedir DIR;
if ( $removelinks ) {
# Delete any existing symbolic links
foreach (grep {/^[\da-f]+\.r{0,1}\d+$/} @flist) {
if (-l $_) {
print "unlink $_" if $verbose;
unlink $_ || warn "Can't unlink $_, $!\n";
}
}
}
FILE: foreach $fname (grep {/\.(pem)|(crt)|(cer)|(crl)$/} @flist) {
# Check to see if certificates and/or CRLs present.
my ($cert, $crl) = check_file($fname);
if (!$cert && !$crl) {
print STDERR "WARNING: $fname does not contain a certificate or CRL: skipping\n";
next;
}
link_hash_cert($fname) if ($cert);
link_hash_crl($fname) if ($crl);
}
}
sub check_file {
my ($is_cert, $is_crl) = (0,0);
my $fname = $_[0];
open IN, $fname;
while(<IN>) {
if (/^-----BEGIN (.*)-----/) {
my $hdr = $1;
if ($hdr =~ /^(X509 |TRUSTED |)CERTIFICATE$/) {
$is_cert = 1;
last if ($is_crl);
} elsif ($hdr eq "X509 CRL") {
$is_crl = 1;
last if ($is_cert);
}
}
}
close IN;
return ($is_cert, $is_crl);
}
# Link a certificate to its subject name hash value, each hash is of
# the form <hash>.<n> where n is an integer. If the hash value already exists
# then we need to up the value of n, unless its a duplicate in which
# case we skip the link. We check for duplicates by comparing the
# certificate fingerprints
sub link_hash_cert {
my $fname = $_[0];
$fname =~ s/'/'\\''/g;
my ($hash, $fprint) = `"$openssl" x509 $x509hash -fingerprint -noout -in "$fname"`;
chomp $hash;
chomp $fprint;
$fprint =~ s/^.*=//;
$fprint =~ tr/://d;
my $suffix = 0;
# Search for an unused hash filename
while(exists $hashlist{"$hash.$suffix"}) {
# Hash matches: if fingerprint matches its a duplicate cert
if ($hashlist{"$hash.$suffix"} eq $fprint) {
print STDERR "WARNING: Skipping duplicate certificate $fname\n";
return;
}
$suffix++;
}
$hash .= ".$suffix";
if ($symlink_exists) {
print "link $fname -> $hash\n" if $verbose;
symlink $fname, $hash || warn "Can't symlink, $!";
} else {
print "copy $fname -> $hash\n" if $verbose;
if (open($in, "<", $fname)) {
if (open($out,">", $hash)) {
print $out $_ while (<$in>);
close $out;
} else {
warn "can't open $hash for write, $!";
}
close $in;
} else {
warn "can't open $fname for read, $!";
}
}
$hashlist{$hash} = $fprint;
}
# Same as above except for a CRL. CRL links are of the form <hash>.r<n>
sub link_hash_crl {
my $fname = $_[0];
$fname =~ s/'/'\\''/g;
my ($hash, $fprint) = `"$openssl" crl $crlhash -fingerprint -noout -in '$fname'`;
chomp $hash;
chomp $fprint;
$fprint =~ s/^.*=//;
$fprint =~ tr/://d;
my $suffix = 0;
# Search for an unused hash filename
while(exists $hashlist{"$hash.r$suffix"}) {
# Hash matches: if fingerprint matches its a duplicate cert
if ($hashlist{"$hash.r$suffix"} eq $fprint) {
print STDERR "WARNING: Skipping duplicate CRL $fname\n";
return;
}
$suffix++;
}
$hash .= ".r$suffix";
if ($symlink_exists) {
print "link $fname -> $hash\n" if $verbose;
symlink $fname, $hash || warn "Can't symlink, $!";
} else {
print "cp $fname -> $hash\n" if $verbose;
system ("cp", $fname, $hash);
warn "Can't copy, $!" if ($? >> 8) != 0;
}
$hashlist{$hash} = $fprint;
}

View file

@ -1 +0,0 @@
tic

Binary file not shown.

View file

@ -1,11 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from setuptools.command.easy_install import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())

View file

@ -1,11 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from pylint import run_epylint
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(run_epylint())

View file

@ -1 +0,0 @@
idle3.7

View file

@ -1,5 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python3.7
from idlelib.pyshell import main
if __name__ == '__main__':
main()

Binary file not shown.

View file

@ -1 +0,0 @@
tic

View file

@ -1,11 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from isort.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())

View file

@ -1 +0,0 @@
xz

View file

@ -1 +0,0 @@
xzdiff

View file

@ -1 +0,0 @@
xzdiff

View file

@ -1 +0,0 @@
xzgrep

View file

@ -1 +0,0 @@
xzgrep

View file

@ -1 +0,0 @@
xzgrep

View file

@ -1 +0,0 @@
xzless

View file

@ -1 +0,0 @@
xz

Binary file not shown.

Binary file not shown.

View file

@ -1 +0,0 @@
xzmore

View file

@ -1,207 +0,0 @@
#!/bin/sh
# $Id: ncurses-config.in,v 1.36 2017/12/09 22:45:44 tom Exp $
##############################################################################
# Copyright (c) 2006-2015,2017 Free Software Foundation, Inc. #
# #
# Permission is hereby granted, free of charge, to any person obtaining a #
# copy of this software and associated documentation files (the "Software"), #
# to deal in the Software without restriction, including without limitation #
# the rights to use, copy, modify, merge, publish, distribute, distribute #
# with modifications, sublicense, and/or sell copies of the Software, and to #
# permit persons to whom the Software is furnished to do so, subject to the #
# following conditions: #
# #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
# DEALINGS IN THE SOFTWARE. #
# #
# Except as contained in this notice, the name(s) of the above copyright #
# holders shall not be used in advertising or otherwise to promote the sale, #
# use or other dealings in this Software without prior written #
# authorization. #
##############################################################################
#
# Author: Thomas E. Dickey, 2006-on
LANG=C; export LANG
LANGUAGE=C; export LANGUAGE
LC_ALL=C; export LC_ALL
LC_CTYPE=C; export LC_CTYPE
prefix="/Users/shadow8t4/git/MultiPub/.pyenv"
exec_prefix="${prefix}"
bindir="${exec_prefix}/bin"
includedir="${prefix}/include"
libdir="${exec_prefix}/lib"
datarootdir="${prefix}/share"
datadir="${datarootdir}"
mandir="${datarootdir}/man"
THIS="ncursesw"
TINFO_LIB="tinfow"
RPATH_LIST="${libdir}"
includesubdir="${prefix}/include/${THIS}"
# Ensure that RPATH_LIST contains only absolute pathnames, if it is nonempty.
# We cannot filter it out within the build-process since the variable is used
# in some special cases of installation using a relative path.
if test -n "$RPATH_LIST"
then
save_IFS="$IFS"
IFS=':'
filtered=
for item in $RPATH_LIST
do
case "$item" in
./*|../*|*/..|*/../*)
;;
*)
test -n "$filtered" && filtered="${filtered}:"
filtered="${filtered}${item}"
;;
esac
done
IFS="$save_IFS"
# if the result is empty, there is little we can do to fix it
RPATH_LIST="$filtered"
fi
# with --disable-overwrite, we installed into a subdirectory, but transformed
# the headers to include like this:
# <ncursesw/curses.h>
if test xno = xno ; then
case $includedir in
$prefix/include/ncursesw)
includedir=`echo "$includedir" | sed -e 's,/[^/]*$,,'`
;;
esac
fi
test $# = 0 && exec /bin/sh $0 --error
while test $# -gt 0; do
case "$1" in
# basic configuration
--prefix)
echo "$prefix"
;;
--exec-prefix)
echo "$exec_prefix"
;;
# compile/link
--cflags)
INCS=" -D_DARWIN_C_SOURCE"
if test "xno" = xno ; then
INCS="$INCS -I${includesubdir}"
fi
if test "${includedir}" != /usr/include ; then
INCS="$INCS -I${includedir}"
fi
sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
$INCS
ENDECHO
;;
--libs)
if test "$libdir" = /usr/lib
then
LIBDIR=
else
LIBDIR=-L$libdir
fi
if test tinfo = ncurses ; then
sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
$LIBDIR -l${THIS}
ENDECHO
else
sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
$LIBDIR -l${THIS} -l${TINFO_LIB}
ENDECHO
fi
;;
# identification
--version)
echo "6.1.20180127"
;;
--abi-version)
echo "6"
;;
--mouse-version)
echo "2"
;;
# locations
--bindir)
echo "${bindir}"
;;
--datadir)
echo "${datadir}"
;;
--includedir)
INCS=
if test "xno" = xno ; then
INCS="${includesubdir}"
elif test "${includedir}" != /usr/include ; then
INCS="${includedir}"
fi
echo $INCS
;;
--libdir)
echo "${libdir}"
;;
--mandir)
echo "${mandir}"
;;
--terminfo)
echo "/Users/shadow8t4/git/MultiPub/.pyenv/share/terminfo"
;;
--terminfo-dirs)
echo "/Users/shadow8t4/git/MultiPub/.pyenv/share/terminfo"
;;
--termpath)
echo "/etc/termcap:/usr/share/misc/termcap"
;;
# general info
--help)
cat <<ENDHELP
Usage: `basename $0` [options]
Options:
--prefix echos the package-prefix of ${THIS}
--exec-prefix echos the executable-prefix of ${THIS}
--cflags echos the C compiler flags needed to compile with ${THIS}
--libs echos the libraries needed to link with ${THIS}
--version echos the release+patchdate version of ${THIS}
--abi-version echos the ABI version of ${THIS}
--mouse-version echos the mouse-interface version of ${THIS}
--bindir echos the directory containing ${THIS} programs
--datadir echos the directory containing ${THIS} data
--includedir echos the directory containing ${THIS} header files
--libdir echos the directory containing ${THIS} libraries
--mandir echos the directory containing ${THIS} manpages
--terminfo echos the \$TERMINFO terminfo database path
--terminfo-dirs echos the \$TERMINFO_DIRS directory list
--termpath echos the \$TERMPATH termcap list
--help prints this message
ENDHELP
;;
--error|*)
/bin/sh $0 --help 1>&2
exit 1
;;
esac
shift
done
# vi:ts=4 sw=4
# vile:shmode

Binary file not shown.

View file

@ -1,11 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())

View file

@ -1 +0,0 @@
pydoc3.7

View file

@ -1 +0,0 @@
pydoc3.7

View file

@ -1,5 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python3.7
import pydoc
if __name__ == '__main__':
pydoc.cli()

View file

@ -1,11 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from pylint import run_pylint
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(run_pylint())

View file

@ -1,11 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from pylint import run_pyreverse
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(run_pyreverse())

View file

@ -1 +0,0 @@
python3.7

View file

@ -1 +0,0 @@
python3.7

View file

@ -1 +0,0 @@
python3.7m-config

Binary file not shown.

View file

@ -1 +0,0 @@
python3.7m-config

View file

@ -1 +0,0 @@
python3.7

View file

@ -1,69 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python3.7m
# -*- python -*-
# Keep this script in sync with python-config.sh.in
import getopt
import os
import sys
import sysconfig
valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags',
'ldflags', 'extension-suffix', 'help', 'abiflags', 'configdir']
def exit_with_usage(code=1):
print("Usage: {0} [{1}]".format(
sys.argv[0], '|'.join('--'+opt for opt in valid_opts)), file=sys.stderr)
sys.exit(code)
try:
opts, args = getopt.getopt(sys.argv[1:], '', valid_opts)
except getopt.error:
exit_with_usage()
if not opts:
exit_with_usage()
pyver = sysconfig.get_config_var('VERSION')
getvar = sysconfig.get_config_var
opt_flags = [flag for (flag, val) in opts]
if '--help' in opt_flags:
exit_with_usage(code=0)
for opt in opt_flags:
if opt == '--prefix':
print(sysconfig.get_config_var('prefix'))
elif opt == '--exec-prefix':
print(sysconfig.get_config_var('exec_prefix'))
elif opt in ('--includes', '--cflags'):
flags = ['-I' + sysconfig.get_path('include'),
'-I' + sysconfig.get_path('platinclude')]
if opt == '--cflags':
flags.extend(getvar('CFLAGS').split())
print(' '.join(flags))
elif opt in ('--libs', '--ldflags'):
libs = ['-lpython' + pyver + sys.abiflags]
libs += getvar('LIBS').split()
libs += getvar('SYSLIBS').split()
# add the prefix/lib/pythonX.Y/config dir, but only if there is no
# shared library in prefix/lib/.
if opt == '--ldflags':
if not getvar('Py_ENABLE_SHARED'):
libs.insert(0, '-L' + getvar('LIBPL'))
if not getvar('PYTHONFRAMEWORK'):
libs.extend(getvar('LINKFORSHARED').split())
print(' '.join(libs))
elif opt == '--extension-suffix':
print(sysconfig.get_config_var('EXT_SUFFIX'))
elif opt == '--abiflags':
print(sys.abiflags)
elif opt == '--configdir':
print(sysconfig.get_config_var('LIBPL'))

View file

@ -1 +0,0 @@
pyvenv-3.7

View file

@ -1,17 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python3.7
if __name__ == '__main__':
import sys
import pathlib
executable = pathlib.Path(sys.executable or 'python3').name
print('WARNING: the pyenv script is deprecated in favour of '
f'`{executable} -m venv`', file=sys.stderr)
rc = 1
try:
import venv
venv.main()
rc = 0
except Exception as e:
print('Error: %s' % e, file=sys.stderr)
sys.exit(rc)

View file

@ -1 +0,0 @@
tset

Binary file not shown.

View file

@ -1,883 +0,0 @@
#! /bin/sh
# restart with tclsh \
exec tclsh "$0" ${1+"$@"}
package require sqlite3
# Run this TCL script using "testfixture" in order get a report that shows
# how much disk space is used by a particular data to actually store data
# versus how much space is unused.
#
if {[catch {
# Argument $tname is the name of a table within the database opened by
# database handle [db]. Return true if it is a WITHOUT ROWID table, or
# false otherwise.
#
proc is_without_rowid {tname} {
set t [string map {' ''} $tname]
db eval "PRAGMA index_list = '$t'" o {
if {$o(origin) == "pk"} {
set n $o(name)
if {0==[db one { SELECT count(*) FROM sqlite_master WHERE name=$n }]} {
return 1
}
}
}
return 0
}
# Read and run TCL commands from standard input. Used to implement
# the --tclsh option.
#
proc tclsh {} {
set line {}
while {![eof stdin]} {
if {$line!=""} {
puts -nonewline "> "
} else {
puts -nonewline "% "
}
flush stdout
append line [gets stdin]
if {[info complete $line]} {
if {[catch {uplevel #0 $line} result]} {
puts stderr "Error: $result"
} elseif {$result!=""} {
puts $result
}
set line {}
} else {
append line \n
}
}
}
# Get the name of the database to analyze
#
proc usage {} {
set argv0 [file rootname [file tail [info script]]]
puts stderr "Usage: $argv0 ?--pageinfo? ?--stats? database-filename"
puts stderr {
Analyze the SQLite3 database file specified by the "database-filename"
argument and output a report detailing size and storage efficiency
information for the database and its constituent tables and indexes.
Options:
--pageinfo Show how each page of the database-file is used
--stats Output SQL text that creates a new database containing
statistics about the database that was analyzed
--tclsh Run the built-in TCL interpreter interactively (for debugging)
--version Show the version number of SQLite
}
exit 1
}
set file_to_analyze {}
set flags(-pageinfo) 0
set flags(-stats) 0
set flags(-debug) 0
append argv {}
foreach arg $argv {
if {[regexp {^-+pageinfo$} $arg]} {
set flags(-pageinfo) 1
} elseif {[regexp {^-+stats$} $arg]} {
set flags(-stats) 1
} elseif {[regexp {^-+debug$} $arg]} {
set flags(-debug) 1
} elseif {[regexp {^-+tclsh$} $arg]} {
tclsh
exit 0
} elseif {[regexp {^-+version$} $arg]} {
sqlite3 mem :memory:
puts [mem one {SELECT sqlite_version()||' '||sqlite_source_id()}]
mem close
exit 0
} elseif {[regexp {^-} $arg]} {
puts stderr "Unknown option: $arg"
usage
} elseif {$file_to_analyze!=""} {
usage
} else {
set file_to_analyze $arg
}
}
if {$file_to_analyze==""} usage
set root_filename $file_to_analyze
regexp {^file:(//)?([^?]*)} $file_to_analyze all x1 root_filename
if {![file exists $root_filename]} {
puts stderr "No such file: $root_filename"
exit 1
}
if {![file readable $root_filename]} {
puts stderr "File is not readable: $root_filename"
exit 1
}
set true_file_size [file size $root_filename]
if {$true_file_size<512} {
puts stderr "Empty or malformed database: $root_filename"
exit 1
}
# Compute the total file size assuming test_multiplexor is being used.
# Assume that SQLITE_ENABLE_8_3_NAMES might be enabled
#
set extension [file extension $root_filename]
set pattern $root_filename
append pattern {[0-3][0-9][0-9]}
foreach f [glob -nocomplain $pattern] {
incr true_file_size [file size $f]
set extension {}
}
if {[string length $extension]>=2 && [string length $extension]<=4} {
set pattern [file rootname $root_filename]
append pattern {.[0-3][0-9][0-9]}
foreach f [glob -nocomplain $pattern] {
incr true_file_size [file size $f]
}
}
# Open the database
#
if {[catch {sqlite3 db $file_to_analyze -uri 1} msg]} {
puts stderr "error trying to open $file_to_analyze: $msg"
exit 1
}
if {$flags(-debug)} {
proc dbtrace {txt} {puts $txt; flush stdout;}
db trace ::dbtrace
}
db eval {SELECT count(*) FROM sqlite_master}
set pageSize [expr {wide([db one {PRAGMA page_size}])}]
if {$flags(-pageinfo)} {
db eval {CREATE VIRTUAL TABLE temp.stat USING dbstat}
db eval {SELECT name, path, pageno FROM temp.stat ORDER BY pageno} {
puts "$pageno $name $path"
}
exit 0
}
if {$flags(-stats)} {
db eval {CREATE VIRTUAL TABLE temp.stat USING dbstat}
puts "BEGIN;"
puts "CREATE TABLE stats("
puts " name STRING, /* Name of table or index */"
puts " path INTEGER, /* Path to page from root */"
puts " pageno INTEGER, /* Page number */"
puts " pagetype STRING, /* 'internal', 'leaf' or 'overflow' */"
puts " ncell INTEGER, /* Cells on page (0 for overflow) */"
puts " payload INTEGER, /* Bytes of payload on this page */"
puts " unused INTEGER, /* Bytes of unused space on this page */"
puts " mx_payload INTEGER, /* Largest payload size of all cells */"
puts " pgoffset INTEGER, /* Offset of page in file */"
puts " pgsize INTEGER /* Size of the page */"
puts ");"
db eval {SELECT quote(name) || ',' ||
quote(path) || ',' ||
quote(pageno) || ',' ||
quote(pagetype) || ',' ||
quote(ncell) || ',' ||
quote(payload) || ',' ||
quote(unused) || ',' ||
quote(mx_payload) || ',' ||
quote(pgoffset) || ',' ||
quote(pgsize) AS x FROM stat} {
puts "INSERT INTO stats VALUES($x);"
}
puts "COMMIT;"
exit 0
}
# In-memory database for collecting statistics. This script loops through
# the tables and indices in the database being analyzed, adding a row for each
# to an in-memory database (for which the schema is shown below). It then
# queries the in-memory db to produce the space-analysis report.
#
sqlite3 mem :memory:
if {$flags(-debug)} {
proc dbtrace {txt} {puts $txt; flush stdout;}
mem trace ::dbtrace
}
set tabledef {CREATE TABLE space_used(
name clob, -- Name of a table or index in the database file
tblname clob, -- Name of associated table
is_index boolean, -- TRUE if it is an index, false for a table
is_without_rowid boolean, -- TRUE if WITHOUT ROWID table
nentry int, -- Number of entries in the BTree
leaf_entries int, -- Number of leaf entries
depth int, -- Depth of the b-tree
payload int, -- Total amount of data stored in this table or index
ovfl_payload int, -- Total amount of data stored on overflow pages
ovfl_cnt int, -- Number of entries that use overflow
mx_payload int, -- Maximum payload size
int_pages int, -- Number of interior pages used
leaf_pages int, -- Number of leaf pages used
ovfl_pages int, -- Number of overflow pages used
int_unused int, -- Number of unused bytes on interior pages
leaf_unused int, -- Number of unused bytes on primary pages
ovfl_unused int, -- Number of unused bytes on overflow pages
gap_cnt int, -- Number of gaps in the page layout
compressed_size int -- Total bytes stored on disk
);}
mem eval $tabledef
# Create a temporary "dbstat" virtual table.
#
db eval {CREATE VIRTUAL TABLE temp.stat USING dbstat}
db eval {CREATE TEMP TABLE dbstat AS SELECT * FROM temp.stat
ORDER BY name, path}
db eval {DROP TABLE temp.stat}
set isCompressed 0
set compressOverhead 0
set depth 0
set sql { SELECT name, tbl_name FROM sqlite_master WHERE rootpage>0 }
foreach {name tblname} [concat sqlite_master sqlite_master [db eval $sql]] {
set is_index [expr {$name!=$tblname}]
set is_without_rowid [is_without_rowid $name]
db eval {
SELECT
sum(ncell) AS nentry,
sum((pagetype=='leaf')*ncell) AS leaf_entries,
sum(payload) AS payload,
sum((pagetype=='overflow') * payload) AS ovfl_payload,
sum(path LIKE '%+000000') AS ovfl_cnt,
max(mx_payload) AS mx_payload,
sum(pagetype=='internal') AS int_pages,
sum(pagetype=='leaf') AS leaf_pages,
sum(pagetype=='overflow') AS ovfl_pages,
sum((pagetype=='internal') * unused) AS int_unused,
sum((pagetype=='leaf') * unused) AS leaf_unused,
sum((pagetype=='overflow') * unused) AS ovfl_unused,
sum(pgsize) AS compressed_size,
max((length(CASE WHEN path LIKE '%+%' THEN '' ELSE path END)+3)/4)
AS depth
FROM temp.dbstat WHERE name = $name
} break
set total_pages [expr {$leaf_pages+$int_pages+$ovfl_pages}]
set storage [expr {$total_pages*$pageSize}]
if {!$isCompressed && $storage>$compressed_size} {
set isCompressed 1
set compressOverhead 14
}
# Column 'gap_cnt' is set to the number of non-contiguous entries in the
# list of pages visited if the b-tree structure is traversed in a top-down
# fashion (each node visited before its child-tree is passed). Any overflow
# chains present are traversed from start to finish before any child-tree
# is.
#
set gap_cnt 0
set prev 0
db eval {
SELECT pageno, pagetype FROM temp.dbstat
WHERE name=$name
ORDER BY pageno
} {
if {$prev>0 && $pagetype=="leaf" && $pageno!=$prev+1} {
incr gap_cnt
}
set prev $pageno
}
mem eval {
INSERT INTO space_used VALUES(
$name,
$tblname,
$is_index,
$is_without_rowid,
$nentry,
$leaf_entries,
$depth,
$payload,
$ovfl_payload,
$ovfl_cnt,
$mx_payload,
$int_pages,
$leaf_pages,
$ovfl_pages,
$int_unused,
$leaf_unused,
$ovfl_unused,
$gap_cnt,
$compressed_size
);
}
}
proc integerify {real} {
if {[string is double -strict $real]} {
return [expr {wide($real)}]
} else {
return 0
}
}
mem function int integerify
# Quote a string for use in an SQL query. Examples:
#
# [quote {hello world}] == {'hello world'}
# [quote {hello world's}] == {'hello world''s'}
#
proc quote {txt} {
return [string map {' ''} $txt]
}
# Output a title line
#
proc titleline {title} {
if {$title==""} {
puts [string repeat * 79]
} else {
set len [string length $title]
set stars [string repeat * [expr 79-$len-5]]
puts "*** $title $stars"
}
}
# Generate a single line of output in the statistics section of the
# report.
#
proc statline {title value {extra {}}} {
set len [string length $title]
set dots [string repeat . [expr 50-$len]]
set len [string length $value]
set sp2 [string range { } $len end]
if {$extra ne ""} {
set extra " $extra"
}
puts "$title$dots $value$sp2$extra"
}
# Generate a formatted percentage value for $num/$denom
#
proc percent {num denom {of {}}} {
if {$denom==0.0} {return ""}
set v [expr {$num*100.0/$denom}]
set of {}
if {$v==100.0 || $v<0.001 || ($v>1.0 && $v<99.0)} {
return [format {%5.1f%% %s} $v $of]
} elseif {$v<0.1 || $v>99.9} {
return [format {%7.3f%% %s} $v $of]
} else {
return [format {%6.2f%% %s} $v $of]
}
}
proc divide {num denom} {
if {$denom==0} {return 0.0}
return [format %.2f [expr double($num)/double($denom)]]
}
# Generate a subreport that covers some subset of the database.
# the $where clause determines which subset to analyze.
#
proc subreport {title where showFrag} {
global pageSize file_pgcnt compressOverhead
# Query the in-memory database for the sum of various statistics
# for the subset of tables/indices identified by the WHERE clause in
# $where. Note that even if the WHERE clause matches no rows, the
# following query returns exactly one row (because it is an aggregate).
#
# The results of the query are stored directly by SQLite into local
# variables (i.e. $nentry, $payload etc.).
#
mem eval "
SELECT
int(sum(
CASE WHEN (is_without_rowid OR is_index) THEN nentry
ELSE leaf_entries
END
)) AS nentry,
int(sum(payload)) AS payload,
int(sum(ovfl_payload)) AS ovfl_payload,
max(mx_payload) AS mx_payload,
int(sum(ovfl_cnt)) as ovfl_cnt,
int(sum(leaf_pages)) AS leaf_pages,
int(sum(int_pages)) AS int_pages,
int(sum(ovfl_pages)) AS ovfl_pages,
int(sum(leaf_unused)) AS leaf_unused,
int(sum(int_unused)) AS int_unused,
int(sum(ovfl_unused)) AS ovfl_unused,
int(sum(gap_cnt)) AS gap_cnt,
int(sum(compressed_size)) AS compressed_size,
int(max(depth)) AS depth,
count(*) AS cnt
FROM space_used WHERE $where" {} {}
# Output the sub-report title, nicely decorated with * characters.
#
puts ""
titleline $title
puts ""
# Calculate statistics and store the results in TCL variables, as follows:
#
# total_pages: Database pages consumed.
# total_pages_percent: Pages consumed as a percentage of the file.
# storage: Bytes consumed.
# payload_percent: Payload bytes used as a percentage of $storage.
# total_unused: Unused bytes on pages.
# avg_payload: Average payload per btree entry.
# avg_fanout: Average fanout for internal pages.
# avg_unused: Average unused bytes per btree entry.
# avg_meta: Average metadata overhead per entry.
# ovfl_cnt_percent: Percentage of btree entries that use overflow pages.
#
set total_pages [expr {$leaf_pages+$int_pages+$ovfl_pages}]
set total_pages_percent [percent $total_pages $file_pgcnt]
set storage [expr {$total_pages*$pageSize}]
set payload_percent [percent $payload $storage {of storage consumed}]
set total_unused [expr {$ovfl_unused+$int_unused+$leaf_unused}]
set avg_payload [divide $payload $nentry]
set avg_unused [divide $total_unused $nentry]
set total_meta [expr {$storage - $payload - $total_unused}]
set total_meta [expr {$total_meta + 4*($ovfl_pages - $ovfl_cnt)}]
set meta_percent [percent $total_meta $storage {of metadata}]
set avg_meta [divide $total_meta $nentry]
if {$int_pages>0} {
# TODO: Is this formula correct?
set nTab [mem eval "
SELECT count(*) FROM (
SELECT DISTINCT tblname FROM space_used WHERE $where AND is_index=0
)
"]
set avg_fanout [mem eval "
SELECT (sum(leaf_pages+int_pages)-$nTab)/sum(int_pages) FROM space_used
WHERE $where
"]
set avg_fanout [format %.2f $avg_fanout]
}
set ovfl_cnt_percent [percent $ovfl_cnt $nentry {of all entries}]
# Print out the sub-report statistics.
#
statline {Percentage of total database} $total_pages_percent
statline {Number of entries} $nentry
statline {Bytes of storage consumed} $storage
if {$compressed_size!=$storage} {
set compressed_size [expr {$compressed_size+$compressOverhead*$total_pages}]
set pct [expr {$compressed_size*100.0/$storage}]
set pct [format {%5.1f%%} $pct]
statline {Bytes used after compression} $compressed_size $pct
}
statline {Bytes of payload} $payload $payload_percent
statline {Bytes of metadata} $total_meta $meta_percent
if {$cnt==1} {statline {B-tree depth} $depth}
statline {Average payload per entry} $avg_payload
statline {Average unused bytes per entry} $avg_unused
statline {Average metadata per entry} $avg_meta
if {[info exists avg_fanout]} {
statline {Average fanout} $avg_fanout
}
if {$showFrag && $total_pages>1} {
set fragmentation [percent $gap_cnt [expr {$total_pages-1}]]
statline {Non-sequential pages} $gap_cnt $fragmentation
}
statline {Maximum payload per entry} $mx_payload
statline {Entries that use overflow} $ovfl_cnt $ovfl_cnt_percent
if {$int_pages>0} {
statline {Index pages used} $int_pages
}
statline {Primary pages used} $leaf_pages
statline {Overflow pages used} $ovfl_pages
statline {Total pages used} $total_pages
if {$int_unused>0} {
set int_unused_percent [
percent $int_unused [expr {$int_pages*$pageSize}] {of index space}]
statline "Unused bytes on index pages" $int_unused $int_unused_percent
}
statline "Unused bytes on primary pages" $leaf_unused [
percent $leaf_unused [expr {$leaf_pages*$pageSize}] {of primary space}]
statline "Unused bytes on overflow pages" $ovfl_unused [
percent $ovfl_unused [expr {$ovfl_pages*$pageSize}] {of overflow space}]
statline "Unused bytes on all pages" $total_unused [
percent $total_unused $storage {of all space}]
return 1
}
# Calculate the overhead in pages caused by auto-vacuum.
#
# This procedure calculates and returns the number of pages used by the
# auto-vacuum 'pointer-map'. If the database does not support auto-vacuum,
# then 0 is returned. The two arguments are the size of the database file in
# pages and the page size used by the database (in bytes).
proc autovacuum_overhead {filePages pageSize} {
# Set $autovacuum to non-zero for databases that support auto-vacuum.
set autovacuum [db one {PRAGMA auto_vacuum}]
# If the database is not an auto-vacuum database or the file consists
# of one page only then there is no overhead for auto-vacuum. Return zero.
if {0==$autovacuum || $filePages==1} {
return 0
}
# The number of entries on each pointer map page. The layout of the
# database file is one pointer-map page, followed by $ptrsPerPage other
# pages, followed by a pointer-map page etc. The first pointer-map page
# is the second page of the file overall.
set ptrsPerPage [expr double($pageSize/5)]
# Return the number of pointer map pages in the database.
return [expr wide(ceil( ($filePages-1.0)/($ptrsPerPage+1.0) ))]
}
# Calculate the summary statistics for the database and store the results
# in TCL variables. They are output below. Variables are as follows:
#
# pageSize: Size of each page in bytes.
# file_bytes: File size in bytes.
# file_pgcnt: Number of pages in the file.
# file_pgcnt2: Number of pages in the file (calculated).
# av_pgcnt: Pages consumed by the auto-vacuum pointer-map.
# av_percent: Percentage of the file consumed by auto-vacuum pointer-map.
# inuse_pgcnt: Data pages in the file.
# inuse_percent: Percentage of pages used to store data.
# free_pgcnt: Free pages calculated as (<total pages> - <in-use pages>)
# free_pgcnt2: Free pages in the file according to the file header.
# free_percent: Percentage of file consumed by free pages (calculated).
# free_percent2: Percentage of file consumed by free pages (header).
# ntable: Number of tables in the db.
# nindex: Number of indices in the db.
# nautoindex: Number of indices created automatically.
# nmanindex: Number of indices created manually.
# user_payload: Number of bytes of payload in table btrees
# (not including sqlite_master)
# user_percent: $user_payload as a percentage of total file size.
### The following, setting $file_bytes based on the actual size of the file
### on disk, causes this tool to choke on zipvfs databases. So set it based
### on the return of [PRAGMA page_count] instead.
if 0 {
set file_bytes [file size $file_to_analyze]
set file_pgcnt [expr {$file_bytes/$pageSize}]
}
set file_pgcnt [db one {PRAGMA page_count}]
set file_bytes [expr {$file_pgcnt * $pageSize}]
set av_pgcnt [autovacuum_overhead $file_pgcnt $pageSize]
set av_percent [percent $av_pgcnt $file_pgcnt]
set sql {SELECT sum(leaf_pages+int_pages+ovfl_pages) FROM space_used}
set inuse_pgcnt [expr wide([mem eval $sql])]
set inuse_percent [percent $inuse_pgcnt $file_pgcnt]
set free_pgcnt [expr {$file_pgcnt-$inuse_pgcnt-$av_pgcnt}]
set free_percent [percent $free_pgcnt $file_pgcnt]
set free_pgcnt2 [db one {PRAGMA freelist_count}]
set free_percent2 [percent $free_pgcnt2 $file_pgcnt]
set file_pgcnt2 [expr {$inuse_pgcnt+$free_pgcnt2+$av_pgcnt}]
set ntable [db eval {SELECT count(*)+1 FROM sqlite_master WHERE type='table'}]
set nindex [db eval {SELECT count(*) FROM sqlite_master WHERE type='index'}]
set sql {SELECT count(*) FROM sqlite_master WHERE name LIKE 'sqlite_autoindex%'}
set nautoindex [db eval $sql]
set nmanindex [expr {$nindex-$nautoindex}]
# set total_payload [mem eval "SELECT sum(payload) FROM space_used"]
set user_payload [mem one {SELECT int(sum(payload)) FROM space_used
WHERE NOT is_index AND name NOT LIKE 'sqlite_master'}]
set user_percent [percent $user_payload $file_bytes]
# Output the summary statistics calculated above.
#
puts "/** Disk-Space Utilization Report For $root_filename"
puts ""
statline {Page size in bytes} $pageSize
statline {Pages in the whole file (measured)} $file_pgcnt
statline {Pages in the whole file (calculated)} $file_pgcnt2
statline {Pages that store data} $inuse_pgcnt $inuse_percent
statline {Pages on the freelist (per header)} $free_pgcnt2 $free_percent2
statline {Pages on the freelist (calculated)} $free_pgcnt $free_percent
statline {Pages of auto-vacuum overhead} $av_pgcnt $av_percent
statline {Number of tables in the database} $ntable
statline {Number of indices} $nindex
statline {Number of defined indices} $nmanindex
statline {Number of implied indices} $nautoindex
if {$isCompressed} {
statline {Size of uncompressed content in bytes} $file_bytes
set efficiency [percent $true_file_size $file_bytes]
statline {Size of compressed file on disk} $true_file_size $efficiency
} else {
statline {Size of the file in bytes} $file_bytes
}
statline {Bytes of user payload stored} $user_payload $user_percent
# Output table rankings
#
puts ""
titleline "Page counts for all tables with their indices"
puts ""
mem eval {SELECT tblname, count(*) AS cnt,
int(sum(int_pages+leaf_pages+ovfl_pages)) AS size
FROM space_used GROUP BY tblname ORDER BY size+0 DESC, tblname} {} {
statline [string toupper $tblname] $size [percent $size $file_pgcnt]
}
puts ""
titleline "Page counts for all tables and indices separately"
puts ""
mem eval {
SELECT
upper(name) AS nm,
int(int_pages+leaf_pages+ovfl_pages) AS size
FROM space_used
ORDER BY size+0 DESC, name} {} {
statline $nm $size [percent $size $file_pgcnt]
}
if {$isCompressed} {
puts ""
titleline "Bytes of disk space used after compression"
puts ""
set csum 0
mem eval {SELECT tblname,
int(sum(compressed_size)) +
$compressOverhead*sum(int_pages+leaf_pages+ovfl_pages)
AS csize
FROM space_used GROUP BY tblname ORDER BY csize+0 DESC, tblname} {} {
incr csum $csize
statline [string toupper $tblname] $csize [percent $csize $true_file_size]
}
set overhead [expr {$true_file_size - $csum}]
if {$overhead>0} {
statline {Header and free space} $overhead [percent $overhead $true_file_size]
}
}
# Output subreports
#
if {$nindex>0} {
subreport {All tables and indices} 1 0
}
subreport {All tables} {NOT is_index} 0
if {$nindex>0} {
subreport {All indices} {is_index} 0
}
foreach tbl [mem eval {SELECT DISTINCT tblname name FROM space_used
ORDER BY name}] {
set qn [quote $tbl]
set name [string toupper $tbl]
set n [mem eval {SELECT count(*) FROM space_used WHERE tblname=$tbl}]
if {$n>1} {
set idxlist [mem eval "SELECT name FROM space_used
WHERE tblname='$qn' AND is_index
ORDER BY 1"]
subreport "Table $name and all its indices" "tblname='$qn'" 0
subreport "Table $name w/o any indices" "name='$qn'" 1
if {[llength $idxlist]>1} {
subreport "Indices of table $name" "tblname='$qn' AND is_index" 0
}
foreach idx $idxlist {
set qidx [quote $idx]
subreport "Index [string toupper $idx] of table $name" "name='$qidx'" 1
}
} else {
subreport "Table $name" "name='$qn'" 1
}
}
# Output instructions on what the numbers above mean.
#
puts ""
titleline Definitions
puts {
Page size in bytes
The number of bytes in a single page of the database file.
Usually 1024.
Number of pages in the whole file
}
puts " The number of $pageSize-byte pages that go into forming the complete
database"
puts {
Pages that store data
The number of pages that store data, either as primary B*Tree pages or
as overflow pages. The number at the right is the data pages divided by
the total number of pages in the file.
Pages on the freelist
The number of pages that are not currently in use but are reserved for
future use. The percentage at the right is the number of freelist pages
divided by the total number of pages in the file.
Pages of auto-vacuum overhead
The number of pages that store data used by the database to facilitate
auto-vacuum. This is zero for databases that do not support auto-vacuum.
Number of tables in the database
The number of tables in the database, including the SQLITE_MASTER table
used to store schema information.
Number of indices
The total number of indices in the database.
Number of defined indices
The number of indices created using an explicit CREATE INDEX statement.
Number of implied indices
The number of indices used to implement PRIMARY KEY or UNIQUE constraints
on tables.
Size of the file in bytes
The total amount of disk space used by the entire database files.
Bytes of user payload stored
The total number of bytes of user payload stored in the database. The
schema information in the SQLITE_MASTER table is not counted when
computing this number. The percentage at the right shows the payload
divided by the total file size.
Percentage of total database
The amount of the complete database file that is devoted to storing
information described by this category.
Number of entries
The total number of B-Tree key/value pairs stored under this category.
Bytes of storage consumed
The total amount of disk space required to store all B-Tree entries
under this category. The is the total number of pages used times
the pages size.
Bytes of payload
The amount of payload stored under this category. Payload is the data
part of table entries and the key part of index entries. The percentage
at the right is the bytes of payload divided by the bytes of storage
consumed.
Bytes of metadata
The amount of formatting and structural information stored in the
table or index. Metadata includes the btree page header, the cell pointer
array, the size field for each cell, the left child pointer or non-leaf
cells, the overflow pointers for overflow cells, and the rowid value for
rowid table cells. In other words, metadata is everything that is neither
unused space nor content. The record header in the payload is counted as
content, not metadata.
Average payload per entry
The average amount of payload on each entry. This is just the bytes of
payload divided by the number of entries.
Average unused bytes per entry
The average amount of free space remaining on all pages under this
category on a per-entry basis. This is the number of unused bytes on
all pages divided by the number of entries.
Non-sequential pages
The number of pages in the table or index that are out of sequence.
Many filesystems are optimized for sequential file access so a small
number of non-sequential pages might result in faster queries,
especially for larger database files that do not fit in the disk cache.
Note that after running VACUUM, the root page of each table or index is
at the beginning of the database file and all other pages are in a
separate part of the database file, resulting in a single non-
sequential page.
Maximum payload per entry
The largest payload size of any entry.
Entries that use overflow
The number of entries that user one or more overflow pages.
Total pages used
This is the number of pages used to hold all information in the current
category. This is the sum of index, primary, and overflow pages.
Index pages used
This is the number of pages in a table B-tree that hold only key (rowid)
information and no data.
Primary pages used
This is the number of B-tree pages that hold both key and data.
Overflow pages used
The total number of overflow pages used for this category.
Unused bytes on index pages
The total number of bytes of unused space on all index pages. The
percentage at the right is the number of unused bytes divided by the
total number of bytes on index pages.
Unused bytes on primary pages
The total number of bytes of unused space on all primary pages. The
percentage at the right is the number of unused bytes divided by the
total number of bytes on primary pages.
Unused bytes on overflow pages
The total number of bytes of unused space on all overflow pages. The
percentage at the right is the number of unused bytes divided by the
total number of bytes on overflow pages.
Unused bytes on all pages
The total number of bytes of unused space on all primary and overflow
pages. The percentage at the right is the number of unused bytes
divided by the total number of bytes.
}
# Output a dump of the in-memory database. This can be used for more
# complex offline analysis.
#
titleline {}
puts "The entire text of this report can be sourced into any SQL database"
puts "engine for further analysis. All of the text above is an SQL comment."
puts "The data used to generate this report follows:"
puts "*/"
puts "BEGIN;"
puts $tabledef
unset -nocomplain x
mem eval {SELECT * FROM space_used} x {
puts -nonewline "INSERT INTO space_used VALUES"
set sep (
foreach col $x(*) {
set v $x($col)
if {$v=="" || ![string is double $v]} {set v '[quote $v]'}
puts -nonewline $sep$v
set sep ,
}
puts ");"
}
puts "COMMIT;"
} err]} {
puts "ERROR: $err"
puts $errorInfo
exit 1
}

View file

@ -1,11 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from pylint import run_symilar
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(run_symilar())

Binary file not shown.

View file

@ -1 +0,0 @@
tclsh8.6

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -1 +0,0 @@
xz

View file

@ -1 +0,0 @@
xz

View file

@ -1,11 +0,0 @@
#!/Users/shadow8t4/git/MultiPub/.pyenv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from wheel.cli import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())

View file

@ -1 +0,0 @@
wish8.6

Binary file not shown.

Binary file not shown.

View file

@ -1 +0,0 @@
xz

View file

@ -1 +0,0 @@
xzdiff

Binary file not shown.

View file

@ -1,200 +0,0 @@
#!/bin/sh
# Copyright (C) 1998, 2002, 2006, 2007 Free Software Foundation
# Copyright (C) 1993 Jean-loup Gailly
# Modified for XZ Utils by Andrew Dudman and Lasse Collin.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#SET_PATH - This line is a placeholder to ease patching this script.
# Instead of unsetting XZ_OPT, just make sure that xz will use file format
# autodetection. This way memory usage limit and thread limit can be
# specified via XZ_OPT. With gzip, bzip2, and lzop it's OK to just unset the
# environment variables.
xz='xz --format=auto'
unset GZIP BZIP BZIP2 LZOP
case ${0##*/} in
*cmp*) prog=xzcmp; cmp=${CMP:-cmp};;
*) prog=xzdiff; cmp=${DIFF:-diff};;
esac
version="$prog (XZ Utils) 5.2.4"
usage="Usage: ${0##*/} [OPTION]... FILE1 [FILE2]
Compare FILE1 to FILE2, using their uncompressed contents if they are
compressed. If FILE2 is omitted, then the files compared are FILE1 and
FILE1 from which the compression format suffix has been stripped.
Do comparisons like '$cmp' does. OPTIONs are the same as for '$cmp'.
Report bugs to <lasse.collin@tukaani.org>."
# sed script to escape all ' for the shell, and then (to handle trailing
# newlines correctly) turn trailing X on last line into '.
escape='
s/'\''/'\''\\'\'''\''/g
$s/X$/'\''/
'
while :; do
case $1 in
--h*) printf '%s\n' "$usage" || exit 2; exit;;
--v*) echo "$version" || exit 2; exit;;
--) shift; break;;
-*\'*) cmp="$cmp '"`printf '%sX\n' "$1" | sed "$escape"`;;
-?*) cmp="$cmp '$1'";;
*) break;;
esac
shift
done
cmp="$cmp --"
for file; do
test "X$file" = X- || <"$file" || exit 2
done
xz1=$xz
xz2=$xz
xz_status=0
exec 3>&1
if test $# -eq 1; then
case $1 in
*[-.]xz | *[-.]lzma | *.t[lx]z)
;;
*[-.]bz2 | *.tbz | *.tbz2)
xz1=bzip2;;
*[-.][zZ] | *_z | *[-.]gz | *.t[ag]z)
xz1=gzip;;
*[-.]lzo | *.tzo)
xz1=lzop;;
*)
echo >&2 "$0: $1: Unknown compressed file name suffix"
exit 2;;
esac
case $1 in
*[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lzo)
FILE=`expr "X$1" : 'X\(.*\)[-.][abglmoxzZ2]*$'`;;
*.t[abglx]z)
FILE=`expr "X$1" : 'X\(.*[-.]t\)[abglx]z$'`ar;;
*.tbz2)
FILE=`expr "X$1" : 'X\(.*[-.]t\)bz2$'`ar;;
*.tzo)
FILE=`expr "X$1" : 'X\(.*[-.]t\)zo$'`ar;;
esac
xz_status=$(
exec 4>&1
($xz1 -cd -- "$1" 4>&-; echo $? >&4) 3>&- | eval "$cmp" - '"$FILE"' >&3
)
elif test $# -eq 2; then
case $1 in
*[-.]bz2 | *.tbz | *.tbz2) xz1=bzip2;;
*[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) xz1=gzip;;
*[-.]lzo | *.tzo) xz1=lzop;;
esac
case $2 in
*[-.]bz2 | *.tbz | *.tbz2) xz2=bzip2;;
*[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) xz2=gzip;;
*[-.]lzo | *.tzo) xz2=lzop;;
esac
case $1 in
*[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *.t[abglx]z | *.tbz2 | *[-.]lzo | *.tzo | -)
case "$2" in
*[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *.t[abglx]z | *.tbz2 | *[-.]lzo | *.tzo | -)
if test "$1$2" = --; then
xz_status=$(
exec 4>&1
($xz1 -cdfq - 4>&-; echo $? >&4) 3>&- |
eval "$cmp" - - >&3
)
elif # Reject Solaris 8's buggy /bin/bash 2.03.
echo X | (echo X | eval "$cmp" /dev/fd/5 - >/dev/null 2>&1) 5<&0; then
xz_status=$(
exec 4>&1
($xz1 -cdfq -- "$1" 4>&-; echo $? >&4) 3>&- |
( ($xz2 -cdfq -- "$2" 4>&-; echo $? >&4) 3>&- 5<&- </dev/null |
eval "$cmp" /dev/fd/5 - >&3) 5<&0
)
cmp_status=$?
case $xz_status in
*[1-9]*) xz_status=1;;
*) xz_status=0;;
esac
(exit $cmp_status)
else
F=`expr "/$2" : '.*/\(.*\)[-.][ablmotxz2]*$'` || F=$prog
tmp=
trap '
test -n "$tmp" && rm -rf "$tmp"
(exit 2); exit 2
' HUP INT PIPE TERM 0
if type mktemp >/dev/null 2>&1; then
# Note that FreeBSD's mktemp isn't fully compatible with
# the implementations from mktemp.org and GNU coreutils.
# It is important that the -t argument is the last argument
# and that no "--" is used between -t and the template argument.
# This way this command works on all implementations.
tmp=`mktemp -d -t "$prog.XXXXXXXXXX"` || exit 2
else
# Fallback code if mktemp is missing. This isn't as
# robust as using mktemp since this doesn't try with
# different file names in case of a file name conflict.
#
# There's no need to save the original umask since
# we don't create any non-temp files. Note that using
# mkdir -m 0077 isn't secure since some mkdir implementations
# create the dir with the default umask and chmod the
# the dir afterwards.
umask 0077
mkdir -- "${TMPDIR-/tmp}/$prog.$$" || exit 2
tmp="${TMPDIR-/tmp}/$prog.$$"
fi
$xz2 -cdfq -- "$2" > "$tmp/$F" || exit 2
xz_status=$(
exec 4>&1
($xz1 -cdfq -- "$1" 4>&-; echo $? >&4) 3>&- |
eval "$cmp" - '"$tmp/$F"' >&3
)
cmp_status=$?
rm -rf "$tmp" || xz_status=$?
trap - HUP INT PIPE TERM 0
(exit $cmp_status)
fi;;
*)
xz_status=$(
exec 4>&1
($xz1 -cdfq -- "$1" 4>&-; echo $? >&4) 3>&- |
eval "$cmp" - '"$2"' >&3
);;
esac;;
*)
case "$2" in
*[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *.t[abglx]z | *.tbz2 | *[-.]lzo | *.tzo | -)
xz_status=$(
exec 4>&1
($xz2 -cdfq -- "$2" 4>&-; echo $? >&4) 3>&- |
eval "$cmp" '"$1"' - >&3
);;
*)
eval "$cmp" '"$1"' '"$2"';;
esac;;
esac
else
echo >&2 "$0: Invalid number of operands; try \`${0##*/} --help' for help"
exit 2
fi
cmp_status=$?
test "$xz_status" -eq 0 || exit 2
exit $cmp_status

View file

@ -1 +0,0 @@
xzgrep

View file

@ -1 +0,0 @@
xzgrep

View file

@ -1,215 +0,0 @@
#!/bin/sh
# xzgrep -- a wrapper around a grep program that decompresses files as needed
# Adapted from a version sent by Charles Levert <charles@comm.polymtl.ca>
# Copyright (C) 1998, 2001, 2002, 2006, 2007 Free Software Foundation
# Copyright (C) 1993 Jean-loup Gailly
# Modified for XZ Utils by Andrew Dudman and Lasse Collin.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#SET_PATH - This line is a placeholder to ease patching this script.
# Instead of unsetting XZ_OPT, just make sure that xz will use file format
# autodetection. This way memory usage limit and thread limit can be
# specified via XZ_OPT. With gzip, bzip2, and lzop it's OK to just unset the
# environment variables.
xz='xz --format=auto'
unset GZIP BZIP BZIP2 LZOP
case ${0##*/} in
*egrep*) prog=xzegrep; grep=${GREP:-egrep};;
*fgrep*) prog=xzfgrep; grep=${GREP:-fgrep};;
*) prog=xzgrep; grep=${GREP:-grep};;
esac
version="$prog (XZ Utils) 5.2.4"
usage="Usage: ${0##*/} [OPTION]... [-e] PATTERN [FILE]...
Look for instances of PATTERN in the input FILEs, using their
uncompressed contents if they are compressed.
OPTIONs are the same as for '$grep'.
Report bugs to <lasse.collin@tukaani.org>."
# sed script to escape all ' for the shell, and then (to handle trailing
# newlines correctly) turn trailing X on last line into '.
escape='
s/'\''/'\''\\'\'''\''/g
$s/X$/'\''/
'
operands=
have_pat=0
files_with_matches=0
files_without_matches=0
no_filename=0
with_filename=0
while test $# -ne 0; do
option=$1
shift
optarg=
case $option in
(-[0123456789abcdhHiIKLlnoqrRsTuUvVwxyzZ]?*)
arg2=-\'$(expr "X${option}X" : 'X-.[0-9]*\(.*\)' | sed "$escape")
eval "set -- $arg2 "'${1+"$@"}'
option=$(expr "X$option" : 'X\(-.[0-9]*\)');;
(--binary-*=* | --[lm]a*=* | --reg*=*)
;;
(-[ABCDefm] | --binary-* | --file | --[lm]a* | --reg*)
case ${1?"$option option requires an argument"} in
(*\'*)
optarg=" '"$(printf '%sX\n' "$1" | sed "$escape");;
(*)
optarg=" '$1'";;
esac
shift;;
(--)
break;;
(-?*)
;;
(*)
case $option in
(*\'*)
operands="$operands '"$(printf '%sX\n' "$option" | sed "$escape");;
(*)
operands="$operands '$option'";;
esac
${POSIXLY_CORRECT+break}
continue;;
esac
case $option in
(-[drRzZ] | --di* | --exc* | --inc* | --rec* | --nu*)
printf >&2 '%s: %s: Option not supported\n' "$0" "$option"
exit 2;;
(-[ef]* | --file | --file=* | --reg*)
have_pat=1;;
(--h | --he | --hel | --help)
echo "$usage" || exit 2
exit;;
(-H | --wi | --wit | --with | --with- | --with-f | --with-fi \
| --with-fil | --with-file | --with-filen | --with-filena | --with-filenam \
| --with-filename)
with_filename=1
continue;;
(-l | --files-with-*)
files_with_matches=1
continue;;
(-L | --files-witho*)
files_without_matches=1
continue;;
(-h | --no-f*)
no_filename=1;;
(-V | --v | --ve | --ver | --vers | --versi | --versio | --version)
echo "$version" || exit 2
exit;;
esac
case $option in
(*\'?*)
option=\'$(expr "X${option}X" : 'X\(.*\)' | sed "$escape");;
(*)
option="'$option'";;
esac
grep="$grep $option$optarg"
done
if test $files_with_matches -eq 1 || test $files_without_matches -eq 1; then
grep="$grep -q"
fi
eval "set -- $operands "'${1+"$@"}'
if test $have_pat -eq 0; then
case ${1?"Missing pattern; try \`${0##*/} --help' for help"} in
(*\'*)
grep="$grep -- '"$(printf '%sX\n' "$1" | sed "$escape");;
(*)
grep="$grep -- '$1'";;
esac
shift
fi
if test $# -eq 0; then
set -- -
fi
exec 3>&1
# res=1 means that no file matched yet
res=1
for i; do
case $i in
*[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) uncompress="gzip -cdfq";;
*[-.]bz2 | *[-.]tbz | *.tbz2) uncompress="bzip2 -cdfq";;
*[-.]lzo | *[-.]tzo) uncompress="lzop -cdfq";;
*) uncompress="$xz -cdfq";;
esac
# Fail if xz or grep (or sed) fails.
xz_status=$(
exec 5>&1
($uncompress -- "$i" 5>&-; echo $? >&5) 3>&- |
if test $files_with_matches -eq 1; then
eval "$grep" && { printf '%s\n' "$i" || exit 2; }
elif test $files_without_matches -eq 1; then
eval "$grep" || {
r=$?
if test $r -eq 1; then
printf '%s\n' "$i" || r=2
fi
exit $r
}
elif test $with_filename -eq 0 &&
{ test $# -eq 1 || test $no_filename -eq 1; }; then
eval "$grep"
else
case $i in
(*'
'* | *'&'* | *'\'* | *'|'*)
i=$(printf '%s\n' "$i" |
sed '
$!N
$s/[&\|]/\\&/g
$s/\n/\\n/g
');;
esac
sed_script="s|^|$i:|"
# Fail if grep or sed fails.
r=$(
exec 4>&1
(eval "$grep" 4>&-; echo $? >&4) 3>&- | sed "$sed_script" >&3 4>&-
) || r=2
exit $r
fi >&3 5>&-
)
r=$?
# fail occured previously, nothing worse can happen
test $res -gt 1 && continue
test "$xz_status" -eq 0 || test "$xz_status" -eq 2 \
|| test "$(kill -l "$xz_status" 2> /dev/null)" = "PIPE" || r=2
# still no match
test $r -eq 1 && continue
# 0 == match, >=2 == fail
res=$r
done
exit $res

View file

@ -1,58 +0,0 @@
#!/bin/sh
# Copyright (C) 1998, 2002, 2006, 2007 Free Software Foundation
# The original version for gzip was written by Paul Eggert.
# Modified for XZ Utils by Andrew Dudman and Lasse Collin.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#SET_PATH - This line is a placeholder to ease patching this script.
# Instead of unsetting XZ_OPT, just make sure that xz will use file format
# autodetection. This way memory usage limit and thread limit can be
# specified via XZ_OPT.
xz='xz --format=auto'
version='xzless (XZ Utils) 5.2.4'
usage="Usage: ${0##*/} [OPTION]... [FILE]...
Like 'less', but operate on the uncompressed contents of xz compressed FILEs.
Options are the same as for 'less'.
Report bugs to <lasse.collin@tukaani.org>."
case $1 in
--help) echo "$usage" || exit 2; exit;;
--version) echo "$version" || exit 2; exit;;
esac
if test "${LESSMETACHARS+set}" != set; then
# Work around a bug in less 394 and earlier;
# it mishandles the metacharacters '$%=~'.
space=' '
tab=' '
nl='
'
LESSMETACHARS="$space$tab$nl'"';*?"()<>[|&^`#\$%=~'
fi
if test "$(less -V | { read less ver re && echo ${ver}; })" -ge 429; then
# less 429 or later: LESSOPEN pipe will be used on
# standard input if $LESSOPEN begins with |-.
LESSOPEN="|-$xz -cdfq -- %s"
else
LESSOPEN="|$xz -cdfq -- %s"
fi
export LESSMETACHARS LESSOPEN
exec less "$@"

View file

@ -1,78 +0,0 @@
#!/bin/sh
# Copyright (C) 2001, 2002, 2007 Free Software Foundation
# Copyright (C) 1992, 1993 Jean-loup Gailly
# Modified for XZ Utils by Andrew Dudman and Lasse Collin.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#SET_PATH - This line is a placeholder to ease patching this script.
# Instead of unsetting XZ_OPT, just make sure that xz will use file format
# autodetection. This way memory usage limit and thread limit can be
# specified via XZ_OPT.
xz='xz --format=auto'
version='xzmore (XZ Utils) 5.2.4'
usage="Usage: ${0##*/} [OPTION]... [FILE]...
Like 'more', but operate on the uncompressed contents of xz compressed FILEs.
Report bugs to <lasse.collin@tukaani.org>."
case $1 in
--help) echo "$usage" || exit 2; exit;;
--version) echo "$version" || exit 2; exit;;
esac
oldtty=`stty -g 2>/dev/null`
if stty -cbreak 2>/dev/null; then
cb='cbreak'; ncb='-cbreak'
else
# 'stty min 1' resets eof to ^a on both SunOS and SysV!
cb='min 1 -icanon'; ncb='icanon eof ^d'
fi
if test $? -eq 0 && test -n "$oldtty"; then
trap 'stty $oldtty 2>/dev/null; exit' 0 2 3 5 10 13 15
else
trap 'stty $ncb echo 2>/dev/null; exit' 0 2 3 5 10 13 15
fi
if test $# = 0; then
if test -t 0; then
echo "$usage"; exit 1
else
$xz -cdfq | eval "${PAGER:-more}"
fi
else
FIRST=1
for FILE; do
< "$FILE" || continue
if test $FIRST -eq 0; then
printf "%s--More--(Next file: %s)" "" "$FILE"
stty $cb -echo 2>/dev/null
ANS=`dd bs=1 count=1 2>/dev/null`
stty $ncb echo 2>/dev/null
echo " "
case "$ANS" in
[eq]) exit;;
esac
fi
if test "$ANS" != 's'; then
echo "------> $FILE <------"
$xz -cdfq -- "$FILE" | eval "${PAGER:-more}"
fi
if test -t 1; then
FIRST=0
fi
done
fi

File diff suppressed because it is too large Load diff

View file

@ -1,47 +0,0 @@
{
"build": "0",
"build_number": 0,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/ca-certificates-2019.1.23-0",
"features": "",
"files": [
"ssl/cacert.pem",
"ssl/cert.pem"
],
"fn": "ca-certificates-2019.1.23-0.tar.bz2",
"license": "ISC",
"link": {
"source": "/usr/local/anaconda3/pkgs/ca-certificates-2019.1.23-0",
"type": 1
},
"md5": "327641c00102c9890209f54dabfba6b5",
"name": "ca-certificates",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/ca-certificates-2019.1.23-0.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "ssl/cacert.pem",
"path_type": "hardlink",
"sha256": "c1fd9b235896b1094ee97bfb7e042f93530b5e300781f59b45edf84ee8c75000",
"sha256_in_prefix": "c1fd9b235896b1094ee97bfb7e042f93530b5e300781f59b45edf84ee8c75000",
"size_in_bytes": 219596
},
{
"_path": "ssl/cert.pem",
"path_type": "softlink",
"sha256": "c1fd9b235896b1094ee97bfb7e042f93530b5e300781f59b45edf84ee8c75000",
"size_in_bytes": 219596
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 129064,
"subdir": "osx-64",
"timestamp": 1549470013523,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2019.1.23-0.tar.bz2",
"version": "2019.1.23"
}

View file

@ -1,98 +0,0 @@
{
"build": "py37_0",
"build_number": 0,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [
"python >=3.7,<3.8.0a0"
],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/certifi-2018.11.29-py37_0",
"features": "",
"files": [
"lib/python3.7/site-packages/certifi-2018.11.29-py3.7.egg-info",
"lib/python3.7/site-packages/certifi/__init__.py",
"lib/python3.7/site-packages/certifi/__main__.py",
"lib/python3.7/site-packages/certifi/__pycache__/__init__.cpython-37.pyc",
"lib/python3.7/site-packages/certifi/__pycache__/__main__.cpython-37.pyc",
"lib/python3.7/site-packages/certifi/__pycache__/core.cpython-37.pyc",
"lib/python3.7/site-packages/certifi/cacert.pem",
"lib/python3.7/site-packages/certifi/core.py"
],
"fn": "certifi-2018.11.29-py37_0.tar.bz2",
"license": "ISC",
"link": {
"source": "/usr/local/anaconda3/pkgs/certifi-2018.11.29-py37_0",
"type": 1
},
"md5": "34934feeb0c3eaf53baf15cecf46fbf4",
"name": "certifi",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/certifi-2018.11.29-py37_0.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "lib/python3.7/site-packages/certifi-2018.11.29-py3.7.egg-info",
"path_type": "hardlink",
"sha256": "d79fed2d7f048b622f00d5ed6213eb8f062baae7958601116b4c657d0a6aac6e",
"sha256_in_prefix": "d79fed2d7f048b622f00d5ed6213eb8f062baae7958601116b4c657d0a6aac6e",
"size_in_bytes": 2763
},
{
"_path": "lib/python3.7/site-packages/certifi/__init__.py",
"path_type": "hardlink",
"sha256": "b6298ba4bbf704d7062cb133dacea0c80df884e84c6f80083c1cf4cf13b19daf",
"sha256_in_prefix": "b6298ba4bbf704d7062cb133dacea0c80df884e84c6f80083c1cf4cf13b19daf",
"size_in_bytes": 52
},
{
"_path": "lib/python3.7/site-packages/certifi/__main__.py",
"path_type": "hardlink",
"sha256": "162398b75165b6cb7bc24f4345ae860a806bf2a054c65350bbf30a25fd3813ab",
"sha256_in_prefix": "162398b75165b6cb7bc24f4345ae860a806bf2a054c65350bbf30a25fd3813ab",
"size_in_bytes": 41
},
{
"_path": "lib/python3.7/site-packages/certifi/__pycache__/__init__.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "71d80930592f4c803fb6167e28a3a5beeedd005ababf0581ea6eace03e304a1e",
"sha256_in_prefix": "71d80930592f4c803fb6167e28a3a5beeedd005ababf0581ea6eace03e304a1e",
"size_in_bytes": 199
},
{
"_path": "lib/python3.7/site-packages/certifi/__pycache__/__main__.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "85f67538ecc37aa51f7d84b728699c2fe86030a86e7358910308f13353c2db6b",
"sha256_in_prefix": "85f67538ecc37aa51f7d84b728699c2fe86030a86e7358910308f13353c2db6b",
"size_in_bytes": 190
},
{
"_path": "lib/python3.7/site-packages/certifi/__pycache__/core.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "acfc689c26a137b770c73b4c3c34a65e7fff64fd6ab8cc9db5b663e8b7a0ad22",
"sha256_in_prefix": "acfc689c26a137b770c73b4c3c34a65e7fff64fd6ab8cc9db5b663e8b7a0ad22",
"size_in_bytes": 460
},
{
"_path": "lib/python3.7/site-packages/certifi/cacert.pem",
"path_type": "hardlink",
"sha256": "cc6cb863582ef59cbee821af8376a9742ee45cc9b77f510ba252703439c146fd",
"sha256_in_prefix": "cc6cb863582ef59cbee821af8376a9742ee45cc9b77f510ba252703439c146fd",
"size_in_bytes": 275834
},
{
"_path": "lib/python3.7/site-packages/certifi/core.py",
"path_type": "hardlink",
"sha256": "2bf55f33a1b049e993162b148055b293fff0d66f69086151179cd3ccee5b1afd",
"sha256_in_prefix": "2bf55f33a1b049e993162b148055b293fff0d66f69086151179cd3ccee5b1afd",
"size_in_bytes": 288
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 148879,
"subdir": "osx-64",
"timestamp": 1544461242265,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/certifi-2018.11.29-py37_0.tar.bz2",
"version": "2018.11.29"
}

View file

@ -1,35 +0,0 @@
==> 2019-02-07 19:02:31 <==
# cmd: /usr/local/anaconda3/bin/conda create -p /Users/shadow8t4/git/MultiPub/python_env/
# conda version: 4.6.2
==> 2019-02-07 19:27:18 <==
# cmd: /usr/local/anaconda3/bin/conda install python
# conda version: 4.6.2
+defaults::ca-certificates-2019.1.23-0
+defaults::certifi-2018.11.29-py37_0
+defaults::libcxx-4.0.1-hcfea43d_1
+defaults::libcxxabi-4.0.1-hcfea43d_1
+defaults::libedit-3.1.20181209-hb402a30_0
+defaults::libffi-3.2.1-h475c297_4
+defaults::ncurses-6.1-h0a44026_1
+defaults::openssl-1.1.1a-h1de35cc_0
+defaults::pip-19.0.1-py37_0
+defaults::python-3.7.2-haf84260_0
+defaults::readline-7.0-h1de35cc_5
+defaults::setuptools-40.7.3-py37_0
+defaults::sqlite-3.26.0-ha441bb4_0
+defaults::tk-8.6.8-ha441bb4_0
+defaults::wheel-0.32.3-py37_0
+defaults::xz-5.2.4-h1de35cc_4
+defaults::zlib-1.2.11-h1de35cc_3
# update specs: ['python']
==> 2019-02-07 19:29:11 <==
# cmd: /usr/local/anaconda3/bin/conda install pylint
# conda version: 4.6.2
+defaults::astroid-2.1.0-py37_0
+defaults::isort-4.3.4-py37_0
+defaults::lazy-object-proxy-1.3.1-py37h1de35cc_2
+defaults::mccabe-0.6.1-py37_1
+defaults::pylint-2.2.2-py37_0
+defaults::six-1.12.0-py37_0
+defaults::wrapt-1.11.0-py37h1de35cc_0
# update specs: ['pylint']

View file

@ -1,237 +0,0 @@
{
"build": "py37_0",
"build_number": 0,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [
"python >=3.7,<3.8.0a0",
"setuptools"
],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/isort-4.3.4-py37_0",
"features": "",
"files": [
"bin/isort",
"lib/python3.7/site-packages/isort-4.3.4-py3.7.egg-info/PKG-INFO",
"lib/python3.7/site-packages/isort-4.3.4-py3.7.egg-info/SOURCES.txt",
"lib/python3.7/site-packages/isort-4.3.4-py3.7.egg-info/dependency_links.txt",
"lib/python3.7/site-packages/isort-4.3.4-py3.7.egg-info/entry_points.txt",
"lib/python3.7/site-packages/isort-4.3.4-py3.7.egg-info/requires.txt",
"lib/python3.7/site-packages/isort-4.3.4-py3.7.egg-info/top_level.txt",
"lib/python3.7/site-packages/isort/__init__.py",
"lib/python3.7/site-packages/isort/__main__.py",
"lib/python3.7/site-packages/isort/__pycache__/__init__.cpython-37.pyc",
"lib/python3.7/site-packages/isort/__pycache__/__main__.cpython-37.pyc",
"lib/python3.7/site-packages/isort/__pycache__/hooks.cpython-37.pyc",
"lib/python3.7/site-packages/isort/__pycache__/isort.cpython-37.pyc",
"lib/python3.7/site-packages/isort/__pycache__/main.cpython-37.pyc",
"lib/python3.7/site-packages/isort/__pycache__/natural.cpython-37.pyc",
"lib/python3.7/site-packages/isort/__pycache__/pie_slice.cpython-37.pyc",
"lib/python3.7/site-packages/isort/__pycache__/pylama_isort.cpython-37.pyc",
"lib/python3.7/site-packages/isort/__pycache__/settings.cpython-37.pyc",
"lib/python3.7/site-packages/isort/hooks.py",
"lib/python3.7/site-packages/isort/isort.py",
"lib/python3.7/site-packages/isort/main.py",
"lib/python3.7/site-packages/isort/natural.py",
"lib/python3.7/site-packages/isort/pie_slice.py",
"lib/python3.7/site-packages/isort/pylama_isort.py",
"lib/python3.7/site-packages/isort/settings.py"
],
"fn": "isort-4.3.4-py37_0.tar.bz2",
"license": "MIT",
"link": {
"source": "/usr/local/anaconda3/pkgs/isort-4.3.4-py37_0",
"type": 1
},
"md5": "f72377f0ed79e956084da9afc57f3165",
"name": "isort",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/isort-4.3.4-py37_0.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "bin/isort",
"file_mode": "text",
"path_type": "hardlink",
"prefix_placeholder": "/opt/anaconda1anaconda2anaconda3",
"sha256": "685ec3d18406debcef2f3aa22ca8affbe72ddf293cf79d379d4474103889e3a9",
"sha256_in_prefix": "1a2e98bbaabaabb80b02b8e78a0a441158d38ee66c39dd7899f0f7f14abbdd93",
"size_in_bytes": 240
},
{
"_path": "lib/python3.7/site-packages/isort-4.3.4-py3.7.egg-info/PKG-INFO",
"path_type": "hardlink",
"sha256": "421cc2ce18037f2a87fba1c641a61e8a9921fcd0fd38e9f16087afbd230d0620",
"sha256_in_prefix": "421cc2ce18037f2a87fba1c641a61e8a9921fcd0fd38e9f16087afbd230d0620",
"size_in_bytes": 22801
},
{
"_path": "lib/python3.7/site-packages/isort-4.3.4-py3.7.egg-info/SOURCES.txt",
"path_type": "hardlink",
"sha256": "44e50cda1da8e2118430a628323e5db9e28b6859727425d20843c93a3a0e80a0",
"sha256_in_prefix": "44e50cda1da8e2118430a628323e5db9e28b6859727425d20843c93a3a0e80a0",
"size_in_bytes": 428
},
{
"_path": "lib/python3.7/site-packages/isort-4.3.4-py3.7.egg-info/dependency_links.txt",
"path_type": "hardlink",
"sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"sha256_in_prefix": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"size_in_bytes": 1
},
{
"_path": "lib/python3.7/site-packages/isort-4.3.4-py3.7.egg-info/entry_points.txt",
"path_type": "hardlink",
"sha256": "d8cf7d7921699ed7839b77a45bc8f26b66b7034faf167b4a753d5f3fddd3ca4b",
"sha256_in_prefix": "d8cf7d7921699ed7839b77a45bc8f26b66b7034faf167b4a753d5f3fddd3ca4b",
"size_in_bytes": 148
},
{
"_path": "lib/python3.7/site-packages/isort-4.3.4-py3.7.egg-info/requires.txt",
"path_type": "hardlink",
"sha256": "c6d8eb66023e2ee21ccde8f70e2e6a3be78033a00bebdca75635ae874aea5671",
"sha256_in_prefix": "c6d8eb66023e2ee21ccde8f70e2e6a3be78033a00bebdca75635ae874aea5671",
"size_in_bytes": 34
},
{
"_path": "lib/python3.7/site-packages/isort-4.3.4-py3.7.egg-info/top_level.txt",
"path_type": "hardlink",
"sha256": "9ab04ba15a499d05816e730e49dce48cdd44f59f9edd977e311968f3c6ecb549",
"sha256_in_prefix": "9ab04ba15a499d05816e730e49dce48cdd44f59f9edd977e311968f3c6ecb549",
"size_in_bytes": 6
},
{
"_path": "lib/python3.7/site-packages/isort/__init__.py",
"path_type": "hardlink",
"sha256": "2443ed45db197657ba4d5f191f1063ef73ae0f688b518e0f5c39fbd50055c107",
"sha256_in_prefix": "2443ed45db197657ba4d5f191f1063ef73ae0f688b518e0f5c39fbd50055c107",
"size_in_bytes": 1379
},
{
"_path": "lib/python3.7/site-packages/isort/__main__.py",
"path_type": "hardlink",
"sha256": "f1ba2170ae570909601781e15d08613c9066682d92e06ab3a85c21740ba2dd02",
"sha256_in_prefix": "f1ba2170ae570909601781e15d08613c9066682d92e06ab3a85c21740ba2dd02",
"size_in_bytes": 76
},
{
"_path": "lib/python3.7/site-packages/isort/__pycache__/__init__.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "dfac0369d767ed5e4001a0470cdb7e8cd5f7b6571549a5a6c2e270ef2b36fa55",
"sha256_in_prefix": "dfac0369d767ed5e4001a0470cdb7e8cd5f7b6571549a5a6c2e270ef2b36fa55",
"size_in_bytes": 1560
},
{
"_path": "lib/python3.7/site-packages/isort/__pycache__/__main__.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "95f8f8eee2fd657bcf5b7224f5abd1acaebf8fe291f87f6e744a00aafb9a72a6",
"sha256_in_prefix": "95f8f8eee2fd657bcf5b7224f5abd1acaebf8fe291f87f6e744a00aafb9a72a6",
"size_in_bytes": 229
},
{
"_path": "lib/python3.7/site-packages/isort/__pycache__/hooks.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "c6ea28a0ac574da3715fde6145f6f7daf53f39de2d405e9217cfc2e5cd605c38",
"sha256_in_prefix": "c6ea28a0ac574da3715fde6145f6f7daf53f39de2d405e9217cfc2e5cd605c38",
"size_in_bytes": 2949
},
{
"_path": "lib/python3.7/site-packages/isort/__pycache__/isort.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "68878b5fc72e7e0fdbc1889b1708d880cbd9b089c6a397c719e275fca6b42a55",
"sha256_in_prefix": "68878b5fc72e7e0fdbc1889b1708d880cbd9b089c6a397c719e275fca6b42a55",
"size_in_bytes": 30346
},
{
"_path": "lib/python3.7/site-packages/isort/__pycache__/main.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "b3f0e8c493b6d188845b39882a95444ec90f11e453df7f08fd42a90fc4389b40",
"sha256_in_prefix": "b3f0e8c493b6d188845b39882a95444ec90f11e453df7f08fd42a90fc4389b40",
"size_in_bytes": 15343
},
{
"_path": "lib/python3.7/site-packages/isort/__pycache__/natural.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "6c84906a1459c85f402768f8167253deeb1931b9681b65febc2c79df12167bd5",
"sha256_in_prefix": "6c84906a1459c85f402768f8167253deeb1931b9681b65febc2c79df12167bd5",
"size_in_bytes": 2272
},
{
"_path": "lib/python3.7/site-packages/isort/__pycache__/pie_slice.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "baa1f0c0505f32077469e4623d74dd7ae2d58c072ae4bc875282fba91ad664f5",
"sha256_in_prefix": "baa1f0c0505f32077469e4623d74dd7ae2d58c072ae4bc875282fba91ad664f5",
"size_in_bytes": 14919
},
{
"_path": "lib/python3.7/site-packages/isort/__pycache__/pylama_isort.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "f64748718042399370c0aab236a0bbb4acf6785aa1bfcd5fa054a1ff734e7354",
"sha256_in_prefix": "f64748718042399370c0aab236a0bbb4acf6785aa1bfcd5fa054a1ff734e7354",
"size_in_bytes": 973
},
{
"_path": "lib/python3.7/site-packages/isort/__pycache__/settings.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "03a84cfa65c195416069e4afab8280b98ec12bcfafe07903975504438910df60",
"sha256_in_prefix": "03a84cfa65c195416069e4afab8280b98ec12bcfafe07903975504438910df60",
"size_in_bytes": 10261
},
{
"_path": "lib/python3.7/site-packages/isort/hooks.py",
"path_type": "hardlink",
"sha256": "5b315bf1e499021d9f782e47a470c0e4c8e26f3aed46533ddd9560357ea4e0b6",
"sha256_in_prefix": "5b315bf1e499021d9f782e47a470c0e4c8e26f3aed46533ddd9560357ea4e0b6",
"size_in_bytes": 2808
},
{
"_path": "lib/python3.7/site-packages/isort/isort.py",
"path_type": "hardlink",
"sha256": "2dfd62cecc20ab28d5f80748a33453e3f5cf6ea290f1beb3534fcffa3881077e",
"sha256_in_prefix": "2dfd62cecc20ab28d5f80748a33453e3f5cf6ea290f1beb3534fcffa3881077e",
"size_in_bytes": 52773
},
{
"_path": "lib/python3.7/site-packages/isort/main.py",
"path_type": "hardlink",
"sha256": "651505d89edbaea764ed5d2ceeed2bad9fcc2896e3b613993db2af18febbadcd",
"sha256_in_prefix": "651505d89edbaea764ed5d2ceeed2bad9fcc2896e3b613993db2af18febbadcd",
"size_in_bytes": 20087
},
{
"_path": "lib/python3.7/site-packages/isort/natural.py",
"path_type": "hardlink",
"sha256": "865716b0629f2140b802d8e9e4822a0c29a0d6669d63a6af7bda0d8931a32744",
"sha256_in_prefix": "865716b0629f2140b802d8e9e4822a0c29a0d6669d63a6af7bda0d8931a32744",
"size_in_bytes": 1794
},
{
"_path": "lib/python3.7/site-packages/isort/pie_slice.py",
"path_type": "hardlink",
"sha256": "1ce7cae191c0da3d5ba95486cde7e1713e633fae3f2dd978c7abcd49150d753e",
"sha256_in_prefix": "1ce7cae191c0da3d5ba95486cde7e1713e633fae3f2dd978c7abcd49150d753e",
"size_in_bytes": 13181
},
{
"_path": "lib/python3.7/site-packages/isort/pylama_isort.py",
"path_type": "hardlink",
"sha256": "c05e8d38456e89b99ed25fb9a47f69096d63e2f19a15a9aec25978f784e7cc32",
"sha256_in_prefix": "c05e8d38456e89b99ed25fb9a47f69096d63e2f19a15a9aec25978f784e7cc32",
"size_in_bytes": 785
},
{
"_path": "lib/python3.7/site-packages/isort/settings.py",
"path_type": "hardlink",
"sha256": "9c3428c8b1075c0c03fcc99a9c752056f0b001c2d899070751e53871e9e431ec",
"sha256_in_prefix": "9c3428c8b1075c0c03fcc99a9c752056f0b001c2d899070751e53871e9e431ec",
"size_in_bytes": 14224
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 59840,
"subdir": "osx-64",
"timestamp": 1530881264145,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/isort-4.3.4-py37_0.tar.bz2",
"version": "4.3.4"
}

View file

@ -1,172 +0,0 @@
{
"build": "py37h1de35cc_2",
"build_number": 2,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [
"python >=3.7,<3.8.0a0"
],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/lazy-object-proxy-1.3.1-py37h1de35cc_2",
"features": "",
"files": [
"lib/python3.7/site-packages/lazy_object_proxy-1.3.1-py3.7.egg-info/PKG-INFO",
"lib/python3.7/site-packages/lazy_object_proxy-1.3.1-py3.7.egg-info/SOURCES.txt",
"lib/python3.7/site-packages/lazy_object_proxy-1.3.1-py3.7.egg-info/dependency_links.txt",
"lib/python3.7/site-packages/lazy_object_proxy-1.3.1-py3.7.egg-info/not-zip-safe",
"lib/python3.7/site-packages/lazy_object_proxy-1.3.1-py3.7.egg-info/top_level.txt",
"lib/python3.7/site-packages/lazy_object_proxy/__init__.py",
"lib/python3.7/site-packages/lazy_object_proxy/__pycache__/__init__.cpython-37.pyc",
"lib/python3.7/site-packages/lazy_object_proxy/__pycache__/compat.cpython-37.pyc",
"lib/python3.7/site-packages/lazy_object_proxy/__pycache__/simple.cpython-37.pyc",
"lib/python3.7/site-packages/lazy_object_proxy/__pycache__/slots.cpython-37.pyc",
"lib/python3.7/site-packages/lazy_object_proxy/__pycache__/utils.cpython-37.pyc",
"lib/python3.7/site-packages/lazy_object_proxy/cext.c",
"lib/python3.7/site-packages/lazy_object_proxy/cext.cpython-37m-darwin.so",
"lib/python3.7/site-packages/lazy_object_proxy/compat.py",
"lib/python3.7/site-packages/lazy_object_proxy/simple.py",
"lib/python3.7/site-packages/lazy_object_proxy/slots.py",
"lib/python3.7/site-packages/lazy_object_proxy/utils.py"
],
"fn": "lazy-object-proxy-1.3.1-py37h1de35cc_2.tar.bz2",
"license": "BSD 2-Clause",
"link": {
"source": "/usr/local/anaconda3/pkgs/lazy-object-proxy-1.3.1-py37h1de35cc_2",
"type": 1
},
"md5": "85b1b3bddf1bbfcfb48fc9caf4dca1e7",
"name": "lazy-object-proxy",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/lazy-object-proxy-1.3.1-py37h1de35cc_2.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy-1.3.1-py3.7.egg-info/PKG-INFO",
"path_type": "hardlink",
"sha256": "3e0cf85f41c9a0d66dc9d4ce9979044063d11edd3fc182f7f78f37cda15efa1b",
"sha256_in_prefix": "3e0cf85f41c9a0d66dc9d4ce9979044063d11edd3fc182f7f78f37cda15efa1b",
"size_in_bytes": 4311
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy-1.3.1-py3.7.egg-info/SOURCES.txt",
"path_type": "hardlink",
"sha256": "bf4dc790f0a942235edbd6fa9df3788f1040408ed2f0c1d5631c7e2cb54cd966",
"sha256_in_prefix": "bf4dc790f0a942235edbd6fa9df3788f1040408ed2f0c1d5631c7e2cb54cd966",
"size_in_bytes": 1062
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy-1.3.1-py3.7.egg-info/dependency_links.txt",
"path_type": "hardlink",
"sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"sha256_in_prefix": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"size_in_bytes": 1
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy-1.3.1-py3.7.egg-info/not-zip-safe",
"path_type": "hardlink",
"sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"sha256_in_prefix": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"size_in_bytes": 1
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy-1.3.1-py3.7.egg-info/top_level.txt",
"path_type": "hardlink",
"sha256": "50d1fe15007e8fff1b62a3f3de00fdd241ef682e364d0a98d2d8474a76da6b49",
"sha256_in_prefix": "50d1fe15007e8fff1b62a3f3de00fdd241ef682e364d0a98d2d8474a76da6b49",
"size_in_bytes": 18
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy/__init__.py",
"path_type": "hardlink",
"sha256": "3ae53491983c48d0ff1938967858698815d864288d091fa68d0242c535901a1b",
"sha256_in_prefix": "3ae53491983c48d0ff1938967858698815d864288d091fa68d0242c535901a1b",
"size_in_bytes": 332
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy/__pycache__/__init__.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "e20c1dc6b667bd1376eea017daa62741bd375f2e8067df167875dcb35edd5a68",
"sha256_in_prefix": "e20c1dc6b667bd1376eea017daa62741bd375f2e8067df167875dcb35edd5a68",
"size_in_bytes": 446
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy/__pycache__/compat.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "9ec85e046d24cda1e9a4f943cc986db8c66efa80358631ceafb7d7c77d948a4f",
"sha256_in_prefix": "9ec85e046d24cda1e9a4f943cc986db8c66efa80358631ceafb7d7c77d948a4f",
"size_in_bytes": 393
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy/__pycache__/simple.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "600bd904ef603e8959fc5f09d43c405dba79e1046888fe12deed9c01ff2cf6fc",
"sha256_in_prefix": "600bd904ef603e8959fc5f09d43c405dba79e1046888fe12deed9c01ff2cf6fc",
"size_in_bytes": 7696
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy/__pycache__/slots.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "c1cbb14052ec7656ae7a7ff38aaa7b54f4ccfb659de549d39c9a3a5af6222fec",
"sha256_in_prefix": "c1cbb14052ec7656ae7a7ff38aaa7b54f4ccfb659de549d39c9a3a5af6222fec",
"size_in_bytes": 15167
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy/__pycache__/utils.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "7fb190a41c7651037be3b7e5b4d7ac0a6e42b54763aee48fb76d1cce0c14e30c",
"sha256_in_prefix": "7fb190a41c7651037be3b7e5b4d7ac0a6e42b54763aee48fb76d1cce0c14e30c",
"size_in_bytes": 736
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy/cext.c",
"path_type": "hardlink",
"sha256": "b2179266101ae1a5e72a2ae8cc0eda07728ff7ed845c00a0b8a8d3934e2668d8",
"sha256_in_prefix": "b2179266101ae1a5e72a2ae8cc0eda07728ff7ed845c00a0b8a8d3934e2668d8",
"size_in_bytes": 38745
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy/cext.cpython-37m-darwin.so",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/conda/conda-bld/lazy-object-proxy_1530729565545/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place",
"sha256": "fd14e9a34ea6b35988d1e1f2da0034ba7b58b0832310239ab0259a6484c17370",
"sha256_in_prefix": "31122621f6fa62e2724fb43c03a0a31c78b1daf0987aa6bc015704973ab83e43",
"size_in_bytes": 32988
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy/compat.py",
"path_type": "hardlink",
"sha256": "0d8dc76cac1badb78a63ab645d13512c9d60a3a1c96fc1d4c16ab2c374f983f8",
"sha256_in_prefix": "0d8dc76cac1badb78a63ab645d13512c9d60a3a1c96fc1d4c16ab2c374f983f8",
"size_in_bytes": 196
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy/simple.py",
"path_type": "hardlink",
"sha256": "04e64921ae307408bfe0e5143f5a78eb62cbcc475eccac5a239b39e9236cc919",
"sha256_in_prefix": "04e64921ae307408bfe0e5143f5a78eb62cbcc475eccac5a239b39e9236cc919",
"size_in_bytes": 8204
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy/slots.py",
"path_type": "hardlink",
"sha256": "7116a26acf4f33ef3a913548e1dfe85633e0361645839eabbcc81d1a4c7a4b5b",
"sha256_in_prefix": "7116a26acf4f33ef3a913548e1dfe85633e0361645839eabbcc81d1a4c7a4b5b",
"size_in_bytes": 11339
},
{
"_path": "lib/python3.7/site-packages/lazy_object_proxy/utils.py",
"path_type": "hardlink",
"sha256": "c785d3aed969fe60d358efc43aafc82c83afd90a25f112cc9d19b933c97739f5",
"sha256_in_prefix": "c785d3aed969fe60d358efc43aafc82c83afd90a25f112cc9d19b933c97739f5",
"size_in_bytes": 291
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 29265,
"subdir": "osx-64",
"timestamp": 1530729620591,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/lazy-object-proxy-1.3.1-py37h1de35cc_2.tar.bz2",
"version": "1.3.1"
}

File diff suppressed because it is too large Load diff

View file

@ -1,63 +0,0 @@
{
"build": "hcfea43d_1",
"build_number": 1,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/libcxxabi-4.0.1-hcfea43d_1",
"features": "",
"files": [
"lib/libc++abi.1.0.dylib",
"lib/libc++abi.1.dylib",
"lib/libc++abi.a",
"lib/libc++abi.dylib"
],
"fn": "libcxxabi-4.0.1-hcfea43d_1.tar.bz2",
"license": "MIT license or UIUC License",
"license_family": "Other",
"link": {
"source": "/usr/local/anaconda3/pkgs/libcxxabi-4.0.1-hcfea43d_1",
"type": 1
},
"md5": "b06555a43b9c0857b87b342115bea761",
"name": "libcxxabi",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/libcxxabi-4.0.1-hcfea43d_1.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "lib/libc++abi.1.0.dylib",
"path_type": "hardlink",
"sha256": "75d1e8ba7541c334895f513fd83c3515e06b9e3b3f1cc158d7a0622fe1067748",
"sha256_in_prefix": "75d1e8ba7541c334895f513fd83c3515e06b9e3b3f1cc158d7a0622fe1067748",
"size_in_bytes": 297040
},
{
"_path": "lib/libc++abi.1.dylib",
"path_type": "softlink",
"sha256": "75d1e8ba7541c334895f513fd83c3515e06b9e3b3f1cc158d7a0622fe1067748",
"size_in_bytes": 297040
},
{
"_path": "lib/libc++abi.a",
"path_type": "hardlink",
"sha256": "8b4a445c9ac1878ba369a9ba6ae316ebf07dd4f23667747ba29bfe74db8974f1",
"sha256_in_prefix": "8b4a445c9ac1878ba369a9ba6ae316ebf07dd4f23667747ba29bfe74db8974f1",
"size_in_bytes": 356968
},
{
"_path": "lib/libc++abi.dylib",
"path_type": "softlink",
"sha256": "75d1e8ba7541c334895f513fd83c3515e06b9e3b3f1cc158d7a0622fe1067748",
"size_in_bytes": 297040
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 468900,
"subdir": "osx-64",
"timestamp": 1540686629315,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2",
"version": "4.0.1"
}

View file

@ -1,385 +0,0 @@
{
"build": "hb402a30_0",
"build_number": 0,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [
"ncurses >=6.1,<7.0a0"
],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/libedit-3.1.20181209-hb402a30_0",
"features": "",
"files": [
"include/editline/readline.h",
"include/histedit.h",
"lib/libedit.0.dylib",
"lib/libedit.a",
"lib/libedit.dylib",
"lib/pkgconfig/libedit.pc",
"share/man/man3/editline.3",
"share/man/man3/el_deletestr.3",
"share/man/man3/el_end.3",
"share/man/man3/el_get.3",
"share/man/man3/el_getc.3",
"share/man/man3/el_gets.3",
"share/man/man3/el_init.3",
"share/man/man3/el_init_fd.3",
"share/man/man3/el_insertstr.3",
"share/man/man3/el_line.3",
"share/man/man3/el_parse.3",
"share/man/man3/el_push.3",
"share/man/man3/el_reset.3",
"share/man/man3/el_resize.3",
"share/man/man3/el_set.3",
"share/man/man3/el_source.3",
"share/man/man3/el_wdeletestr.3",
"share/man/man3/el_wget.3",
"share/man/man3/el_wgetc.3",
"share/man/man3/el_wgets.3",
"share/man/man3/el_winsertstr.3",
"share/man/man3/el_wline.3",
"share/man/man3/el_wparse.3",
"share/man/man3/el_wpush.3",
"share/man/man3/el_wset.3",
"share/man/man3/history_end.3",
"share/man/man3/history_init.3",
"share/man/man3/history_w.3",
"share/man/man3/history_wend.3",
"share/man/man3/history_winit.3",
"share/man/man3/tok_end.3",
"share/man/man3/tok_init.3",
"share/man/man3/tok_line.3",
"share/man/man3/tok_reset.3",
"share/man/man3/tok_str.3",
"share/man/man3/tok_wend.3",
"share/man/man3/tok_winit.3",
"share/man/man3/tok_wline.3",
"share/man/man3/tok_wreset.3",
"share/man/man3/tok_wstr.3",
"share/man/man5/editrc.5",
"share/man/man7/editline.7"
],
"fn": "libedit-3.1.20181209-hb402a30_0.tar.bz2",
"license": "NetBSD",
"license_family": "BSD",
"link": {
"source": "/usr/local/anaconda3/pkgs/libedit-3.1.20181209-hb402a30_0",
"type": 1
},
"md5": "cd44371a880fac87ea047c33f8000d4e",
"name": "libedit",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/libedit-3.1.20181209-hb402a30_0.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "include/editline/readline.h",
"path_type": "hardlink",
"sha256": "76961edcee95dcaab5288c72f97e30c0c7632f86d48d3103e353c7c5c6d47eb3",
"sha256_in_prefix": "76961edcee95dcaab5288c72f97e30c0c7632f86d48d3103e353c7c5c6d47eb3",
"size_in_bytes": 7889
},
{
"_path": "include/histedit.h",
"path_type": "hardlink",
"sha256": "9282a07bf308eab60faf8f5ebc9c065f9d62ff400f96c1922c5d2e73d7042ed6",
"sha256_in_prefix": "9282a07bf308eab60faf8f5ebc9c065f9d62ff400f96c1922c5d2e73d7042ed6",
"size_in_bytes": 9330
},
{
"_path": "lib/libedit.0.dylib",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/a190565e-b538-439d-4b46-2627b8a1a06b/volume/libedit_1547971248335/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho",
"sha256": "8feff8cda6590694755eb8c040b077e9685415393b3ffe4a9eae64d5d5860bcd",
"sha256_in_prefix": "471726f57683a367ad6337fce9fe16dd221b4720aa1911e6214cb1ee156d238c",
"size_in_bytes": 192188
},
{
"_path": "lib/libedit.a",
"path_type": "hardlink",
"sha256": "2d6069f67a5d0ec342a1db414adccaebcab7ab6890195ec14e3ba5e468ff044f",
"sha256_in_prefix": "2d6069f67a5d0ec342a1db414adccaebcab7ab6890195ec14e3ba5e468ff044f",
"size_in_bytes": 289064
},
{
"_path": "lib/libedit.dylib",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/a190565e-b538-439d-4b46-2627b8a1a06b/volume/libedit_1547971248335/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho",
"sha256": "8feff8cda6590694755eb8c040b077e9685415393b3ffe4a9eae64d5d5860bcd",
"size_in_bytes": 192188
},
{
"_path": "lib/pkgconfig/libedit.pc",
"file_mode": "text",
"path_type": "hardlink",
"prefix_placeholder": "/opt/anaconda1anaconda2anaconda3",
"sha256": "80fc4c8d51952d7f1ac0dd301a16ad3af7534a1803712ac1c95fe30d78d649dd",
"sha256_in_prefix": "536f04627b18fc1ef66bf7108ccbc9eecf9a74499b5862bc651bbd10dd6607ce",
"size_in_bytes": 362
},
{
"_path": "share/man/man3/editline.3",
"path_type": "hardlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"sha256_in_prefix": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_deletestr.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_end.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_get.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_getc.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_gets.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_init.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_init_fd.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_insertstr.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_line.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_parse.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_push.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_reset.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_resize.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_set.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_source.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_wdeletestr.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_wget.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_wgetc.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_wgets.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_winsertstr.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_wline.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_wparse.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_wpush.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/el_wset.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/history_end.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/history_init.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/history_w.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/history_wend.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/history_winit.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/tok_end.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/tok_init.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/tok_line.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/tok_reset.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/tok_str.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/tok_wend.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/tok_winit.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/tok_wline.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/tok_wreset.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man3/tok_wstr.3",
"path_type": "softlink",
"sha256": "eaff47b8ba6fb62fe95c54bcb5488b93c28c4cdc2fec5de47d81d290b14b544b",
"size_in_bytes": 23702
},
{
"_path": "share/man/man5/editrc.5",
"path_type": "hardlink",
"sha256": "df25f3fe1791100628cd1475c06e7ffe744fc9802e913e7f65dd40066bc34e85",
"sha256_in_prefix": "df25f3fe1791100628cd1475c06e7ffe744fc9802e913e7f65dd40066bc34e85",
"size_in_bytes": 7064
},
{
"_path": "share/man/man7/editline.7",
"path_type": "hardlink",
"sha256": "cd185b0732714b6dae4e4b06d392427ac9f28de5084cbb2d0d54e6c2ef46ac4a",
"sha256_in_prefix": "cd185b0732714b6dae4e4b06d392427ac9f28de5084cbb2d0d54e6c2ef46ac4a",
"size_in_bytes": 33733
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 162411,
"subdir": "osx-64",
"timestamp": 1547971396177,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2",
"version": "3.1.20181209"
}

View file

@ -1,133 +0,0 @@
{
"build": "h475c297_4",
"build_number": 4,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [
"libcxx >=4.0.1"
],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/libffi-3.2.1-h475c297_4",
"features": "",
"files": [
"include/ffi.h",
"include/ffitarget.h",
"lib/libffi.6.dylib",
"lib/libffi.a",
"lib/libffi.dylib",
"lib/libffi.la",
"lib/pkgconfig/libffi.pc",
"share/info/libffi.info",
"share/man/man3/ffi.3",
"share/man/man3/ffi_call.3",
"share/man/man3/ffi_prep_cif.3",
"share/man/man3/ffi_prep_cif_var.3"
],
"fn": "libffi-3.2.1-h475c297_4.tar.bz2",
"license": "Custom",
"link": {
"source": "/usr/local/anaconda3/pkgs/libffi-3.2.1-h475c297_4",
"type": 1
},
"md5": "4b13e6ff2ef114361106e5780296a5eb",
"name": "libffi",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/libffi-3.2.1-h475c297_4.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "include/ffi.h",
"path_type": "hardlink",
"sha256": "64634aed3d2a6c8e58d74bddada0afe7db13ff4e430ffe46bb3625c0f3dd6e4b",
"sha256_in_prefix": "64634aed3d2a6c8e58d74bddada0afe7db13ff4e430ffe46bb3625c0f3dd6e4b",
"size_in_bytes": 13346
},
{
"_path": "include/ffitarget.h",
"path_type": "hardlink",
"sha256": "0f311400fbb659ad7d6c30585e6b750f298930eb85ddcbce59a8ac401cfe41a1",
"sha256_in_prefix": "0f311400fbb659ad7d6c30585e6b750f298930eb85ddcbce59a8ac401cfe41a1",
"size_in_bytes": 4193
},
{
"_path": "lib/libffi.6.dylib",
"path_type": "hardlink",
"sha256": "c6dac85dd35cfd0bb260396054f79baba4071ba9c3a7b0628f1b15cee0191c65",
"sha256_in_prefix": "c6dac85dd35cfd0bb260396054f79baba4071ba9c3a7b0628f1b15cee0191c65",
"size_in_bytes": 32900
},
{
"_path": "lib/libffi.a",
"path_type": "hardlink",
"sha256": "de6348ab720ca24829c9c0f06919685e8fa5d2a6d11ee6f0d3112e65cdddbac8",
"sha256_in_prefix": "de6348ab720ca24829c9c0f06919685e8fa5d2a6d11ee6f0d3112e65cdddbac8",
"size_in_bytes": 35112
},
{
"_path": "lib/libffi.dylib",
"path_type": "softlink",
"sha256": "c6dac85dd35cfd0bb260396054f79baba4071ba9c3a7b0628f1b15cee0191c65",
"size_in_bytes": 32900
},
{
"_path": "lib/libffi.la",
"file_mode": "text",
"path_type": "hardlink",
"prefix_placeholder": "/opt/anaconda1anaconda2anaconda3",
"sha256": "ddd2989d3d661fdf003c0e484ba173eaa440a35f02e6895b4ec53cac447d554a",
"sha256_in_prefix": "3bbcec97db96ba3e8f30f996c65a73a2f06c494902cfe4a7ce085ca21da8a7e2",
"size_in_bytes": 926
},
{
"_path": "lib/pkgconfig/libffi.pc",
"file_mode": "text",
"path_type": "hardlink",
"prefix_placeholder": "/opt/anaconda1anaconda2anaconda3",
"sha256": "54eef4fdfc30f5012226b4250443412aa26c94a4b73180090127aecbb242a9f2",
"sha256_in_prefix": "f87fc83ceec890d9c0fab50aec9d85851902553a3087d35c6df3334b7579b533",
"size_in_bytes": 296
},
{
"_path": "share/info/libffi.info",
"path_type": "hardlink",
"sha256": "f4ebd2867714eea2874ff6f7de9a0278f1d86b9675ab8f69badf5f3724295eeb",
"sha256_in_prefix": "f4ebd2867714eea2874ff6f7de9a0278f1d86b9675ab8f69badf5f3724295eeb",
"size_in_bytes": 26833
},
{
"_path": "share/man/man3/ffi.3",
"path_type": "hardlink",
"sha256": "aa4730e114c305943a2226a524ed8447dc6b66a184523999868e5433c2c9de74",
"sha256_in_prefix": "aa4730e114c305943a2226a524ed8447dc6b66a184523999868e5433c2c9de74",
"size_in_bytes": 850
},
{
"_path": "share/man/man3/ffi_call.3",
"path_type": "hardlink",
"sha256": "2817ce7b78cb737d7b85b18b45899470f5f565f990d056d3d8cfabf6d779477f",
"sha256_in_prefix": "2817ce7b78cb737d7b85b18b45899470f5f565f990d056d3d8cfabf6d779477f",
"size_in_bytes": 2333
},
{
"_path": "share/man/man3/ffi_prep_cif.3",
"path_type": "hardlink",
"sha256": "f60c5bb9d04b55988da13511a2c3edfa0f39fb6f51abfb8ac24d0b161c4169c0",
"sha256_in_prefix": "f60c5bb9d04b55988da13511a2c3edfa0f39fb6f51abfb8ac24d0b161c4169c0",
"size_in_bytes": 1158
},
{
"_path": "share/man/man3/ffi_prep_cif_var.3",
"path_type": "hardlink",
"sha256": "9365685252f33f13627c9303bc01883b764227132069260c19e94100ff442a51",
"sha256_in_prefix": "9365685252f33f13627c9303bc01883b764227132069260c19e94100ff442a51",
"size_in_bytes": 1321
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 41085,
"subdir": "osx-64",
"timestamp": 1510177287824,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2",
"version": "3.2.1"
}

View file

@ -1,99 +0,0 @@
{
"build": "py37_1",
"build_number": 1,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [
"python >=3.7,<3.8.0a0"
],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/mccabe-0.6.1-py37_1",
"features": "",
"files": [
"lib/python3.7/site-packages/__pycache__/mccabe.cpython-37.pyc",
"lib/python3.7/site-packages/mccabe-0.6.1-py3.7.egg-info/PKG-INFO",
"lib/python3.7/site-packages/mccabe-0.6.1-py3.7.egg-info/SOURCES.txt",
"lib/python3.7/site-packages/mccabe-0.6.1-py3.7.egg-info/dependency_links.txt",
"lib/python3.7/site-packages/mccabe-0.6.1-py3.7.egg-info/entry_points.txt",
"lib/python3.7/site-packages/mccabe-0.6.1-py3.7.egg-info/not-zip-safe",
"lib/python3.7/site-packages/mccabe-0.6.1-py3.7.egg-info/top_level.txt",
"lib/python3.7/site-packages/mccabe.py"
],
"fn": "mccabe-0.6.1-py37_1.tar.bz2",
"license": "MIT",
"license_family": "MIT",
"link": {
"source": "/usr/local/anaconda3/pkgs/mccabe-0.6.1-py37_1",
"type": 1
},
"md5": "05f80748dba40f4f4abc3dd00ce88680",
"name": "mccabe",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/mccabe-0.6.1-py37_1.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "lib/python3.7/site-packages/__pycache__/mccabe.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "38c24f5bf20e686a6583127b96b19c865d6f9cfa4f6366100540fdb2c721d55c",
"sha256_in_prefix": "38c24f5bf20e686a6583127b96b19c865d6f9cfa4f6366100540fdb2c721d55c",
"size_in_bytes": 11099
},
{
"_path": "lib/python3.7/site-packages/mccabe-0.6.1-py3.7.egg-info/PKG-INFO",
"path_type": "hardlink",
"sha256": "04c49d978d2d11cca92bf11daad64b4eaba3af04073b7f99775a5a8dfd11473b",
"sha256_in_prefix": "04c49d978d2d11cca92bf11daad64b4eaba3af04073b7f99775a5a8dfd11473b",
"size_in_bytes": 5593
},
{
"_path": "lib/python3.7/site-packages/mccabe-0.6.1-py3.7.egg-info/SOURCES.txt",
"path_type": "hardlink",
"sha256": "70d96e663316f14036e3494adb221c4e7ba0ef7bad4a2c93b241fe02f64471f0",
"sha256_in_prefix": "70d96e663316f14036e3494adb221c4e7ba0ef7bad4a2c93b241fe02f64471f0",
"size_in_bytes": 256
},
{
"_path": "lib/python3.7/site-packages/mccabe-0.6.1-py3.7.egg-info/dependency_links.txt",
"path_type": "hardlink",
"sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"sha256_in_prefix": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"size_in_bytes": 1
},
{
"_path": "lib/python3.7/site-packages/mccabe-0.6.1-py3.7.egg-info/entry_points.txt",
"path_type": "hardlink",
"sha256": "376347d7cd865d35324e6f2bf1732069d6fd0be0916b9754af593c382f75b861",
"sha256_in_prefix": "376347d7cd865d35324e6f2bf1732069d6fd0be0916b9754af593c382f75b861",
"size_in_bytes": 47
},
{
"_path": "lib/python3.7/site-packages/mccabe-0.6.1-py3.7.egg-info/not-zip-safe",
"path_type": "hardlink",
"sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"sha256_in_prefix": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"size_in_bytes": 1
},
{
"_path": "lib/python3.7/site-packages/mccabe-0.6.1-py3.7.egg-info/top_level.txt",
"path_type": "hardlink",
"sha256": "db5717baa644fa5a5c7c0aaa00dbd7f448c8d440f5a7ccdc562bf4eb8bb744a0",
"sha256_in_prefix": "db5717baa644fa5a5c7c0aaa00dbd7f448c8d440f5a7ccdc562bf4eb8bb744a0",
"size_in_bytes": 7
},
{
"_path": "lib/python3.7/site-packages/mccabe.py",
"path_type": "hardlink",
"sha256": "5cf332c1d42c846ff99d28dc91bf8eccdaa7090b9742fcb71530a5b292b01900",
"sha256_in_prefix": "5cf332c1d42c846ff99d28dc91bf8eccdaa7090b9742fcb71530a5b292b01900",
"size_in_bytes": 10693
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 14109,
"subdir": "osx-64",
"timestamp": 1530795047771,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/mccabe-0.6.1-py37_1.tar.bz2",
"version": "0.6.1"
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,354 +0,0 @@
{
"build": "h1de35cc_5",
"build_number": 5,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [
"ncurses >=6.1,<7.0a0"
],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/readline-7.0-h1de35cc_5",
"features": "",
"files": [
"include/readline/chardefs.h",
"include/readline/history.h",
"include/readline/keymaps.h",
"include/readline/readline.h",
"include/readline/rlconf.h",
"include/readline/rlstdc.h",
"include/readline/rltypedefs.h",
"include/readline/tilde.h",
"lib/libhistory.7.0.dylib",
"lib/libhistory.7.dylib",
"lib/libhistory.a",
"lib/libhistory.dylib",
"lib/libreadline.7.0.dylib",
"lib/libreadline.7.dylib",
"lib/libreadline.a",
"lib/libreadline.dylib",
"share/doc/readline/CHANGES",
"share/doc/readline/INSTALL",
"share/doc/readline/README",
"share/info/history.info",
"share/info/readline.info",
"share/info/rluserman.info",
"share/man/man3/history.3",
"share/man/man3/readline.3",
"share/readline/excallback.c",
"share/readline/fileman.c",
"share/readline/hist_erasedups.c",
"share/readline/hist_purgecmd.c",
"share/readline/histexamp.c",
"share/readline/manexamp.c",
"share/readline/rl-callbacktest.c",
"share/readline/rl-fgets.c",
"share/readline/rl.c",
"share/readline/rlbasic.c",
"share/readline/rlcat.c",
"share/readline/rlevent.c",
"share/readline/rlptytest.c",
"share/readline/rltest.c",
"share/readline/rlversion.c"
],
"fn": "readline-7.0-h1de35cc_5.tar.bz2",
"license": "GPL-3.0",
"link": {
"source": "/usr/local/anaconda3/pkgs/readline-7.0-h1de35cc_5",
"type": 1
},
"md5": "e7e32610dc0b61aa5947789844175bbf",
"name": "readline",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/readline-7.0-h1de35cc_5.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "include/readline/chardefs.h",
"path_type": "hardlink",
"sha256": "a6f5a6ca703691dd0037e68fe2f55fdfe6e1b26fac32e725993a3295bdf47620",
"sha256_in_prefix": "a6f5a6ca703691dd0037e68fe2f55fdfe6e1b26fac32e725993a3295bdf47620",
"size_in_bytes": 4697
},
{
"_path": "include/readline/history.h",
"path_type": "hardlink",
"sha256": "92a97375e13547c723ffbacfc6fbbd83d066d7f1580b1544020c0935a8451bf5",
"sha256_in_prefix": "92a97375e13547c723ffbacfc6fbbd83d066d7f1580b1544020c0935a8451bf5",
"size_in_bytes": 10627
},
{
"_path": "include/readline/keymaps.h",
"path_type": "hardlink",
"sha256": "4174622cfd80c7fb2848de4d7c52114f0c76147c4e8c8231075c9d36ce8f5123",
"sha256_in_prefix": "4174622cfd80c7fb2848de4d7c52114f0c76147c4e8c8231075c9d36ce8f5123",
"size_in_bytes": 3163
},
{
"_path": "include/readline/readline.h",
"path_type": "hardlink",
"sha256": "bddd35ec559562d010de3a2af75f45de2c60ee7620adbb45b5fc0fcbe7061e5e",
"sha256_in_prefix": "bddd35ec559562d010de3a2af75f45de2c60ee7620adbb45b5fc0fcbe7061e5e",
"size_in_bytes": 38933
},
{
"_path": "include/readline/rlconf.h",
"path_type": "hardlink",
"sha256": "0b70c7e6387a22852bf35ce51024d4dc206f0e7c816dc49c0202e4de73c340b5",
"sha256_in_prefix": "0b70c7e6387a22852bf35ce51024d4dc206f0e7c816dc49c0202e4de73c340b5",
"size_in_bytes": 2830
},
{
"_path": "include/readline/rlstdc.h",
"path_type": "hardlink",
"sha256": "77c9d0203d571a576ec2aabbfbdfbdd18802d6fcfe6e890d33fbab3536f3317a",
"sha256_in_prefix": "77c9d0203d571a576ec2aabbfbdfbdd18802d6fcfe6e890d33fbab3536f3317a",
"size_in_bytes": 1835
},
{
"_path": "include/readline/rltypedefs.h",
"path_type": "hardlink",
"sha256": "2092f087b032a579d0a918685228730976fd6126a1a6a35ba93b1630bec8f294",
"sha256_in_prefix": "2092f087b032a579d0a918685228730976fd6126a1a6a35ba93b1630bec8f294",
"size_in_bytes": 3193
},
{
"_path": "include/readline/tilde.h",
"path_type": "hardlink",
"sha256": "ddf5b0d350768b3b6bd7a14175920eea3e74ea522a6659cb51914c3b61780c5d",
"sha256_in_prefix": "ddf5b0d350768b3b6bd7a14175920eea3e74ea522a6659cb51914c3b61780c5d",
"size_in_bytes": 3046
},
{
"_path": "lib/libhistory.7.0.dylib",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/e9c56b68-5033-475a-61cf-213463fabcde/volume/readline_1535475931028/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeh",
"sha256": "8a276b6b1165275f7c058d4f4bc4ae1def301ad13681c8c3cc1760bcee88af07",
"sha256_in_prefix": "bedca8f6890647b83b736f4395e7a8a3930e157c934d69a641fa07f89d458986",
"size_in_bytes": 44144
},
{
"_path": "lib/libhistory.7.dylib",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/e9c56b68-5033-475a-61cf-213463fabcde/volume/readline_1535475931028/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeh",
"sha256": "8a276b6b1165275f7c058d4f4bc4ae1def301ad13681c8c3cc1760bcee88af07",
"size_in_bytes": 44144
},
{
"_path": "lib/libhistory.a",
"path_type": "hardlink",
"sha256": "056743f4200b5b2b64195787094e856cabd9e23f7647e076006c5a870b10b04c",
"sha256_in_prefix": "056743f4200b5b2b64195787094e856cabd9e23f7647e076006c5a870b10b04c",
"size_in_bytes": 48304
},
{
"_path": "lib/libhistory.dylib",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/e9c56b68-5033-475a-61cf-213463fabcde/volume/readline_1535475931028/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeh",
"sha256": "8a276b6b1165275f7c058d4f4bc4ae1def301ad13681c8c3cc1760bcee88af07",
"size_in_bytes": 44144
},
{
"_path": "lib/libreadline.7.0.dylib",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/e9c56b68-5033-475a-61cf-213463fabcde/volume/readline_1535475931028/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeh",
"sha256": "90328e47cf7906e720e2051c220e6d86a6a033ffa35d708f094c072cc4243658",
"sha256_in_prefix": "f3f575892a7aea77b8580be0301941a4709716c656bf0df4e1ed9ec22fae9798",
"size_in_bytes": 265576
},
{
"_path": "lib/libreadline.7.dylib",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/e9c56b68-5033-475a-61cf-213463fabcde/volume/readline_1535475931028/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeh",
"sha256": "90328e47cf7906e720e2051c220e6d86a6a033ffa35d708f094c072cc4243658",
"size_in_bytes": 265576
},
{
"_path": "lib/libreadline.a",
"path_type": "hardlink",
"sha256": "df4d3a5ea4b540599f250582634d2317ac3e2cd8cb29c5e5039c8c3388daaf6c",
"sha256_in_prefix": "df4d3a5ea4b540599f250582634d2317ac3e2cd8cb29c5e5039c8c3388daaf6c",
"size_in_bytes": 433744
},
{
"_path": "lib/libreadline.dylib",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/e9c56b68-5033-475a-61cf-213463fabcde/volume/readline_1535475931028/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeh",
"sha256": "90328e47cf7906e720e2051c220e6d86a6a033ffa35d708f094c072cc4243658",
"size_in_bytes": 265576
},
{
"_path": "share/doc/readline/CHANGES",
"path_type": "hardlink",
"sha256": "a7e40467130b287a164ae241c61a559aea833ca99e7b8c851afd106128e1ead9",
"sha256_in_prefix": "a7e40467130b287a164ae241c61a559aea833ca99e7b8c851afd106128e1ead9",
"size_in_bytes": 65553
},
{
"_path": "share/doc/readline/INSTALL",
"path_type": "hardlink",
"sha256": "1b6ba37b1760cacd379d3715a2da6304beb8b1f6c77746e51f82feafa2f1e663",
"sha256_in_prefix": "1b6ba37b1760cacd379d3715a2da6304beb8b1f6c77746e51f82feafa2f1e663",
"size_in_bytes": 12304
},
{
"_path": "share/doc/readline/README",
"path_type": "hardlink",
"sha256": "5b2b97cbd05cc9ff3d1847710ceb71a22f6ec4c3234c191c3ead33c0e574d1c3",
"sha256_in_prefix": "5b2b97cbd05cc9ff3d1847710ceb71a22f6ec4c3234c191c3ead33c0e574d1c3",
"size_in_bytes": 8028
},
{
"_path": "share/info/history.info",
"path_type": "hardlink",
"sha256": "edcc386af3bc619a305321291581e6085963feabc39f117b648246abd25279d9",
"sha256_in_prefix": "edcc386af3bc619a305321291581e6085963feabc39f117b648246abd25279d9",
"size_in_bytes": 61089
},
{
"_path": "share/info/readline.info",
"path_type": "hardlink",
"sha256": "c1267327d0bbbd8059c1c8533a876a427c868c23d181b8e7917356d40a232a14",
"sha256_in_prefix": "c1267327d0bbbd8059c1c8533a876a427c868c23d181b8e7917356d40a232a14",
"size_in_bytes": 226612
},
{
"_path": "share/info/rluserman.info",
"path_type": "hardlink",
"sha256": "55e64bbe79dbbe5ae59c79f5480e8a47dd74787e42f2b4e469cfb05b452b0644",
"sha256_in_prefix": "55e64bbe79dbbe5ae59c79f5480e8a47dd74787e42f2b4e469cfb05b452b0644",
"size_in_bytes": 85788
},
{
"_path": "share/man/man3/history.3",
"path_type": "hardlink",
"sha256": "1e0514537a38f78108e463b635a8da9da2a0f50f588ccc484495b61b28866f34",
"sha256_in_prefix": "1e0514537a38f78108e463b635a8da9da2a0f50f588ccc484495b61b28866f34",
"size_in_bytes": 22402
},
{
"_path": "share/man/man3/readline.3",
"path_type": "hardlink",
"sha256": "585d7d5474559073d13e06d81ab59a0ba371c859e1cc604c9e3c4705014d182b",
"sha256_in_prefix": "585d7d5474559073d13e06d81ab59a0ba371c859e1cc604c9e3c4705014d182b",
"size_in_bytes": 46976
},
{
"_path": "share/readline/excallback.c",
"path_type": "hardlink",
"sha256": "175c7ab565e2a1e38c4dbe635f2c2212256217226e5e97fc6e309ec55c57a88b",
"sha256_in_prefix": "175c7ab565e2a1e38c4dbe635f2c2212256217226e5e97fc6e309ec55c57a88b",
"size_in_bytes": 5808
},
{
"_path": "share/readline/fileman.c",
"path_type": "hardlink",
"sha256": "da559f37a9bd8d3342530cf3d58215334a15914494b57c5776fbd343e5d16b7b",
"sha256_in_prefix": "da559f37a9bd8d3342530cf3d58215334a15914494b57c5776fbd343e5d16b7b",
"size_in_bytes": 11636
},
{
"_path": "share/readline/hist_erasedups.c",
"path_type": "hardlink",
"sha256": "820fd5c0355b2c40367c34dede2cdea8991cb4df7320f59f1a0f1c0b7075b51f",
"sha256_in_prefix": "820fd5c0355b2c40367c34dede2cdea8991cb4df7320f59f1a0f1c0b7075b51f",
"size_in_bytes": 2705
},
{
"_path": "share/readline/hist_purgecmd.c",
"path_type": "hardlink",
"sha256": "21e90655ddd9f825aca70224e9c210bd88b8e1634650d906e9e52b6eeeee0522",
"sha256_in_prefix": "21e90655ddd9f825aca70224e9c210bd88b8e1634650d906e9e52b6eeeee0522",
"size_in_bytes": 3334
},
{
"_path": "share/readline/histexamp.c",
"path_type": "hardlink",
"sha256": "4c88ec35be4c8fb447a0caf7084af2c0bd6191fc9f2c77076a3827ca628d94fe",
"sha256_in_prefix": "4c88ec35be4c8fb447a0caf7084af2c0bd6191fc9f2c77076a3827ca628d94fe",
"size_in_bytes": 2889
},
{
"_path": "share/readline/manexamp.c",
"path_type": "hardlink",
"sha256": "b82d58185870f641be5eb0af2fac414fe6dbc037b91359faf111009c26e48d99",
"sha256_in_prefix": "b82d58185870f641be5eb0af2fac414fe6dbc037b91359faf111009c26e48d99",
"size_in_bytes": 3300
},
{
"_path": "share/readline/rl-callbacktest.c",
"path_type": "hardlink",
"sha256": "251c7552bdbc81f0febfa468276d70f15e7f13bd1f434f7f49afaca297861b85",
"sha256_in_prefix": "251c7552bdbc81f0febfa468276d70f15e7f13bd1f434f7f49afaca297861b85",
"size_in_bytes": 2552
},
{
"_path": "share/readline/rl-fgets.c",
"path_type": "hardlink",
"sha256": "980c3460e4626b7806e7abe0e53d92620ff353e1dc9be1b332f91fc82c35fa7b",
"sha256_in_prefix": "980c3460e4626b7806e7abe0e53d92620ff353e1dc9be1b332f91fc82c35fa7b",
"size_in_bytes": 11147
},
{
"_path": "share/readline/rl.c",
"path_type": "hardlink",
"sha256": "fbe104e3dbc594b60771cc082ec6f715f9966827ea1853ba13ab1cab44611f7e",
"sha256_in_prefix": "fbe104e3dbc594b60771cc082ec6f715f9966827ea1853ba13ab1cab44611f7e",
"size_in_bytes": 3199
},
{
"_path": "share/readline/rlbasic.c",
"path_type": "hardlink",
"sha256": "b129350fdf0c77baa235b64139d6032858dd28d8a7185f1cdcea625e763d22e3",
"sha256_in_prefix": "b129350fdf0c77baa235b64139d6032858dd28d8a7185f1cdcea625e763d22e3",
"size_in_bytes": 459
},
{
"_path": "share/readline/rlcat.c",
"path_type": "hardlink",
"sha256": "6877b5444f4ed14134ea9bb521ef5e27750549f8e16e7f82dc6358f0d335daf9",
"sha256_in_prefix": "6877b5444f4ed14134ea9bb521ef5e27750549f8e16e7f82dc6358f0d335daf9",
"size_in_bytes": 3299
},
{
"_path": "share/readline/rlevent.c",
"path_type": "hardlink",
"sha256": "d35d39c772569607bed742bf1ca41ec4eefc76e363e1c799513c0cf24ee20e61",
"sha256_in_prefix": "d35d39c772569607bed742bf1ca41ec4eefc76e363e1c799513c0cf24ee20e61",
"size_in_bytes": 3295
},
{
"_path": "share/readline/rlptytest.c",
"path_type": "hardlink",
"sha256": "8f7a14c59a590be5ed12ca74b9aa6584083b8793adc61b31df1a05eb5de1f646",
"sha256_in_prefix": "8f7a14c59a590be5ed12ca74b9aa6584083b8793adc61b31df1a05eb5de1f646",
"size_in_bytes": 6622
},
{
"_path": "share/readline/rltest.c",
"path_type": "hardlink",
"sha256": "f5ac50ddfe78bb6871a41c2d9cf3ace1de3c0276aefc017ce55d9de6fdffcc89",
"sha256_in_prefix": "f5ac50ddfe78bb6871a41c2d9cf3ace1de3c0276aefc017ce55d9de6fdffcc89",
"size_in_bytes": 2146
},
{
"_path": "share/readline/rlversion.c",
"path_type": "hardlink",
"sha256": "a69a5d20adec803b5006b93e5fbb0c32e1b5bfabfc733cc8eb3e525754d06f86",
"sha256_in_prefix": "a69a5d20adec803b5006b93e5fbb0c32e1b5bfabfc733cc8eb3e525754d06f86",
"size_in_bytes": 1291
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 402747,
"subdir": "osx-64",
"timestamp": 1535476075762,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2",
"version": "7.0"
}

File diff suppressed because it is too large Load diff

View file

@ -1,91 +0,0 @@
{
"build": "py37_0",
"build_number": 0,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [
"python >=3.7,<3.8.0a0"
],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/six-1.12.0-py37_0",
"features": "",
"files": [
"lib/python3.7/site-packages/__pycache__/six.cpython-37.pyc",
"lib/python3.7/site-packages/six-1.12.0-py3.7.egg-info/PKG-INFO",
"lib/python3.7/site-packages/six-1.12.0-py3.7.egg-info/SOURCES.txt",
"lib/python3.7/site-packages/six-1.12.0-py3.7.egg-info/dependency_links.txt",
"lib/python3.7/site-packages/six-1.12.0-py3.7.egg-info/installed-files.txt",
"lib/python3.7/site-packages/six-1.12.0-py3.7.egg-info/top_level.txt",
"lib/python3.7/site-packages/six.py"
],
"fn": "six-1.12.0-py37_0.tar.bz2",
"license": "MIT",
"license_family": "MIT",
"link": {
"source": "/usr/local/anaconda3/pkgs/six-1.12.0-py37_0",
"type": 1
},
"md5": "f19bf8e3ce7f75497850b1408be450e5",
"name": "six",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/six-1.12.0-py37_0.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "lib/python3.7/site-packages/__pycache__/six.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "091ae411fd7b4d7abe06730e573dc30602458e4142d45d5db074b8c90015d7c8",
"sha256_in_prefix": "091ae411fd7b4d7abe06730e573dc30602458e4142d45d5db074b8c90015d7c8",
"size_in_bytes": 26356
},
{
"_path": "lib/python3.7/site-packages/six-1.12.0-py3.7.egg-info/PKG-INFO",
"path_type": "hardlink",
"sha256": "99de71fe0b34aaa4aa994b772a3c0ae1c77fa66ae595a6cb24a5fb7698a94f06",
"sha256_in_prefix": "99de71fe0b34aaa4aa994b772a3c0ae1c77fa66ae595a6cb24a5fb7698a94f06",
"size_in_bytes": 2207
},
{
"_path": "lib/python3.7/site-packages/six-1.12.0-py3.7.egg-info/SOURCES.txt",
"path_type": "hardlink",
"sha256": "0e5cf78d9cf118b109b87e8640636cebaedaa7bdc22a3be9fd6fcbe8ea43dc8e",
"sha256_in_prefix": "0e5cf78d9cf118b109b87e8640636cebaedaa7bdc22a3be9fd6fcbe8ea43dc8e",
"size_in_bytes": 253
},
{
"_path": "lib/python3.7/site-packages/six-1.12.0-py3.7.egg-info/dependency_links.txt",
"path_type": "hardlink",
"sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"sha256_in_prefix": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"size_in_bytes": 1
},
{
"_path": "lib/python3.7/site-packages/six-1.12.0-py3.7.egg-info/installed-files.txt",
"path_type": "hardlink",
"sha256": "90b07ef5919c77e175746d54c6963d7641a36048d993e0e37c33739bce63bc96",
"sha256_in_prefix": "90b07ef5919c77e175746d54c6963d7641a36048d993e0e37c33739bce63bc96",
"size_in_bytes": 100
},
{
"_path": "lib/python3.7/site-packages/six-1.12.0-py3.7.egg-info/top_level.txt",
"path_type": "hardlink",
"sha256": "fe2547fe2604b445e70fc9d819062960552f9145bdb043b51986e478a4806a2b",
"sha256_in_prefix": "fe2547fe2604b445e70fc9d819062960552f9145bdb043b51986e478a4806a2b",
"size_in_bytes": 4
},
{
"_path": "lib/python3.7/site-packages/six.py",
"path_type": "hardlink",
"sha256": "87d8dc876a52f3acb8477ea92914b72ce61409514d209311c236787c90ed278e",
"sha256_in_prefix": "87d8dc876a52f3acb8477ea92914b72ce61409514d209311c236787c90ed278e",
"size_in_bytes": 32452
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 22573,
"subdir": "osx-64",
"timestamp": 1544543216237,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/six-1.12.0-py37_0.tar.bz2",
"version": "1.12.0"
}

View file

@ -1,98 +0,0 @@
{
"build": "ha441bb4_0",
"build_number": 0,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [
"libedit >=3.1.20170329,<3.2.0a0",
"zlib >=1.2.11,<1.3.0a0"
],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/sqlite-3.26.0-ha441bb4_0",
"features": "",
"files": [
"bin/sqlite3",
"include/sqlite3.h",
"include/sqlite3ext.h",
"lib/libsqlite3.0.dylib",
"lib/libsqlite3.a",
"lib/libsqlite3.dylib",
"lib/pkgconfig/sqlite3.pc"
],
"fn": "sqlite-3.26.0-ha441bb4_0.tar.bz2",
"license": "Public-Domain (http://www.sqlite.org/copyright.html)",
"link": {
"source": "/usr/local/anaconda3/pkgs/sqlite-3.26.0-ha441bb4_0",
"type": 1
},
"md5": "f1d76b6c4ea427cacdcc8a5fbc94499e",
"name": "sqlite",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/sqlite-3.26.0-ha441bb4_0.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "bin/sqlite3",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/15b8ea55-0e66-47c7-5ff3-b73e1ad91d02/volume/sqlite_1545057805774/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol",
"sha256": "12b657b75b1f22113c588845b873fecbedf71f80255f86ad946240a1bdb703bc",
"sha256_in_prefix": "6a5c0fc315759a9493a8b4eb69de79b6564b2623859b0073082943c94a420d4b",
"size_in_bytes": 1758852
},
{
"_path": "include/sqlite3.h",
"path_type": "hardlink",
"sha256": "4665ec0dc1a9bc06884c492a245f21ec06470d65cc6f3023e3c2e3e7b4d97d02",
"sha256_in_prefix": "4665ec0dc1a9bc06884c492a245f21ec06470d65cc6f3023e3c2e3e7b4d97d02",
"size_in_bytes": 556318
},
{
"_path": "include/sqlite3ext.h",
"path_type": "hardlink",
"sha256": "938b297f63f40cd4855677900fb25270632364eca62d77decd563d671b458898",
"sha256_in_prefix": "938b297f63f40cd4855677900fb25270632364eca62d77decd563d671b458898",
"size_in_bytes": 33713
},
{
"_path": "lib/libsqlite3.0.dylib",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/15b8ea55-0e66-47c7-5ff3-b73e1ad91d02/volume/sqlite_1545057805774/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol",
"sha256": "ad47a3af592bc69ab860d1d4f233e960239f650ae10dca59e73f2bccdc392af7",
"sha256_in_prefix": "86e663625ef96cacaf1b5a471ee0613324119fe2ca60e2b6a6d6c1d8bfb6c226",
"size_in_bytes": 1561192
},
{
"_path": "lib/libsqlite3.a",
"path_type": "hardlink",
"sha256": "e6d2400a0cb53dfed7db81fa1e7af03b17184f4a47e22f1b52c58bae08092e0d",
"sha256_in_prefix": "e6d2400a0cb53dfed7db81fa1e7af03b17184f4a47e22f1b52c58bae08092e0d",
"size_in_bytes": 1915176
},
{
"_path": "lib/libsqlite3.dylib",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/15b8ea55-0e66-47c7-5ff3-b73e1ad91d02/volume/sqlite_1545057805774/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol",
"sha256": "ad47a3af592bc69ab860d1d4f233e960239f650ae10dca59e73f2bccdc392af7",
"size_in_bytes": 1561192
},
{
"_path": "lib/pkgconfig/sqlite3.pc",
"file_mode": "text",
"path_type": "hardlink",
"prefix_placeholder": "/opt/anaconda1anaconda2anaconda3",
"sha256": "ac50678579af7269085d544456b7c6c528dca3365a3dd27b34ba8df7009ce7c9",
"sha256_in_prefix": "b4640f27e62436fde9ae7a87fb4e4538365dd213a5bae04d072be7a46ce8e1ac",
"size_in_bytes": 289
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 2453764,
"subdir": "osx-64",
"timestamp": 1545058042221,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2",
"version": "3.26.0"
}

File diff suppressed because it is too large Load diff

View file

@ -1,309 +0,0 @@
{
"build": "py37_0",
"build_number": 0,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [
"python >=3.7,<3.8.0a0",
"setuptools"
],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/wheel-0.32.3-py37_0",
"features": "",
"files": [
"bin/wheel",
"lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/PKG-INFO",
"lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/SOURCES.txt",
"lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/dependency_links.txt",
"lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/entry_points.txt",
"lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/not-zip-safe",
"lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/requires.txt",
"lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/top_level.txt",
"lib/python3.7/site-packages/wheel/__init__.py",
"lib/python3.7/site-packages/wheel/__main__.py",
"lib/python3.7/site-packages/wheel/__pycache__/__init__.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/__pycache__/__main__.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/__pycache__/bdist_wheel.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/__pycache__/metadata.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/__pycache__/pep425tags.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/__pycache__/pkginfo.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/__pycache__/util.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/__pycache__/wheelfile.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/bdist_wheel.py",
"lib/python3.7/site-packages/wheel/cli/__init__.py",
"lib/python3.7/site-packages/wheel/cli/__pycache__/__init__.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/cli/__pycache__/convert.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/cli/__pycache__/install.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/cli/__pycache__/pack.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/cli/__pycache__/unpack.cpython-37.pyc",
"lib/python3.7/site-packages/wheel/cli/convert.py",
"lib/python3.7/site-packages/wheel/cli/install.py",
"lib/python3.7/site-packages/wheel/cli/pack.py",
"lib/python3.7/site-packages/wheel/cli/unpack.py",
"lib/python3.7/site-packages/wheel/metadata.py",
"lib/python3.7/site-packages/wheel/pep425tags.py",
"lib/python3.7/site-packages/wheel/pkginfo.py",
"lib/python3.7/site-packages/wheel/util.py",
"lib/python3.7/site-packages/wheel/wheelfile.py"
],
"fn": "wheel-0.32.3-py37_0.tar.bz2",
"license": "MIT",
"link": {
"source": "/usr/local/anaconda3/pkgs/wheel-0.32.3-py37_0",
"type": 1
},
"md5": "383438c59c19d9441b53b1233226a94a",
"name": "wheel",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/wheel-0.32.3-py37_0.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "bin/wheel",
"file_mode": "text",
"path_type": "hardlink",
"prefix_placeholder": "/opt/anaconda1anaconda2anaconda3",
"sha256": "a610b64038079c99d807d0accc36e2207fe932b8e1a89dddb752e787d556b2c6",
"sha256_in_prefix": "a789e65c3dad978baa374cd282eae0ca1d123bb2b90fcbd42469e096a93e2e5c",
"size_in_bytes": 239
},
{
"_path": "lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/PKG-INFO",
"path_type": "hardlink",
"sha256": "8f866c639a28f6de86993d9bcf66110bc95bdf0f2e275ccfb052f0de3eb4605a",
"sha256_in_prefix": "8f866c639a28f6de86993d9bcf66110bc95bdf0f2e275ccfb052f0de3eb4605a",
"size_in_bytes": 2207
},
{
"_path": "lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/SOURCES.txt",
"path_type": "hardlink",
"sha256": "4f9d2063b61570a740d24aeb85ee11b1c02a22074183b1fa51205932c4b5d5e1",
"sha256_in_prefix": "4f9d2063b61570a740d24aeb85ee11b1c02a22074183b1fa51205932c4b5d5e1",
"size_in_bytes": 519
},
{
"_path": "lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/dependency_links.txt",
"path_type": "hardlink",
"sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"sha256_in_prefix": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"size_in_bytes": 1
},
{
"_path": "lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/entry_points.txt",
"path_type": "hardlink",
"sha256": "37c1db605493df2acd418781db05d60443d4845b04b4a3513da0851893f2ab27",
"sha256_in_prefix": "37c1db605493df2acd418781db05d60443d4845b04b4a3513da0851893f2ab27",
"size_in_bytes": 108
},
{
"_path": "lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/not-zip-safe",
"path_type": "hardlink",
"sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"sha256_in_prefix": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b",
"size_in_bytes": 1
},
{
"_path": "lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/requires.txt",
"path_type": "hardlink",
"sha256": "ed39738d628f8c7ad4a82ba62ae1b32f2fb9ec2bf5b3b7121eaea76a31fcceeb",
"sha256_in_prefix": "ed39738d628f8c7ad4a82ba62ae1b32f2fb9ec2bf5b3b7121eaea76a31fcceeb",
"size_in_bytes": 33
},
{
"_path": "lib/python3.7/site-packages/wheel-0.32.3-py3.7.egg-info/top_level.txt",
"path_type": "hardlink",
"sha256": "1f148121b804b2d30f7b87856b0840eba32af90607328a5756802771f8dbff57",
"sha256_in_prefix": "1f148121b804b2d30f7b87856b0840eba32af90607328a5756802771f8dbff57",
"size_in_bytes": 6
},
{
"_path": "lib/python3.7/site-packages/wheel/__init__.py",
"path_type": "hardlink",
"sha256": "02000fed80266d98fce3f9c21fdcdaf11d145c7ca55dd7ca352ca0e60d712d9e",
"sha256_in_prefix": "02000fed80266d98fce3f9c21fdcdaf11d145c7ca55dd7ca352ca0e60d712d9e",
"size_in_bytes": 96
},
{
"_path": "lib/python3.7/site-packages/wheel/__main__.py",
"path_type": "hardlink",
"sha256": "945f982cee217509a85ae87879665df182f553de5149d9bbeac34b0576b4be31",
"sha256_in_prefix": "945f982cee217509a85ae87879665df182f553de5149d9bbeac34b0576b4be31",
"size_in_bytes": 417
},
{
"_path": "lib/python3.7/site-packages/wheel/__pycache__/__init__.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "70a6a80787c65622630008774e85bd70cc1bbb9cbe50026eec9392c3d3ce0c8b",
"sha256_in_prefix": "70a6a80787c65622630008774e85bd70cc1bbb9cbe50026eec9392c3d3ce0c8b",
"size_in_bytes": 154
},
{
"_path": "lib/python3.7/site-packages/wheel/__pycache__/__main__.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "ca1909b288cd2c63637b7c112b9ae7bcc82dd37d7c5ac6ce88666433ed8f8838",
"sha256_in_prefix": "ca1909b288cd2c63637b7c112b9ae7bcc82dd37d7c5ac6ce88666433ed8f8838",
"size_in_bytes": 547
},
{
"_path": "lib/python3.7/site-packages/wheel/__pycache__/bdist_wheel.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "42aabe63fba53ca99c4c4aac2cb6aab32e622c06023704fb4e8e7d6cb026f2ca",
"sha256_in_prefix": "42aabe63fba53ca99c4c4aac2cb6aab32e622c06023704fb4e8e7d6cb026f2ca",
"size_in_bytes": 9978
},
{
"_path": "lib/python3.7/site-packages/wheel/__pycache__/metadata.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "ae668f43881a0933d345c400aec4fd37189516c6ec7dbcbcf9a155ffde851d1a",
"sha256_in_prefix": "ae668f43881a0933d345c400aec4fd37189516c6ec7dbcbcf9a155ffde851d1a",
"size_in_bytes": 3721
},
{
"_path": "lib/python3.7/site-packages/wheel/__pycache__/pep425tags.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "968a49b2b8835169171e19de50b515ef3e1db04819e2f00fb49ffb86cac08430",
"sha256_in_prefix": "968a49b2b8835169171e19de50b515ef3e1db04819e2f00fb49ffb86cac08430",
"size_in_bytes": 4665
},
{
"_path": "lib/python3.7/site-packages/wheel/__pycache__/pkginfo.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "7a16b8bfa65ed4062b2e410a0102ec5b17a2e82c397087a5f023b766ef380ae3",
"sha256_in_prefix": "7a16b8bfa65ed4062b2e410a0102ec5b17a2e82c397087a5f023b766ef380ae3",
"size_in_bytes": 1525
},
{
"_path": "lib/python3.7/site-packages/wheel/__pycache__/util.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "4a81e9948b762fb009b461b3ecc65a83d821649889c170186d27d61af98724c9",
"sha256_in_prefix": "4a81e9948b762fb009b461b3ecc65a83d821649889c170186d27d61af98724c9",
"size_in_bytes": 1221
},
{
"_path": "lib/python3.7/site-packages/wheel/__pycache__/wheelfile.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "30bfd8be532be049f988aa4d927862065fe9bb02eb711fd3a7f97baec1d5855c",
"sha256_in_prefix": "30bfd8be532be049f988aa4d927862065fe9bb02eb711fd3a7f97baec1d5855c",
"size_in_bytes": 5219
},
{
"_path": "lib/python3.7/site-packages/wheel/bdist_wheel.py",
"path_type": "hardlink",
"sha256": "d2133add90f4d404c431102beadd266e685fdb2f296d190c9d61a2a1e77d9fea",
"sha256_in_prefix": "d2133add90f4d404c431102beadd266e685fdb2f296d190c9d61a2a1e77d9fea",
"size_in_bytes": 14627
},
{
"_path": "lib/python3.7/site-packages/wheel/cli/__init__.py",
"path_type": "hardlink",
"sha256": "0ec09792b2ff8ec4c7a11d2786673092b94d764697c34b95d0d2fec98a1842e5",
"sha256_in_prefix": "0ec09792b2ff8ec4c7a11d2786673092b94d764697c34b95d0d2fec98a1842e5",
"size_in_bytes": 2461
},
{
"_path": "lib/python3.7/site-packages/wheel/cli/__pycache__/__init__.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "c24d9b3865be068ab31258d900997e3d3956a9ffb440dcfe0273fc32223e61e4",
"sha256_in_prefix": "c24d9b3865be068ab31258d900997e3d3956a9ffb440dcfe0273fc32223e61e4",
"size_in_bytes": 2910
},
{
"_path": "lib/python3.7/site-packages/wheel/cli/__pycache__/convert.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "ce1dce6a6144303d2f1f8f1f6b9100d09b84e29b6479ea30fee603d5eec9f8b6",
"sha256_in_prefix": "ce1dce6a6144303d2f1f8f1f6b9100d09b84e29b6479ea30fee603d5eec9f8b6",
"size_in_bytes": 6165
},
{
"_path": "lib/python3.7/site-packages/wheel/cli/__pycache__/install.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "082604e338399249f9016239e8e914f8581967c64f7c079fc9839a650e99854f",
"sha256_in_prefix": "082604e338399249f9016239e8e914f8581967c64f7c079fc9839a650e99854f",
"size_in_bytes": 135
},
{
"_path": "lib/python3.7/site-packages/wheel/cli/__pycache__/pack.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "23fe2d25dcc6e30185152a10f5875a31a5b8700050d3004188b164611ebbb4bb",
"sha256_in_prefix": "23fe2d25dcc6e30185152a10f5875a31a5b8700050d3004188b164611ebbb4bb",
"size_in_bytes": 2420
},
{
"_path": "lib/python3.7/site-packages/wheel/cli/__pycache__/unpack.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "d5ff996916742181c91075c2e435388bf54872b7b3080801655ab027d8faccd8",
"sha256_in_prefix": "d5ff996916742181c91075c2e435388bf54872b7b3080801655ab027d8faccd8",
"size_in_bytes": 899
},
{
"_path": "lib/python3.7/site-packages/wheel/cli/convert.py",
"path_type": "hardlink",
"sha256": "99ed25e86e204b0f840558738d2afbc96616069f6ca4ccfb9a75e5c894e25eca",
"sha256_in_prefix": "99ed25e86e204b0f840558738d2afbc96616069f6ca4ccfb9a75e5c894e25eca",
"size_in_bytes": 9497
},
{
"_path": "lib/python3.7/site-packages/wheel/cli/install.py",
"path_type": "hardlink",
"sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"size_in_bytes": 0
},
{
"_path": "lib/python3.7/site-packages/wheel/cli/pack.py",
"path_type": "hardlink",
"sha256": "4558aae269d493cb3b47991cae05f45e7b57db36a50d37a84d20732e4df549a2",
"sha256_in_prefix": "4558aae269d493cb3b47991cae05f45e7b57db36a50d37a84d20732e4df549a2",
"size_in_bytes": 2145
},
{
"_path": "lib/python3.7/site-packages/wheel/cli/unpack.py",
"path_type": "hardlink",
"sha256": "d155b34fb53fc727a74cfc0455abf1aaf75e7bddc63ef0051e747752ef756917",
"sha256_in_prefix": "d155b34fb53fc727a74cfc0455abf1aaf75e7bddc63ef0051e747752ef756917",
"size_in_bytes": 673
},
{
"_path": "lib/python3.7/site-packages/wheel/metadata.py",
"path_type": "hardlink",
"sha256": "6b74204fc0b840ebeb4bef1115d3429fb5d6514a846697077a5988f172d30e76",
"sha256_in_prefix": "6b74204fc0b840ebeb4bef1115d3429fb5d6514a846697077a5988f172d30e76",
"size_in_bytes": 4691
},
{
"_path": "lib/python3.7/site-packages/wheel/pep425tags.py",
"path_type": "hardlink",
"sha256": "25d8db9ead7b92ac0f44a24231bd84d5571c3609c2dc7ea240bed519ac643daa",
"sha256_in_prefix": "25d8db9ead7b92ac0f44a24231bd84d5571c3609c2dc7ea240bed519ac643daa",
"size_in_bytes": 5908
},
{
"_path": "lib/python3.7/site-packages/wheel/pkginfo.py",
"path_type": "hardlink",
"sha256": "191efa92ea50ce7d71f6c283697b84e81e85b19e0e91f46d1bba677655cfbd0e",
"sha256_in_prefix": "191efa92ea50ce7d71f6c283697b84e81e85b19e0e91f46d1bba677655cfbd0e",
"size_in_bytes": 1257
},
{
"_path": "lib/python3.7/site-packages/wheel/util.py",
"path_type": "hardlink",
"sha256": "6d8930e6831c71f6b3542a184302a491e9a8572300168477e2698a071f11d4d2",
"sha256_in_prefix": "6d8930e6831c71f6b3542a184302a491e9a8572300168477e2698a071f11d4d2",
"size_in_bytes": 859
},
{
"_path": "lib/python3.7/site-packages/wheel/wheelfile.py",
"path_type": "hardlink",
"sha256": "9b1bfc91c46f5cc304e3142cb698a242fe7d6c7738d9e752eb3f240c0728ea2c",
"sha256_in_prefix": "9b1bfc91c46f5cc304e3142cb698a242fe7d6c7738d9e752eb3f240c0728ea2c",
"size_in_bytes": 6990
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 35262,
"subdir": "osx-64",
"timestamp": 1542642685866,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.32.3-py37_0.tar.bz2",
"version": "0.32.3"
}

View file

@ -1,116 +0,0 @@
{
"build": "py37h1de35cc_0",
"build_number": 0,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [
"python >=3.7,<3.8.0a0"
],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/wrapt-1.11.0-py37h1de35cc_0",
"features": "",
"files": [
"lib/python3.7/site-packages/wrapt-1.11.0-py3.7.egg-info",
"lib/python3.7/site-packages/wrapt/__init__.py",
"lib/python3.7/site-packages/wrapt/__pycache__/__init__.cpython-37.pyc",
"lib/python3.7/site-packages/wrapt/__pycache__/decorators.cpython-37.pyc",
"lib/python3.7/site-packages/wrapt/__pycache__/importer.cpython-37.pyc",
"lib/python3.7/site-packages/wrapt/__pycache__/wrappers.cpython-37.pyc",
"lib/python3.7/site-packages/wrapt/_wrappers.cpython-37m-darwin.so",
"lib/python3.7/site-packages/wrapt/decorators.py",
"lib/python3.7/site-packages/wrapt/importer.py",
"lib/python3.7/site-packages/wrapt/wrappers.py"
],
"fn": "wrapt-1.11.0-py37h1de35cc_0.tar.bz2",
"license": "BSD 2-Clause",
"link": {
"source": "/usr/local/anaconda3/pkgs/wrapt-1.11.0-py37h1de35cc_0",
"type": 1
},
"md5": "89b5bcc909be02077e77f9f07d1ef16b",
"name": "wrapt",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/wrapt-1.11.0-py37h1de35cc_0.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "lib/python3.7/site-packages/wrapt-1.11.0-py3.7.egg-info",
"path_type": "hardlink",
"sha256": "13b945be55cedccb42cdd85a591f0a8602345d665dd301311cd6077d3338c63b",
"sha256_in_prefix": "13b945be55cedccb42cdd85a591f0a8602345d665dd301311cd6077d3338c63b",
"size_in_bytes": 7618
},
{
"_path": "lib/python3.7/site-packages/wrapt/__init__.py",
"path_type": "hardlink",
"sha256": "70172673c91224aedcff911311815ae0d4351e93d08dd7464756bf8aba0714c6",
"sha256_in_prefix": "70172673c91224aedcff911311815ae0d4351e93d08dd7464756bf8aba0714c6",
"size_in_bytes": 630
},
{
"_path": "lib/python3.7/site-packages/wrapt/__pycache__/__init__.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "80793793a04bf22075269ade8eb7a9d0c511151cdde8ab8b77020bcf5d0f9c7a",
"sha256_in_prefix": "80793793a04bf22075269ade8eb7a9d0c511151cdde8ab8b77020bcf5d0f9c7a",
"size_in_bytes": 905
},
{
"_path": "lib/python3.7/site-packages/wrapt/__pycache__/decorators.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "9b164567c68859b7bd158fa1b44b1e1af4cf01175644dd9fe69d98c89a2dc6f5",
"sha256_in_prefix": "9b164567c68859b7bd158fa1b44b1e1af4cf01175644dd9fe69d98c89a2dc6f5",
"size_in_bytes": 8865
},
{
"_path": "lib/python3.7/site-packages/wrapt/__pycache__/importer.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "8b0d5eb5cc7dc94add74763f86f2c98f32ba4028f78222fc1ebb9378140739ef",
"sha256_in_prefix": "8b0d5eb5cc7dc94add74763f86f2c98f32ba4028f78222fc1ebb9378140739ef",
"size_in_bytes": 4200
},
{
"_path": "lib/python3.7/site-packages/wrapt/__pycache__/wrappers.cpython-37.pyc",
"path_type": "hardlink",
"sha256": "0d0d37e2b5d74cd7087def3ae6887840112363e5a7cdad737c9d8ab4e4f2ce52",
"sha256_in_prefix": "0d0d37e2b5d74cd7087def3ae6887840112363e5a7cdad737c9d8ab4e4f2ce52",
"size_in_bytes": 23988
},
{
"_path": "lib/python3.7/site-packages/wrapt/_wrappers.cpython-37m-darwin.so",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/f79c7cc2-8826-41d6-46e7-7677198d39f4/volume/wrapt_1547909590376/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold",
"sha256": "e675ab0e8b901180e5bfdd9da02c8c2ee0c52bfb9ffd0c02cf69926a1273fc1a",
"sha256_in_prefix": "e965a955e68aea9cfb8426a00e8542750a102d42e5419a8a906c2f0ea86482f9",
"size_in_bytes": 41912
},
{
"_path": "lib/python3.7/site-packages/wrapt/decorators.py",
"path_type": "hardlink",
"sha256": "90a11c9706bab9908fb7b6af835285290fabe0fecfe59ad800b6e3774f935f7c",
"sha256_in_prefix": "90a11c9706bab9908fb7b6af835285290fabe0fecfe59ad800b6e3774f935f7c",
"size_in_bytes": 20089
},
{
"_path": "lib/python3.7/site-packages/wrapt/importer.py",
"path_type": "hardlink",
"sha256": "b474ed152fa723accd78f8e1db24acc90f6483f7f6c78129efec128f79b823ec",
"sha256_in_prefix": "b474ed152fa723accd78f8e1db24acc90f6483f7f6c78129efec128f79b823ec",
"size_in_bytes": 7926
},
{
"_path": "lib/python3.7/site-packages/wrapt/wrappers.py",
"path_type": "hardlink",
"sha256": "a25a0b55e23427e9ff73f7411fe80ed0ced4a916fbeab246050156a6feeeceaa",
"sha256_in_prefix": "a25a0b55e23427e9ff73f7411fe80ed0ced4a916fbeab246050156a6feeeceaa",
"size_in_bytes": 33657
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 42564,
"subdir": "osx-64",
"timestamp": 1547909880530,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/wrapt-1.11.0-py37h1de35cc_0.tar.bz2",
"version": "1.11.0"
}

View file

@ -1,706 +0,0 @@
{
"build": "h1de35cc_4",
"build_number": 4,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/xz-5.2.4-h1de35cc_4",
"features": "",
"files": [
"bin/lzcat",
"bin/lzcmp",
"bin/lzdiff",
"bin/lzegrep",
"bin/lzfgrep",
"bin/lzgrep",
"bin/lzless",
"bin/lzma",
"bin/lzmadec",
"bin/lzmainfo",
"bin/lzmore",
"bin/unlzma",
"bin/unxz",
"bin/xz",
"bin/xzcat",
"bin/xzcmp",
"bin/xzdec",
"bin/xzdiff",
"bin/xzegrep",
"bin/xzfgrep",
"bin/xzgrep",
"bin/xzless",
"bin/xzmore",
"include/lzma.h",
"include/lzma/base.h",
"include/lzma/bcj.h",
"include/lzma/block.h",
"include/lzma/check.h",
"include/lzma/container.h",
"include/lzma/delta.h",
"include/lzma/filter.h",
"include/lzma/hardware.h",
"include/lzma/index.h",
"include/lzma/index_hash.h",
"include/lzma/lzma12.h",
"include/lzma/stream_flags.h",
"include/lzma/version.h",
"include/lzma/vli.h",
"lib/liblzma.5.dylib",
"lib/liblzma.a",
"lib/liblzma.dylib",
"lib/liblzma.la",
"lib/pkgconfig/liblzma.pc",
"share/doc/xz/AUTHORS",
"share/doc/xz/COPYING",
"share/doc/xz/COPYING.GPLv2",
"share/doc/xz/NEWS",
"share/doc/xz/README",
"share/doc/xz/THANKS",
"share/doc/xz/TODO",
"share/doc/xz/examples/00_README.txt",
"share/doc/xz/examples/01_compress_easy.c",
"share/doc/xz/examples/02_decompress.c",
"share/doc/xz/examples/03_compress_custom.c",
"share/doc/xz/examples/04_compress_easy_mt.c",
"share/doc/xz/examples/Makefile",
"share/doc/xz/examples_old/xz_pipe_comp.c",
"share/doc/xz/examples_old/xz_pipe_decomp.c",
"share/doc/xz/faq.txt",
"share/doc/xz/history.txt",
"share/doc/xz/lzma-file-format.txt",
"share/doc/xz/xz-file-format.txt",
"share/man/man1/lzcat.1",
"share/man/man1/lzcmp.1",
"share/man/man1/lzdiff.1",
"share/man/man1/lzegrep.1",
"share/man/man1/lzfgrep.1",
"share/man/man1/lzgrep.1",
"share/man/man1/lzless.1",
"share/man/man1/lzma.1",
"share/man/man1/lzmadec.1",
"share/man/man1/lzmainfo.1",
"share/man/man1/lzmore.1",
"share/man/man1/unlzma.1",
"share/man/man1/unxz.1",
"share/man/man1/xz.1",
"share/man/man1/xzcat.1",
"share/man/man1/xzcmp.1",
"share/man/man1/xzdec.1",
"share/man/man1/xzdiff.1",
"share/man/man1/xzegrep.1",
"share/man/man1/xzfgrep.1",
"share/man/man1/xzgrep.1",
"share/man/man1/xzless.1",
"share/man/man1/xzmore.1"
],
"fn": "xz-5.2.4-h1de35cc_4.tar.bz2",
"license": "LGPL-2.1 and GPL-2.0",
"link": {
"source": "/usr/local/anaconda3/pkgs/xz-5.2.4-h1de35cc_4",
"type": 1
},
"md5": "8b2f68c15aee680cead7680e6208e984",
"name": "xz",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/xz-5.2.4-h1de35cc_4.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "bin/lzcat",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/94aac6bb-b878-4d4a-4008-f37abbde30bf/volume/xz_1526498138924/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl",
"sha256": "502c1d565cf1dcfed15404618abb7de61a0127a665b251ea4c66ccd5e9e519ce",
"size_in_bytes": 74712
},
{
"_path": "bin/lzcmp",
"path_type": "softlink",
"sha256": "78de84e66db69fb76488031b9760567d27bea09cb6a411cb494d914cb96ea53e",
"size_in_bytes": 6632
},
{
"_path": "bin/lzdiff",
"path_type": "softlink",
"sha256": "78de84e66db69fb76488031b9760567d27bea09cb6a411cb494d914cb96ea53e",
"size_in_bytes": 6632
},
{
"_path": "bin/lzegrep",
"path_type": "softlink",
"sha256": "fbb4431fbf461d43c8a8473d8afd461a3a64c5dc6d3a35dd0b15dca2253ec4e9",
"size_in_bytes": 5628
},
{
"_path": "bin/lzfgrep",
"path_type": "softlink",
"sha256": "fbb4431fbf461d43c8a8473d8afd461a3a64c5dc6d3a35dd0b15dca2253ec4e9",
"size_in_bytes": 5628
},
{
"_path": "bin/lzgrep",
"path_type": "softlink",
"sha256": "fbb4431fbf461d43c8a8473d8afd461a3a64c5dc6d3a35dd0b15dca2253ec4e9",
"size_in_bytes": 5628
},
{
"_path": "bin/lzless",
"path_type": "softlink",
"sha256": "88046aad2ff0b9507e746278ce5bd1222ccf80f9765a9629463f5119cc459c1f",
"size_in_bytes": 1802
},
{
"_path": "bin/lzma",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/94aac6bb-b878-4d4a-4008-f37abbde30bf/volume/xz_1526498138924/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl",
"sha256": "502c1d565cf1dcfed15404618abb7de61a0127a665b251ea4c66ccd5e9e519ce",
"size_in_bytes": 74712
},
{
"_path": "bin/lzmadec",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/94aac6bb-b878-4d4a-4008-f37abbde30bf/volume/xz_1526498138924/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl",
"sha256": "263ff699d59961c585d53d77cb569509e7429e08e7c39e3057ca7a69060bbfac",
"sha256_in_prefix": "1d1a92000e5ba86f516064dd1ad337367cbff2bd6d497a5fb25df1107f70d8cb",
"size_in_bytes": 13972
},
{
"_path": "bin/lzmainfo",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/94aac6bb-b878-4d4a-4008-f37abbde30bf/volume/xz_1526498138924/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl",
"sha256": "4391f5977aad6030bf55a265f6ce1f0c0ece5a87848e32a24e2f142614c9ec1c",
"sha256_in_prefix": "4553100912b446ed97a438c79d4e86d563c84f7888e0a3464706d6fb5d181b16",
"size_in_bytes": 13724
},
{
"_path": "bin/lzmore",
"path_type": "softlink",
"sha256": "6ee498368573c3a6c56e45e76cd4374fa593ae3ec3526cf929ec553a3b7f8c55",
"size_in_bytes": 2161
},
{
"_path": "bin/unlzma",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/94aac6bb-b878-4d4a-4008-f37abbde30bf/volume/xz_1526498138924/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl",
"sha256": "502c1d565cf1dcfed15404618abb7de61a0127a665b251ea4c66ccd5e9e519ce",
"size_in_bytes": 74712
},
{
"_path": "bin/unxz",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/94aac6bb-b878-4d4a-4008-f37abbde30bf/volume/xz_1526498138924/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl",
"sha256": "502c1d565cf1dcfed15404618abb7de61a0127a665b251ea4c66ccd5e9e519ce",
"size_in_bytes": 74712
},
{
"_path": "bin/xz",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/94aac6bb-b878-4d4a-4008-f37abbde30bf/volume/xz_1526498138924/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl",
"sha256": "502c1d565cf1dcfed15404618abb7de61a0127a665b251ea4c66ccd5e9e519ce",
"sha256_in_prefix": "368b2ac5de1ae30219cca6380b5eef56ee65ed063a871573253add29704eafe0",
"size_in_bytes": 74712
},
{
"_path": "bin/xzcat",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/94aac6bb-b878-4d4a-4008-f37abbde30bf/volume/xz_1526498138924/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl",
"sha256": "502c1d565cf1dcfed15404618abb7de61a0127a665b251ea4c66ccd5e9e519ce",
"size_in_bytes": 74712
},
{
"_path": "bin/xzcmp",
"path_type": "softlink",
"sha256": "78de84e66db69fb76488031b9760567d27bea09cb6a411cb494d914cb96ea53e",
"size_in_bytes": 6632
},
{
"_path": "bin/xzdec",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/94aac6bb-b878-4d4a-4008-f37abbde30bf/volume/xz_1526498138924/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl",
"sha256": "040b3944888997a4aed64389f4f5ef8b9e5600ee818ff3675e347b6f52805e73",
"sha256_in_prefix": "1def3d836ccbb94e8651bdbfb68f0d8a0b76b47e5247c3d88828f785c2b59aea",
"size_in_bytes": 13980
},
{
"_path": "bin/xzdiff",
"path_type": "hardlink",
"sha256": "78de84e66db69fb76488031b9760567d27bea09cb6a411cb494d914cb96ea53e",
"sha256_in_prefix": "78de84e66db69fb76488031b9760567d27bea09cb6a411cb494d914cb96ea53e",
"size_in_bytes": 6632
},
{
"_path": "bin/xzegrep",
"path_type": "softlink",
"sha256": "fbb4431fbf461d43c8a8473d8afd461a3a64c5dc6d3a35dd0b15dca2253ec4e9",
"size_in_bytes": 5628
},
{
"_path": "bin/xzfgrep",
"path_type": "softlink",
"sha256": "fbb4431fbf461d43c8a8473d8afd461a3a64c5dc6d3a35dd0b15dca2253ec4e9",
"size_in_bytes": 5628
},
{
"_path": "bin/xzgrep",
"path_type": "hardlink",
"sha256": "fbb4431fbf461d43c8a8473d8afd461a3a64c5dc6d3a35dd0b15dca2253ec4e9",
"sha256_in_prefix": "fbb4431fbf461d43c8a8473d8afd461a3a64c5dc6d3a35dd0b15dca2253ec4e9",
"size_in_bytes": 5628
},
{
"_path": "bin/xzless",
"path_type": "hardlink",
"sha256": "88046aad2ff0b9507e746278ce5bd1222ccf80f9765a9629463f5119cc459c1f",
"sha256_in_prefix": "88046aad2ff0b9507e746278ce5bd1222ccf80f9765a9629463f5119cc459c1f",
"size_in_bytes": 1802
},
{
"_path": "bin/xzmore",
"path_type": "hardlink",
"sha256": "6ee498368573c3a6c56e45e76cd4374fa593ae3ec3526cf929ec553a3b7f8c55",
"sha256_in_prefix": "6ee498368573c3a6c56e45e76cd4374fa593ae3ec3526cf929ec553a3b7f8c55",
"size_in_bytes": 2161
},
{
"_path": "include/lzma.h",
"path_type": "hardlink",
"sha256": "f291d895970912c8b014a28c07ef1c353686ed0f4fe4b361795bbdf466219ffe",
"sha256_in_prefix": "f291d895970912c8b014a28c07ef1c353686ed0f4fe4b361795bbdf466219ffe",
"size_in_bytes": 9817
},
{
"_path": "include/lzma/base.h",
"path_type": "hardlink",
"sha256": "b49a0688b71b84bce13e80af2a505bbc98f24f04302ceb6a6c5b8d6840a5a971",
"sha256_in_prefix": "b49a0688b71b84bce13e80af2a505bbc98f24f04302ceb6a6c5b8d6840a5a971",
"size_in_bytes": 24858
},
{
"_path": "include/lzma/bcj.h",
"path_type": "hardlink",
"sha256": "485ee1ac185747b6e5324094aa462af194ba3a22a0206314e25f70423045e43d",
"sha256_in_prefix": "485ee1ac185747b6e5324094aa462af194ba3a22a0206314e25f70423045e43d",
"size_in_bytes": 2630
},
{
"_path": "include/lzma/block.h",
"path_type": "hardlink",
"sha256": "fbaa28d605010a58b00b6b6ff4a5c41a89ee9eb2adcf5d54fc5b011a397414e7",
"sha256_in_prefix": "fbaa28d605010a58b00b6b6ff4a5c41a89ee9eb2adcf5d54fc5b011a397414e7",
"size_in_bytes": 22106
},
{
"_path": "include/lzma/check.h",
"path_type": "hardlink",
"sha256": "79ef75b06fe389ccbc47ebeea1bb704157a58fe9710ddfbac8a62035359f9ae1",
"sha256_in_prefix": "79ef75b06fe389ccbc47ebeea1bb704157a58fe9710ddfbac8a62035359f9ae1",
"size_in_bytes": 4255
},
{
"_path": "include/lzma/container.h",
"path_type": "hardlink",
"sha256": "13fbba65515bed9d108e97cba3227604291545290fec3f11d9f5babcc6811404",
"sha256_in_prefix": "13fbba65515bed9d108e97cba3227604291545290fec3f11d9f5babcc6811404",
"size_in_bytes": 24844
},
{
"_path": "include/lzma/delta.h",
"path_type": "hardlink",
"sha256": "db9db049ab07363921bf19320174afbab16a1b4d401f797a5b2232dcb89b9d64",
"sha256_in_prefix": "db9db049ab07363921bf19320174afbab16a1b4d401f797a5b2232dcb89b9d64",
"size_in_bytes": 1865
},
{
"_path": "include/lzma/filter.h",
"path_type": "hardlink",
"sha256": "99142d7f19743625dc952c1b453229d4fdddd7c5d612bd596f947d7487485f65",
"sha256_in_prefix": "99142d7f19743625dc952c1b453229d4fdddd7c5d612bd596f947d7487485f65",
"size_in_bytes": 16429
},
{
"_path": "include/lzma/hardware.h",
"path_type": "hardlink",
"sha256": "b5b2574c9cb7fb98450d7bd3baf656c38aad6b6fda9ccd5796d1e0fcf41892ac",
"sha256_in_prefix": "b5b2574c9cb7fb98450d7bd3baf656c38aad6b6fda9ccd5796d1e0fcf41892ac",
"size_in_bytes": 2605
},
{
"_path": "include/lzma/index.h",
"path_type": "hardlink",
"sha256": "9eb7451f4d8de7d51a17585b7a86c3b4eb02d00d7e7fc1c390255e34231f3516",
"sha256_in_prefix": "9eb7451f4d8de7d51a17585b7a86c3b4eb02d00d7e7fc1c390255e34231f3516",
"size_in_bytes": 23491
},
{
"_path": "include/lzma/index_hash.h",
"path_type": "hardlink",
"sha256": "0840c2ae8dedc05a7ffe1597ead131532a8dc03521728d1d38e55da0fa769831",
"sha256_in_prefix": "0840c2ae8dedc05a7ffe1597ead131532a8dc03521728d1d38e55da0fa769831",
"size_in_bytes": 3914
},
{
"_path": "include/lzma/lzma12.h",
"path_type": "hardlink",
"sha256": "9722b770c5bd05f701fd77b195cdb27c02d0eeffc13b10b28e6312093555c699",
"sha256_in_prefix": "9722b770c5bd05f701fd77b195cdb27c02d0eeffc13b10b28e6312093555c699",
"size_in_bytes": 14743
},
{
"_path": "include/lzma/stream_flags.h",
"path_type": "hardlink",
"sha256": "beba70fa9d83dc6a7fcfae9b1f8d07b3b5acbbdc789f008e63da4206e2434acc",
"sha256_in_prefix": "beba70fa9d83dc6a7fcfae9b1f8d07b3b5acbbdc789f008e63da4206e2434acc",
"size_in_bytes": 8253
},
{
"_path": "include/lzma/version.h",
"path_type": "hardlink",
"sha256": "4871e8edc5a19e80a82bc24631b4ec04979dd426071a378657a5618ae4aaad18",
"sha256_in_prefix": "4871e8edc5a19e80a82bc24631b4ec04979dd426071a378657a5618ae4aaad18",
"size_in_bytes": 3497
},
{
"_path": "include/lzma/vli.h",
"path_type": "hardlink",
"sha256": "408347fd3b2b2c2b1e50f81963bf393a8b817dd1c066e1ba7e99705ea3d543f3",
"sha256_in_prefix": "408347fd3b2b2c2b1e50f81963bf393a8b817dd1c066e1ba7e99705ea3d543f3",
"size_in_bytes": 6547
},
{
"_path": "lib/liblzma.5.dylib",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/94aac6bb-b878-4d4a-4008-f37abbde30bf/volume/xz_1526498138924/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl",
"sha256": "70a86d3ef95170a6ef94e1f15326590343b5c08b8a1617fc7d6ee83d463b146a",
"sha256_in_prefix": "72131218573c8bb4343479794e14c2ba980d05cb37849e113198244999ab35ea",
"size_in_bytes": 154396
},
{
"_path": "lib/liblzma.a",
"path_type": "hardlink",
"sha256": "8827e8a9e8bf6f9aae8682b7bf3d0fd63390aa2817ba6da1bf70f4a055a566af",
"sha256_in_prefix": "8827e8a9e8bf6f9aae8682b7bf3d0fd63390aa2817ba6da1bf70f4a055a566af",
"size_in_bytes": 237512
},
{
"_path": "lib/liblzma.dylib",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/94aac6bb-b878-4d4a-4008-f37abbde30bf/volume/xz_1526498138924/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl",
"sha256": "70a86d3ef95170a6ef94e1f15326590343b5c08b8a1617fc7d6ee83d463b146a",
"size_in_bytes": 154396
},
{
"_path": "lib/liblzma.la",
"file_mode": "text",
"path_type": "hardlink",
"prefix_placeholder": "/opt/anaconda1anaconda2anaconda3",
"sha256": "19137e7f194dd6947dd61f2a9ad93ebc5e5315c2a798f6a249a7bc97b382ed43",
"sha256_in_prefix": "05d7b7d13f6c99123cbad003234b766bc56dd16d5957707f0c583b632899e505",
"size_in_bytes": 993
},
{
"_path": "lib/pkgconfig/liblzma.pc",
"file_mode": "text",
"path_type": "hardlink",
"prefix_placeholder": "/opt/anaconda1anaconda2anaconda3",
"sha256": "c4fdecc660d3f019c03b9b956e225d0051881f3467d7ba95e48d3665c9eb196e",
"sha256_in_prefix": "ebfe8b748ae5ddb6fc767378ab853263bfc9f3278d44facd81c7bafda1fa600f",
"size_in_bytes": 508
},
{
"_path": "share/doc/xz/AUTHORS",
"path_type": "hardlink",
"sha256": "72d7a7ee8a4eaca5d0b53f20609eff95d5e6f9e155ecce98127414b8215b0b15",
"sha256_in_prefix": "72d7a7ee8a4eaca5d0b53f20609eff95d5e6f9e155ecce98127414b8215b0b15",
"size_in_bytes": 1043
},
{
"_path": "share/doc/xz/COPYING",
"path_type": "hardlink",
"sha256": "bcb02973ef6e87ea73d331b3a80df7748407f17efdb784b61b47e0e610d3bb5c",
"sha256_in_prefix": "bcb02973ef6e87ea73d331b3a80df7748407f17efdb784b61b47e0e610d3bb5c",
"size_in_bytes": 2775
},
{
"_path": "share/doc/xz/COPYING.GPLv2",
"path_type": "hardlink",
"sha256": "8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643",
"sha256_in_prefix": "8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643",
"size_in_bytes": 18092
},
{
"_path": "share/doc/xz/NEWS",
"path_type": "hardlink",
"sha256": "20e7b2466109fcfaab6980a31619839eda44f816c028fa49df4b1abea5505b98",
"sha256_in_prefix": "20e7b2466109fcfaab6980a31619839eda44f816c028fa49df4b1abea5505b98",
"size_in_bytes": 21413
},
{
"_path": "share/doc/xz/README",
"path_type": "hardlink",
"sha256": "3a6d811b6a8fa7bc3ee51f372f27b9c28a3852b96d30eb219b0813db30b3631e",
"sha256_in_prefix": "3a6d811b6a8fa7bc3ee51f372f27b9c28a3852b96d30eb219b0813db30b3631e",
"size_in_bytes": 13526
},
{
"_path": "share/doc/xz/THANKS",
"path_type": "hardlink",
"sha256": "c2f94fee5e2a79eadbc3947ecb6c5909962c7003ec3491cc4cfce6c37363d288",
"sha256_in_prefix": "c2f94fee5e2a79eadbc3947ecb6c5909962c7003ec3491cc4cfce6c37363d288",
"size_in_bytes": 2487
},
{
"_path": "share/doc/xz/TODO",
"path_type": "hardlink",
"sha256": "2ce425810436c5299aa5e4a8b0186c0de15a496697b518481f606abb421e80a9",
"sha256_in_prefix": "2ce425810436c5299aa5e4a8b0186c0de15a496697b518481f606abb421e80a9",
"size_in_bytes": 4040
},
{
"_path": "share/doc/xz/examples/00_README.txt",
"path_type": "hardlink",
"sha256": "f0ddaa731c89d6028f55281229e56b89f32b8c477aba4f52367488f0f42651be",
"sha256_in_prefix": "f0ddaa731c89d6028f55281229e56b89f32b8c477aba4f52367488f0f42651be",
"size_in_bytes": 1037
},
{
"_path": "share/doc/xz/examples/01_compress_easy.c",
"path_type": "hardlink",
"sha256": "183bea5347ddd735ea9ebdb39fe21d0c91b191c8b16157480e1ca0623c72372d",
"sha256_in_prefix": "183bea5347ddd735ea9ebdb39fe21d0c91b191c8b16157480e1ca0623c72372d",
"size_in_bytes": 9534
},
{
"_path": "share/doc/xz/examples/02_decompress.c",
"path_type": "hardlink",
"sha256": "1c8733c08e1edbd727bb623eb23b5505b32a4306e310ee4f9048fc9bf4af8de2",
"sha256_in_prefix": "1c8733c08e1edbd727bb623eb23b5505b32a4306e310ee4f9048fc9bf4af8de2",
"size_in_bytes": 8913
},
{
"_path": "share/doc/xz/examples/03_compress_custom.c",
"path_type": "hardlink",
"sha256": "914afd1e3494d9942ef752123f9743fa9427d5a82ca3e593794b9a4d9e390f42",
"sha256_in_prefix": "914afd1e3494d9942ef752123f9743fa9427d5a82ca3e593794b9a4d9e390f42",
"size_in_bytes": 5025
},
{
"_path": "share/doc/xz/examples/04_compress_easy_mt.c",
"path_type": "hardlink",
"sha256": "80a5d7e1acd455ffb55bd1ca26f767789171293a231e6645ca991b83b954988c",
"sha256_in_prefix": "80a5d7e1acd455ffb55bd1ca26f767789171293a231e6645ca991b83b954988c",
"size_in_bytes": 5214
},
{
"_path": "share/doc/xz/examples/Makefile",
"path_type": "hardlink",
"sha256": "067ac8dbf5a9cab8c2a12b3fadda34c93656308f150a8a195bfcdb071ca043a7",
"sha256_in_prefix": "067ac8dbf5a9cab8c2a12b3fadda34c93656308f150a8a195bfcdb071ca043a7",
"size_in_bytes": 337
},
{
"_path": "share/doc/xz/examples_old/xz_pipe_comp.c",
"path_type": "hardlink",
"sha256": "fce7eefb9149c5f5a43869e07a4a576c1f2af4ca0aae6872bd7ca50ed8c85522",
"sha256_in_prefix": "fce7eefb9149c5f5a43869e07a4a576c1f2af4ca0aae6872bd7ca50ed8c85522",
"size_in_bytes": 3043
},
{
"_path": "share/doc/xz/examples_old/xz_pipe_decomp.c",
"path_type": "hardlink",
"sha256": "5d157c3c397fffc3b0489e49ef1d396fcfe6153f134ec5ea44ef0acc7fe474aa",
"sha256_in_prefix": "5d157c3c397fffc3b0489e49ef1d396fcfe6153f134ec5ea44ef0acc7fe474aa",
"size_in_bytes": 3130
},
{
"_path": "share/doc/xz/faq.txt",
"path_type": "hardlink",
"sha256": "eff832647a62f3b582e0255a8d450523074874d16bf3bdcbae76acbfe23fbb29",
"sha256_in_prefix": "eff832647a62f3b582e0255a8d450523074874d16bf3bdcbae76acbfe23fbb29",
"size_in_bytes": 9411
},
{
"_path": "share/doc/xz/history.txt",
"path_type": "hardlink",
"sha256": "9d6a0a72822734a0afb1816e07f0a7edab03339119bed4f393c1c7eec884eab6",
"sha256_in_prefix": "9d6a0a72822734a0afb1816e07f0a7edab03339119bed4f393c1c7eec884eab6",
"size_in_bytes": 7427
},
{
"_path": "share/doc/xz/lzma-file-format.txt",
"path_type": "hardlink",
"sha256": "0e961a7244cca641aa33619e9c9f0d795f9cc95657245f5d157e5bad05d3df66",
"sha256_in_prefix": "0e961a7244cca641aa33619e9c9f0d795f9cc95657245f5d157e5bad05d3df66",
"size_in_bytes": 5689
},
{
"_path": "share/doc/xz/xz-file-format.txt",
"path_type": "hardlink",
"sha256": "fada567e0ebd8b910d2c3210d13e74f3fcc8475d64e29e35db0fc05e3c6820f5",
"sha256_in_prefix": "fada567e0ebd8b910d2c3210d13e74f3fcc8475d64e29e35db0fc05e3c6820f5",
"size_in_bytes": 43305
},
{
"_path": "share/man/man1/lzcat.1",
"path_type": "softlink",
"sha256": "a7b010b2970aab83e5754573c8a6ecc57b03514c5ddce20fbef9bdf14b07c12f",
"size_in_bytes": 64643
},
{
"_path": "share/man/man1/lzcmp.1",
"path_type": "softlink",
"sha256": "fea4e489a64a2be64121e36041b993021839fbfe59d49a8b1b737c93fec3d29f",
"size_in_bytes": 1469
},
{
"_path": "share/man/man1/lzdiff.1",
"path_type": "softlink",
"sha256": "fea4e489a64a2be64121e36041b993021839fbfe59d49a8b1b737c93fec3d29f",
"size_in_bytes": 1469
},
{
"_path": "share/man/man1/lzegrep.1",
"path_type": "softlink",
"sha256": "d838d6e694c2c9bc89a5b118e96ee6976c74319bf3e1d469c9d6d66674e34a7d",
"size_in_bytes": 1489
},
{
"_path": "share/man/man1/lzfgrep.1",
"path_type": "softlink",
"sha256": "d838d6e694c2c9bc89a5b118e96ee6976c74319bf3e1d469c9d6d66674e34a7d",
"size_in_bytes": 1489
},
{
"_path": "share/man/man1/lzgrep.1",
"path_type": "softlink",
"sha256": "d838d6e694c2c9bc89a5b118e96ee6976c74319bf3e1d469c9d6d66674e34a7d",
"size_in_bytes": 1489
},
{
"_path": "share/man/man1/lzless.1",
"path_type": "softlink",
"sha256": "2db6570b6f62b6f0d46fecfc18ead93000abaec97399514b31e18edb7ab2fecb",
"size_in_bytes": 1360
},
{
"_path": "share/man/man1/lzma.1",
"path_type": "softlink",
"sha256": "a7b010b2970aab83e5754573c8a6ecc57b03514c5ddce20fbef9bdf14b07c12f",
"size_in_bytes": 64643
},
{
"_path": "share/man/man1/lzmadec.1",
"path_type": "softlink",
"sha256": "20e56b65af31a9488483f01659c681de022da370d36a427b232246e4eb39bb6f",
"size_in_bytes": 2838
},
{
"_path": "share/man/man1/lzmainfo.1",
"path_type": "hardlink",
"sha256": "0963a1fe3e0539f036aaa9adf5bb179df10f2abe5f7f470c87340a5619e5f500",
"sha256_in_prefix": "0963a1fe3e0539f036aaa9adf5bb179df10f2abe5f7f470c87340a5619e5f500",
"size_in_bytes": 1250
},
{
"_path": "share/man/man1/lzmore.1",
"path_type": "softlink",
"sha256": "551a2a7f6e2e5626b0cee4580a0107d81410afd742da25001c846b4fa7645b07",
"size_in_bytes": 1153
},
{
"_path": "share/man/man1/unlzma.1",
"path_type": "softlink",
"sha256": "a7b010b2970aab83e5754573c8a6ecc57b03514c5ddce20fbef9bdf14b07c12f",
"size_in_bytes": 64643
},
{
"_path": "share/man/man1/unxz.1",
"path_type": "softlink",
"sha256": "a7b010b2970aab83e5754573c8a6ecc57b03514c5ddce20fbef9bdf14b07c12f",
"size_in_bytes": 64643
},
{
"_path": "share/man/man1/xz.1",
"path_type": "hardlink",
"sha256": "a7b010b2970aab83e5754573c8a6ecc57b03514c5ddce20fbef9bdf14b07c12f",
"sha256_in_prefix": "a7b010b2970aab83e5754573c8a6ecc57b03514c5ddce20fbef9bdf14b07c12f",
"size_in_bytes": 64643
},
{
"_path": "share/man/man1/xzcat.1",
"path_type": "softlink",
"sha256": "a7b010b2970aab83e5754573c8a6ecc57b03514c5ddce20fbef9bdf14b07c12f",
"size_in_bytes": 64643
},
{
"_path": "share/man/man1/xzcmp.1",
"path_type": "softlink",
"sha256": "fea4e489a64a2be64121e36041b993021839fbfe59d49a8b1b737c93fec3d29f",
"size_in_bytes": 1469
},
{
"_path": "share/man/man1/xzdec.1",
"path_type": "hardlink",
"sha256": "20e56b65af31a9488483f01659c681de022da370d36a427b232246e4eb39bb6f",
"sha256_in_prefix": "20e56b65af31a9488483f01659c681de022da370d36a427b232246e4eb39bb6f",
"size_in_bytes": 2838
},
{
"_path": "share/man/man1/xzdiff.1",
"path_type": "hardlink",
"sha256": "fea4e489a64a2be64121e36041b993021839fbfe59d49a8b1b737c93fec3d29f",
"sha256_in_prefix": "fea4e489a64a2be64121e36041b993021839fbfe59d49a8b1b737c93fec3d29f",
"size_in_bytes": 1469
},
{
"_path": "share/man/man1/xzegrep.1",
"path_type": "softlink",
"sha256": "d838d6e694c2c9bc89a5b118e96ee6976c74319bf3e1d469c9d6d66674e34a7d",
"size_in_bytes": 1489
},
{
"_path": "share/man/man1/xzfgrep.1",
"path_type": "softlink",
"sha256": "d838d6e694c2c9bc89a5b118e96ee6976c74319bf3e1d469c9d6d66674e34a7d",
"size_in_bytes": 1489
},
{
"_path": "share/man/man1/xzgrep.1",
"path_type": "hardlink",
"sha256": "d838d6e694c2c9bc89a5b118e96ee6976c74319bf3e1d469c9d6d66674e34a7d",
"sha256_in_prefix": "d838d6e694c2c9bc89a5b118e96ee6976c74319bf3e1d469c9d6d66674e34a7d",
"size_in_bytes": 1489
},
{
"_path": "share/man/man1/xzless.1",
"path_type": "hardlink",
"sha256": "2db6570b6f62b6f0d46fecfc18ead93000abaec97399514b31e18edb7ab2fecb",
"sha256_in_prefix": "2db6570b6f62b6f0d46fecfc18ead93000abaec97399514b31e18edb7ab2fecb",
"size_in_bytes": 1360
},
{
"_path": "share/man/man1/xzmore.1",
"path_type": "hardlink",
"sha256": "551a2a7f6e2e5626b0cee4580a0107d81410afd742da25001c846b4fa7645b07",
"sha256_in_prefix": "551a2a7f6e2e5626b0cee4580a0107d81410afd742da25001c846b4fa7645b07",
"size_in_bytes": 1153
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 275767,
"subdir": "osx-64",
"timestamp": 1526498492181,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2",
"version": "5.2.4"
}

View file

@ -1,95 +0,0 @@
{
"build": "h1de35cc_3",
"build_number": 3,
"channel": "https://repo.anaconda.com/pkgs/main/osx-64",
"constrains": [],
"depends": [],
"extracted_package_dir": "/usr/local/anaconda3/pkgs/zlib-1.2.11-h1de35cc_3",
"features": "",
"files": [
"include/zconf.h",
"include/zlib.h",
"lib/libz.1.2.11.dylib",
"lib/libz.1.dylib",
"lib/libz.a",
"lib/libz.dylib",
"lib/pkgconfig/zlib.pc"
],
"fn": "zlib-1.2.11-h1de35cc_3.tar.bz2",
"license": "zlib",
"license_family": "Other",
"link": {
"source": "/usr/local/anaconda3/pkgs/zlib-1.2.11-h1de35cc_3",
"type": 1
},
"md5": "6fddebfbe8354dd5fdb5ac8d56dec5bf",
"name": "zlib",
"package_tarball_full_path": "/usr/local/anaconda3/pkgs/zlib-1.2.11-h1de35cc_3.tar.bz2",
"paths_data": {
"paths": [
{
"_path": "include/zconf.h",
"path_type": "hardlink",
"sha256": "77304005ceb5f0d03ad4c37eb8386a10866e4ceeb204f7c3b6599834c7319541",
"sha256_in_prefix": "77304005ceb5f0d03ad4c37eb8386a10866e4ceeb204f7c3b6599834c7319541",
"size_in_bytes": 16262
},
{
"_path": "include/zlib.h",
"path_type": "hardlink",
"sha256": "4ddc82b4af931ab55f44d977bde81bfbc4151b5dcdccc03142831a301b5ec3c8",
"sha256_in_prefix": "4ddc82b4af931ab55f44d977bde81bfbc4151b5dcdccc03142831a301b5ec3c8",
"size_in_bytes": 96239
},
{
"_path": "lib/libz.1.2.11.dylib",
"file_mode": "binary",
"path_type": "hardlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/daaeb72a-edde-4290-4b99-c04415e26890/volume/zlib_1542814994389/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_",
"sha256": "ba0ba7b406dd17acf750f4a4ed9a131c93bf3b843c66186bf7981fc9301cc122",
"sha256_in_prefix": "ecb9a2634a1063d16ef20039aff324b3390a54b7a43eabfd0923d19e0e798726",
"size_in_bytes": 100996
},
{
"_path": "lib/libz.1.dylib",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/daaeb72a-edde-4290-4b99-c04415e26890/volume/zlib_1542814994389/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_",
"sha256": "ba0ba7b406dd17acf750f4a4ed9a131c93bf3b843c66186bf7981fc9301cc122",
"size_in_bytes": 100996
},
{
"_path": "lib/libz.a",
"path_type": "hardlink",
"sha256": "5d56277a491c88af1df596f76c8958d131dfb18fbbcb5c75e67c631a8051c3df",
"sha256_in_prefix": "5d56277a491c88af1df596f76c8958d131dfb18fbbcb5c75e67c631a8051c3df",
"size_in_bytes": 117448
},
{
"_path": "lib/libz.dylib",
"file_mode": "binary",
"path_type": "softlink",
"prefix_placeholder": "/opt/concourse/worker/volumes/live/daaeb72a-edde-4290-4b99-c04415e26890/volume/zlib_1542814994389/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_",
"sha256": "ba0ba7b406dd17acf750f4a4ed9a131c93bf3b843c66186bf7981fc9301cc122",
"size_in_bytes": 100996
},
{
"_path": "lib/pkgconfig/zlib.pc",
"file_mode": "text",
"path_type": "hardlink",
"prefix_placeholder": "/opt/anaconda1anaconda2anaconda3",
"sha256": "5613df6f1a56c1c3e0c2aa3da9284b51de9682882a6a9ba7af68a07745cb3aac",
"sha256_in_prefix": "80bb79bc5f1b95121ed9748d001f40f3fd831cc403b766055988aea786c491dc",
"size_in_bytes": 281
}
],
"paths_version": 1
},
"requested_spec": "None",
"size": 107053,
"subdir": "osx-64",
"timestamp": 1542815100324,
"track_features": "",
"url": "https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2",
"version": "1.2.11"
}

View file

@ -1,677 +0,0 @@
/*
* $XConsortium: X.h,v 1.66 88/09/06 15:55:56 jim Exp $
*/
/* Definitions for the X window system likely to be used by applications */
#ifndef X_H
#define X_H
/***********************************************************
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Digital or MIT not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
******************************************************************/
#define X_PROTOCOL 11 /* current protocol version */
#define X_PROTOCOL_REVISION 0 /* current minor version */
#if defined(MAC_OSX_TK)
# define Cursor XCursor
# define Region XRegion
#endif
/* Resources */
#ifdef _WIN64
typedef __int64 XID;
#else
typedef unsigned long XID;
#endif
typedef XID Window;
typedef XID Drawable;
typedef XID Font;
typedef XID Pixmap;
typedef XID Cursor;
typedef XID Colormap;
typedef XID GContext;
typedef XID KeySym;
typedef unsigned long Mask;
typedef unsigned long Atom;
typedef unsigned long VisualID;
typedef unsigned long Time;
typedef unsigned long KeyCode; /* In order to use IME, the Macintosh needs
* to pack 3 bytes into the keyCode field in
* the XEvent. In the real X.h, a KeyCode is
* defined as a short, which wouldn't be big
* enough. */
/*****************************************************************
* RESERVED RESOURCE AND CONSTANT DEFINITIONS
*****************************************************************/
#define None 0L /* universal null resource or null atom */
#define ParentRelative 1L /* background pixmap in CreateWindow
and ChangeWindowAttributes */
#define CopyFromParent 0L /* border pixmap in CreateWindow
and ChangeWindowAttributes
special VisualID and special window
class passed to CreateWindow */
#define PointerWindow 0L /* destination window in SendEvent */
#define InputFocus 1L /* destination window in SendEvent */
#define PointerRoot 1L /* focus window in SetInputFocus */
#define AnyPropertyType 0L /* special Atom, passed to GetProperty */
#define AnyKey 0L /* special Key Code, passed to GrabKey */
#define AnyButton 0L /* special Button Code, passed to GrabButton */
#define AllTemporary 0L /* special Resource ID passed to KillClient */
#define CurrentTime 0L /* special Time */
#define NoSymbol 0L /* special KeySym */
/*****************************************************************
* EVENT DEFINITIONS
*****************************************************************/
/* Input Event Masks. Used as event-mask window attribute and as arguments
to Grab requests. Not to be confused with event names. */
#define NoEventMask 0L
#define KeyPressMask (1L<<0)
#define KeyReleaseMask (1L<<1)
#define ButtonPressMask (1L<<2)
#define ButtonReleaseMask (1L<<3)
#define EnterWindowMask (1L<<4)
#define LeaveWindowMask (1L<<5)
#define PointerMotionMask (1L<<6)
#define PointerMotionHintMask (1L<<7)
#define Button1MotionMask (1L<<8)
#define Button2MotionMask (1L<<9)
#define Button3MotionMask (1L<<10)
#define Button4MotionMask (1L<<11)
#define Button5MotionMask (1L<<12)
#define ButtonMotionMask (1L<<13)
#define KeymapStateMask (1L<<14)
#define ExposureMask (1L<<15)
#define VisibilityChangeMask (1L<<16)
#define StructureNotifyMask (1L<<17)
#define ResizeRedirectMask (1L<<18)
#define SubstructureNotifyMask (1L<<19)
#define SubstructureRedirectMask (1L<<20)
#define FocusChangeMask (1L<<21)
#define PropertyChangeMask (1L<<22)
#define ColormapChangeMask (1L<<23)
#define OwnerGrabButtonMask (1L<<24)
/* Event names. Used in "type" field in XEvent structures. Not to be
confused with event masks above. They start from 2 because 0 and 1
are reserved in the protocol for errors and replies. */
#define KeyPress 2
#define KeyRelease 3
#define ButtonPress 4
#define ButtonRelease 5
#define MotionNotify 6
#define EnterNotify 7
#define LeaveNotify 8
#define FocusIn 9
#define FocusOut 10
#define KeymapNotify 11
#define Expose 12
#define GraphicsExpose 13
#define NoExpose 14
#define VisibilityNotify 15
#define CreateNotify 16
#define DestroyNotify 17
#define UnmapNotify 18
#define MapNotify 19
#define MapRequest 20
#define ReparentNotify 21
#define ConfigureNotify 22
#define ConfigureRequest 23
#define GravityNotify 24
#define ResizeRequest 25
#define CirculateNotify 26
#define CirculateRequest 27
#define PropertyNotify 28
#define SelectionClear 29
#define SelectionRequest 30
#define SelectionNotify 31
#define ColormapNotify 32
#define ClientMessage 33
#define MappingNotify 34
#define LASTEvent 35 /* must be bigger than any event # */
/* Key masks. Used as modifiers to GrabButton and GrabKey, results of QueryPointer,
state in various key-, mouse-, and button-related events. */
#define ShiftMask (1<<0)
#define LockMask (1<<1)
#define ControlMask (1<<2)
#define Mod1Mask (1<<3)
#define Mod2Mask (1<<4)
#define Mod3Mask (1<<5)
#define Mod4Mask (1<<6)
#define Mod5Mask (1<<7)
/* modifier names. Used to build a SetModifierMapping request or
to read a GetModifierMapping request. These correspond to the
masks defined above. */
#define ShiftMapIndex 0
#define LockMapIndex 1
#define ControlMapIndex 2
#define Mod1MapIndex 3
#define Mod2MapIndex 4
#define Mod3MapIndex 5
#define Mod4MapIndex 6
#define Mod5MapIndex 7
/* button masks. Used in same manner as Key masks above. Not to be confused
with button names below. */
#define Button1Mask (1<<8)
#define Button2Mask (1<<9)
#define Button3Mask (1<<10)
#define Button4Mask (1<<11)
#define Button5Mask (1<<12)
#define AnyModifier (1<<15) /* used in GrabButton, GrabKey */
/* button names. Used as arguments to GrabButton and as detail in ButtonPress
and ButtonRelease events. Not to be confused with button masks above.
Note that 0 is already defined above as "AnyButton". */
#define Button1 1
#define Button2 2
#define Button3 3
#define Button4 4
#define Button5 5
/* Notify modes */
#define NotifyNormal 0
#define NotifyGrab 1
#define NotifyUngrab 2
#define NotifyWhileGrabbed 3
#define NotifyHint 1 /* for MotionNotify events */
/* Notify detail */
#define NotifyAncestor 0
#define NotifyVirtual 1
#define NotifyInferior 2
#define NotifyNonlinear 3
#define NotifyNonlinearVirtual 4
#define NotifyPointer 5
#define NotifyPointerRoot 6
#define NotifyDetailNone 7
/* Visibility notify */
#define VisibilityUnobscured 0
#define VisibilityPartiallyObscured 1
#define VisibilityFullyObscured 2
/* Circulation request */
#define PlaceOnTop 0
#define PlaceOnBottom 1
/* protocol families */
#define FamilyInternet 0
#define FamilyDECnet 1
#define FamilyChaos 2
/* Property notification */
#define PropertyNewValue 0
#define PropertyDelete 1
/* Color Map notification */
#define ColormapUninstalled 0
#define ColormapInstalled 1
/* GrabPointer, GrabButton, GrabKeyboard, GrabKey Modes */
#define GrabModeSync 0
#define GrabModeAsync 1
/* GrabPointer, GrabKeyboard reply status */
#define GrabSuccess 0
#define AlreadyGrabbed 1
#define GrabInvalidTime 2
#define GrabNotViewable 3
#define GrabFrozen 4
/* AllowEvents modes */
#define AsyncPointer 0
#define SyncPointer 1
#define ReplayPointer 2
#define AsyncKeyboard 3
#define SyncKeyboard 4
#define ReplayKeyboard 5
#define AsyncBoth 6
#define SyncBoth 7
/* Used in SetInputFocus, GetInputFocus */
#define RevertToNone (int)None
#define RevertToPointerRoot (int)PointerRoot
#define RevertToParent 2
/*****************************************************************
* ERROR CODES
*****************************************************************/
#define Success 0 /* everything's okay */
#define BadRequest 1 /* bad request code */
#define BadValue 2 /* int parameter out of range */
#define BadWindow 3 /* parameter not a Window */
#define BadPixmap 4 /* parameter not a Pixmap */
#define BadAtom 5 /* parameter not an Atom */
#define BadCursor 6 /* parameter not a Cursor */
#define BadFont 7 /* parameter not a Font */
#define BadMatch 8 /* parameter mismatch */
#define BadDrawable 9 /* parameter not a Pixmap or Window */
#define BadAccess 10 /* depending on context:
- key/button already grabbed
- attempt to free an illegal
cmap entry
- attempt to store into a read-only
color map entry.
- attempt to modify the access control
list from other than the local host.
*/
#define BadAlloc 11 /* insufficient resources */
#define BadColor 12 /* no such colormap */
#define BadGC 13 /* parameter not a GC */
#define BadIDChoice 14 /* choice not in range or already used */
#define BadName 15 /* font or color name doesn't exist */
#define BadLength 16 /* Request length incorrect */
#define BadImplementation 17 /* server is defective */
#define FirstExtensionError 128
#define LastExtensionError 255
/*****************************************************************
* WINDOW DEFINITIONS
*****************************************************************/
/* Window classes used by CreateWindow */
/* Note that CopyFromParent is already defined as 0 above */
#define InputOutput 1
#define InputOnly 2
/* Window attributes for CreateWindow and ChangeWindowAttributes */
#define CWBackPixmap (1L<<0)
#define CWBackPixel (1L<<1)
#define CWBorderPixmap (1L<<2)
#define CWBorderPixel (1L<<3)
#define CWBitGravity (1L<<4)
#define CWWinGravity (1L<<5)
#define CWBackingStore (1L<<6)
#define CWBackingPlanes (1L<<7)
#define CWBackingPixel (1L<<8)
#define CWOverrideRedirect (1L<<9)
#define CWSaveUnder (1L<<10)
#define CWEventMask (1L<<11)
#define CWDontPropagate (1L<<12)
#define CWColormap (1L<<13)
#define CWCursor (1L<<14)
/* ConfigureWindow structure */
#define CWX (1<<0)
#define CWY (1<<1)
#define CWWidth (1<<2)
#define CWHeight (1<<3)
#define CWBorderWidth (1<<4)
#define CWSibling (1<<5)
#define CWStackMode (1<<6)
/* Bit Gravity */
#define ForgetGravity 0
#define NorthWestGravity 1
#define NorthGravity 2
#define NorthEastGravity 3
#define WestGravity 4
#define CenterGravity 5
#define EastGravity 6
#define SouthWestGravity 7
#define SouthGravity 8
#define SouthEastGravity 9
#define StaticGravity 10
/* Window gravity + bit gravity above */
#define UnmapGravity 0
/* Used in CreateWindow for backing-store hint */
#define NotUseful 0
#define WhenMapped 1
#define Always 2
/* Used in GetWindowAttributes reply */
#define IsUnmapped 0
#define IsUnviewable 1
#define IsViewable 2
/* Used in ChangeSaveSet */
#define SetModeInsert 0
#define SetModeDelete 1
/* Used in ChangeCloseDownMode */
#define DestroyAll 0
#define RetainPermanent 1
#define RetainTemporary 2
/* Window stacking method (in configureWindow) */
#define Above 0
#define Below 1
#define TopIf 2
#define BottomIf 3
#define Opposite 4
/* Circulation direction */
#define RaiseLowest 0
#define LowerHighest 1
/* Property modes */
#define PropModeReplace 0
#define PropModePrepend 1
#define PropModeAppend 2
/*****************************************************************
* GRAPHICS DEFINITIONS
*****************************************************************/
/* graphics functions, as in GC.alu */
#define GXclear 0x0 /* 0 */
#define GXand 0x1 /* src AND dst */
#define GXandReverse 0x2 /* src AND NOT dst */
#define GXcopy 0x3 /* src */
#define GXandInverted 0x4 /* NOT src AND dst */
#define GXnoop 0x5 /* dst */
#define GXxor 0x6 /* src XOR dst */
#define GXor 0x7 /* src OR dst */
#define GXnor 0x8 /* NOT src AND NOT dst */
#define GXequiv 0x9 /* NOT src XOR dst */
#define GXinvert 0xa /* NOT dst */
#define GXorReverse 0xb /* src OR NOT dst */
#define GXcopyInverted 0xc /* NOT src */
#define GXorInverted 0xd /* NOT src OR dst */
#define GXnand 0xe /* NOT src OR NOT dst */
#define GXset 0xf /* 1 */
/* LineStyle */
#define LineSolid 0
#define LineOnOffDash 1
#define LineDoubleDash 2
/* capStyle */
#define CapNotLast 0
#define CapButt 1
#define CapRound 2
#define CapProjecting 3
/* joinStyle */
#define JoinMiter 0
#define JoinRound 1
#define JoinBevel 2
/* fillStyle */
#define FillSolid 0
#define FillTiled 1
#define FillStippled 2
#define FillOpaqueStippled 3
/* fillRule */
#define EvenOddRule 0
#define WindingRule 1
/* subwindow mode */
#define ClipByChildren 0
#define IncludeInferiors 1
/* SetClipRectangles ordering */
#define Unsorted 0
#define YSorted 1
#define YXSorted 2
#define YXBanded 3
/* CoordinateMode for drawing routines */
#define CoordModeOrigin 0 /* relative to the origin */
#define CoordModePrevious 1 /* relative to previous point */
/* Polygon shapes */
#define Complex 0 /* paths may intersect */
#define Nonconvex 1 /* no paths intersect, but not convex */
#define Convex 2 /* wholly convex */
/* Arc modes for PolyFillArc */
#define ArcChord 0 /* join endpoints of arc */
#define ArcPieSlice 1 /* join endpoints to center of arc */
/* GC components: masks used in CreateGC, CopyGC, ChangeGC, OR'ed into
GC.stateChanges */
#define GCFunction (1L<<0)
#define GCPlaneMask (1L<<1)
#define GCForeground (1L<<2)
#define GCBackground (1L<<3)
#define GCLineWidth (1L<<4)
#define GCLineStyle (1L<<5)
#define GCCapStyle (1L<<6)
#define GCJoinStyle (1L<<7)
#define GCFillStyle (1L<<8)
#define GCFillRule (1L<<9)
#define GCTile (1L<<10)
#define GCStipple (1L<<11)
#define GCTileStipXOrigin (1L<<12)
#define GCTileStipYOrigin (1L<<13)
#define GCFont (1L<<14)
#define GCSubwindowMode (1L<<15)
#define GCGraphicsExposures (1L<<16)
#define GCClipXOrigin (1L<<17)
#define GCClipYOrigin (1L<<18)
#define GCClipMask (1L<<19)
#define GCDashOffset (1L<<20)
#define GCDashList (1L<<21)
#define GCArcMode (1L<<22)
#define GCLastBit 22
/*****************************************************************
* FONTS
*****************************************************************/
/* used in QueryFont -- draw direction */
#define FontLeftToRight 0
#define FontRightToLeft 1
#define FontChange 255
/*****************************************************************
* IMAGING
*****************************************************************/
/* ImageFormat -- PutImage, GetImage */
#define XYBitmap 0 /* depth 1, XYFormat */
#define XYPixmap 1 /* depth == drawable depth */
#define ZPixmap 2 /* depth == drawable depth */
/*****************************************************************
* COLOR MAP STUFF
*****************************************************************/
/* For CreateColormap */
#define AllocNone 0 /* create map with no entries */
#define AllocAll 1 /* allocate entire map writeable */
/* Flags used in StoreNamedColor, StoreColors */
#define DoRed (1<<0)
#define DoGreen (1<<1)
#define DoBlue (1<<2)
/*****************************************************************
* CURSOR STUFF
*****************************************************************/
/* QueryBestSize Class */
#define CursorShape 0 /* largest size that can be displayed */
#define TileShape 1 /* size tiled fastest */
#define StippleShape 2 /* size stippled fastest */
/*****************************************************************
* KEYBOARD/POINTER STUFF
*****************************************************************/
#define AutoRepeatModeOff 0
#define AutoRepeatModeOn 1
#define AutoRepeatModeDefault 2
#define LedModeOff 0
#define LedModeOn 1
/* masks for ChangeKeyboardControl */
#define KBKeyClickPercent (1L<<0)
#define KBBellPercent (1L<<1)
#define KBBellPitch (1L<<2)
#define KBBellDuration (1L<<3)
#define KBLed (1L<<4)
#define KBLedMode (1L<<5)
#define KBKey (1L<<6)
#define KBAutoRepeatMode (1L<<7)
#define MappingSuccess 0
#define MappingBusy 1
#define MappingFailed 2
#define MappingModifier 0
#define MappingKeyboard 1
#define MappingPointer 2
/*****************************************************************
* SCREEN SAVER STUFF
*****************************************************************/
#define DontPreferBlanking 0
#define PreferBlanking 1
#define DefaultBlanking 2
#define DisableScreenSaver 0
#define DisableScreenInterval 0
#define DontAllowExposures 0
#define AllowExposures 1
#define DefaultExposures 2
/* for ForceScreenSaver */
#define ScreenSaverReset 0
#define ScreenSaverActive 1
/*****************************************************************
* HOSTS AND CONNECTIONS
*****************************************************************/
/* for ChangeHosts */
#define HostInsert 0
#define HostDelete 1
/* for ChangeAccessControl */
#define EnableAccess 1
#define DisableAccess 0
/* Display classes used in opening the connection
* Note that the statically allocated ones are even numbered and the
* dynamically changeable ones are odd numbered */
#define StaticGray 0
#define GrayScale 1
#define StaticColor 2
#define PseudoColor 3
#define TrueColor 4
#define DirectColor 5
/* Byte order used in imageByteOrder and bitmapBitOrder */
#define LSBFirst 0
#define MSBFirst 1
#if defined(MAC_OSX_TK)
# undef Cursor
# undef Region
#endif
#endif /* X_H */

View file

@ -1,79 +0,0 @@
#ifndef XATOM_H
#define XATOM_H 1
/* THIS IS A GENERATED FILE
*
* Do not change! Changing this file implies a protocol change!
*/
#define XA_PRIMARY ((Atom) 1)
#define XA_SECONDARY ((Atom) 2)
#define XA_ARC ((Atom) 3)
#define XA_ATOM ((Atom) 4)
#define XA_BITMAP ((Atom) 5)
#define XA_CARDINAL ((Atom) 6)
#define XA_COLORMAP ((Atom) 7)
#define XA_CURSOR ((Atom) 8)
#define XA_CUT_BUFFER0 ((Atom) 9)
#define XA_CUT_BUFFER1 ((Atom) 10)
#define XA_CUT_BUFFER2 ((Atom) 11)
#define XA_CUT_BUFFER3 ((Atom) 12)
#define XA_CUT_BUFFER4 ((Atom) 13)
#define XA_CUT_BUFFER5 ((Atom) 14)
#define XA_CUT_BUFFER6 ((Atom) 15)
#define XA_CUT_BUFFER7 ((Atom) 16)
#define XA_DRAWABLE ((Atom) 17)
#define XA_FONT ((Atom) 18)
#define XA_INTEGER ((Atom) 19)
#define XA_PIXMAP ((Atom) 20)
#define XA_POINT ((Atom) 21)
#define XA_RECTANGLE ((Atom) 22)
#define XA_RESOURCE_MANAGER ((Atom) 23)
#define XA_RGB_COLOR_MAP ((Atom) 24)
#define XA_RGB_BEST_MAP ((Atom) 25)
#define XA_RGB_BLUE_MAP ((Atom) 26)
#define XA_RGB_DEFAULT_MAP ((Atom) 27)
#define XA_RGB_GRAY_MAP ((Atom) 28)
#define XA_RGB_GREEN_MAP ((Atom) 29)
#define XA_RGB_RED_MAP ((Atom) 30)
#define XA_STRING ((Atom) 31)
#define XA_VISUALID ((Atom) 32)
#define XA_WINDOW ((Atom) 33)
#define XA_WM_COMMAND ((Atom) 34)
#define XA_WM_HINTS ((Atom) 35)
#define XA_WM_CLIENT_MACHINE ((Atom) 36)
#define XA_WM_ICON_NAME ((Atom) 37)
#define XA_WM_ICON_SIZE ((Atom) 38)
#define XA_WM_NAME ((Atom) 39)
#define XA_WM_NORMAL_HINTS ((Atom) 40)
#define XA_WM_SIZE_HINTS ((Atom) 41)
#define XA_WM_ZOOM_HINTS ((Atom) 42)
#define XA_MIN_SPACE ((Atom) 43)
#define XA_NORM_SPACE ((Atom) 44)
#define XA_MAX_SPACE ((Atom) 45)
#define XA_END_SPACE ((Atom) 46)
#define XA_SUPERSCRIPT_X ((Atom) 47)
#define XA_SUPERSCRIPT_Y ((Atom) 48)
#define XA_SUBSCRIPT_X ((Atom) 49)
#define XA_SUBSCRIPT_Y ((Atom) 50)
#define XA_UNDERLINE_POSITION ((Atom) 51)
#define XA_UNDERLINE_THICKNESS ((Atom) 52)
#define XA_STRIKEOUT_ASCENT ((Atom) 53)
#define XA_STRIKEOUT_DESCENT ((Atom) 54)
#define XA_ITALIC_ANGLE ((Atom) 55)
#define XA_X_HEIGHT ((Atom) 56)
#define XA_QUAD_WIDTH ((Atom) 57)
#define XA_WEIGHT ((Atom) 58)
#define XA_POINT_SIZE ((Atom) 59)
#define XA_RESOLUTION ((Atom) 60)
#define XA_COPYRIGHT ((Atom) 61)
#define XA_NOTICE ((Atom) 62)
#define XA_FONT_NAME ((Atom) 63)
#define XA_FAMILY_NAME ((Atom) 64)
#define XA_FULL_NAME ((Atom) 65)
#define XA_CAP_HEIGHT ((Atom) 66)
#define XA_WM_CLASS ((Atom) 67)
#define XA_WM_TRANSIENT_FOR ((Atom) 68)
#define XA_LAST_PREDEFINED ((Atom) 68)
#endif /* XATOM_H */

View file

@ -1,60 +0,0 @@
/* $XConsortium: Xfuncproto.h,v 1.7 91/05/13 20:49:21 rws Exp $ */
/*
* Copyright 1989, 1991 by the Massachusetts Institute of Technology
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose and without fee is hereby granted, provided
* that the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation, and that the name of M.I.T. not be used in advertising
* or publicity pertaining to distribution of the software without specific,
* written prior permission. M.I.T. makes no representations about the
* suitability of this software for any purpose. It is provided "as is"
* without express or implied warranty.
*
*/
/* Definitions to make function prototypes manageable */
#ifndef _XFUNCPROTO_H_
#define _XFUNCPROTO_H_
#ifndef NeedFunctionPrototypes
#define NeedFunctionPrototypes 1
#endif /* NeedFunctionPrototypes */
#ifndef NeedVarargsPrototypes
#define NeedVarargsPrototypes 0
#endif /* NeedVarargsPrototypes */
#if NeedFunctionPrototypes
#ifndef NeedNestedPrototypes
#define NeedNestedPrototypes 1
#endif /* NeedNestedPrototypes */
#ifndef _Xconst
#define _Xconst const
#endif /* _Xconst */
#ifndef NeedWidePrototypes
#ifdef NARROWPROTO
#define NeedWidePrototypes 0
#else
#define NeedWidePrototypes 1 /* default to make interropt. easier */
#endif
#endif /* NeedWidePrototypes */
#endif /* NeedFunctionPrototypes */
#ifdef __cplusplus
#define _XFUNCPROTOBEGIN extern "C" {
#define _XFUNCPROTOEND }
#endif
#ifndef _XFUNCPROTOBEGIN
#define _XFUNCPROTOBEGIN
#define _XFUNCPROTOEND
#endif /* _XFUNCPROTOBEGIN */
#endif /* _XFUNCPROTO_H_ */

File diff suppressed because it is too large Load diff

View file

@ -1,855 +0,0 @@
/* $XConsortium: Xutil.h,v 11.73 91/07/30 16:21:37 rws Exp $ */
/***********************************************************
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Digital or MIT not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
******************************************************************/
#ifndef _XUTIL_H_
#define _XUTIL_H_
/* You must include <X11/Xlib.h> before including this file */
#if defined(MAC_OSX_TK)
# define Region XRegion
#endif
/*
* Bitmask returned by XParseGeometry(). Each bit tells if the corresponding
* value (x, y, width, height) was found in the parsed string.
*/
#define NoValue 0x0000
#define XValue 0x0001
#define YValue 0x0002
#define WidthValue 0x0004
#define HeightValue 0x0008
#define AllValues 0x000F
#define XNegative 0x0010
#define YNegative 0x0020
/*
* new version containing base_width, base_height, and win_gravity fields;
* used with WM_NORMAL_HINTS.
*/
typedef struct {
long flags; /* marks which fields in this structure are defined */
int x, y; /* obsolete for new window mgrs, but clients */
int width, height; /* should set so old wm's don't mess up */
int min_width, min_height;
int max_width, max_height;
int width_inc, height_inc;
struct {
int x; /* numerator */
int y; /* denominator */
} min_aspect, max_aspect;
int base_width, base_height; /* added by ICCCM version 1 */
int win_gravity; /* added by ICCCM version 1 */
} XSizeHints;
/*
* The next block of definitions are for window manager properties that
* clients and applications use for communication.
*/
/* flags argument in size hints */
#define USPosition (1L << 0) /* user specified x, y */
#define USSize (1L << 1) /* user specified width, height */
#define PPosition (1L << 2) /* program specified position */
#define PSize (1L << 3) /* program specified size */
#define PMinSize (1L << 4) /* program specified minimum size */
#define PMaxSize (1L << 5) /* program specified maximum size */
#define PResizeInc (1L << 6) /* program specified resize increments */
#define PAspect (1L << 7) /* program specified min and max aspect ratios */
#define PBaseSize (1L << 8) /* program specified base for incrementing */
#define PWinGravity (1L << 9) /* program specified window gravity */
/* obsolete */
#define PAllHints (PPosition|PSize|PMinSize|PMaxSize|PResizeInc|PAspect)
typedef struct {
long flags; /* marks which fields in this structure are defined */
Bool input; /* does this application rely on the window manager to
get keyboard input? */
int initial_state; /* see below */
Pixmap icon_pixmap; /* pixmap to be used as icon */
Window icon_window; /* window to be used as icon */
int icon_x, icon_y; /* initial position of icon */
Pixmap icon_mask; /* icon mask bitmap */
XID window_group; /* id of related window group */
/* this structure may be extended in the future */
} XWMHints;
/* definition for flags of XWMHints */
#define InputHint (1L << 0)
#define StateHint (1L << 1)
#define IconPixmapHint (1L << 2)
#define IconWindowHint (1L << 3)
#define IconPositionHint (1L << 4)
#define IconMaskHint (1L << 5)
#define WindowGroupHint (1L << 6)
#define AllHints (InputHint|StateHint|IconPixmapHint|IconWindowHint| \
IconPositionHint|IconMaskHint|WindowGroupHint)
/* definitions for initial window state */
#define WithdrawnState 0 /* for windows that are not mapped */
#define NormalState 1 /* most applications want to start this way */
#define IconicState 3 /* application wants to start as an icon */
/*
* Obsolete states no longer defined by ICCCM
*/
#define DontCareState 0 /* don't know or care */
#define ZoomState 2 /* application wants to start zoomed */
#define InactiveState 4 /* application believes it is seldom used; */
/* some wm's may put it on inactive menu */
/*
* new structure for manipulating TEXT properties; used with WM_NAME,
* WM_ICON_NAME, WM_CLIENT_MACHINE, and WM_COMMAND.
*/
typedef struct {
unsigned char *value; /* same as Property routines */
Atom encoding; /* prop type */
int format; /* prop data format: 8, 16, or 32 */
unsigned long nitems; /* number of data items in value */
} XTextProperty;
#define XNoMemory -1
#define XLocaleNotSupported -2
#define XConverterNotFound -3
typedef enum {
XStringStyle, /* STRING */
XCompoundTextStyle, /* COMPOUND_TEXT */
XTextStyle, /* text in owner's encoding (current locale)*/
XStdICCTextStyle /* STRING, else COMPOUND_TEXT */
} XICCEncodingStyle;
typedef struct {
int min_width, min_height;
int max_width, max_height;
int width_inc, height_inc;
} XIconSize;
typedef struct {
char *res_name;
char *res_class;
} XClassHint;
/*
* These macros are used to give some sugar to the image routines so that
* naive people are more comfortable with them.
*/
#define XDestroyImage(ximage) \
((*((ximage)->f.destroy_image))((ximage)))
#define XGetPixel(ximage, x, y) \
((*((ximage)->f.get_pixel))((ximage), (x), (y)))
#define XPutPixel(ximage, x, y, pixel) \
((*((ximage)->f.put_pixel))((ximage), (x), (y), (pixel)))
#define XSubImage(ximage, x, y, width, height) \
((*((ximage)->f.sub_image))((ximage), (x), (y), (width), (height)))
#define XAddPixel(ximage, value) \
((*((ximage)->f.add_pixel))((ximage), (value)))
/*
* Compose sequence status structure, used in calling XLookupString.
*/
typedef struct _XComposeStatus {
XPointer compose_ptr; /* state table pointer */
int chars_matched; /* match state */
} XComposeStatus;
/*
* Keysym macros, used on Keysyms to test for classes of symbols
*/
#define IsKeypadKey(keysym) \
(((unsigned)(keysym) >= XK_KP_Space) && ((unsigned)(keysym) <= XK_KP_Equal))
#define IsCursorKey(keysym) \
(((unsigned)(keysym) >= XK_Home) && ((unsigned)(keysym) < XK_Select))
#define IsPFKey(keysym) \
(((unsigned)(keysym) >= XK_KP_F1) && ((unsigned)(keysym) <= XK_KP_F4))
#define IsFunctionKey(keysym) \
(((unsigned)(keysym) >= XK_F1) && ((unsigned)(keysym) <= XK_F35))
#define IsMiscFunctionKey(keysym) \
(((unsigned)(keysym) >= XK_Select) && ((unsigned)(keysym) <= XK_Break))
#define IsModifierKey(keysym) \
((((unsigned)(keysym) >= XK_Shift_L) && ((unsigned)(keysym) <= XK_Hyper_R)) \
|| ((unsigned)(keysym) == XK_Mode_switch) \
|| ((unsigned)(keysym) == XK_Num_Lock))
/*
* opaque reference to Region data type
*/
typedef struct _XRegion *Region;
/* Return values from XRectInRegion() */
#define RectangleOut 0
#define RectangleIn 1
#define RectanglePart 2
/*
* Information used by the visual utility routines to find desired visual
* type from the many visuals a display may support.
*/
typedef struct {
Visual *visual;
VisualID visualid;
int screen;
int depth;
#if defined(__cplusplus) || defined(c_plusplus)
int c_class; /* C++ */
#else
int class;
#endif
unsigned long red_mask;
unsigned long green_mask;
unsigned long blue_mask;
int colormap_size;
int bits_per_rgb;
} XVisualInfo;
#define VisualNoMask 0x0
#define VisualIDMask 0x1
#define VisualScreenMask 0x2
#define VisualDepthMask 0x4
#define VisualClassMask 0x8
#define VisualRedMaskMask 0x10
#define VisualGreenMaskMask 0x20
#define VisualBlueMaskMask 0x40
#define VisualColormapSizeMask 0x80
#define VisualBitsPerRGBMask 0x100
#define VisualAllMask 0x1FF
/*
* This defines a window manager property that clients may use to
* share standard color maps of type RGB_COLOR_MAP:
*/
typedef struct {
Colormap colormap;
unsigned long red_max;
unsigned long red_mult;
unsigned long green_max;
unsigned long green_mult;
unsigned long blue_max;
unsigned long blue_mult;
unsigned long base_pixel;
VisualID visualid; /* added by ICCCM version 1 */
XID killid; /* added by ICCCM version 1 */
} XStandardColormap;
#define ReleaseByFreeingColormap ((XID) 1L) /* for killid field above */
/*
* return codes for XReadBitmapFile and XWriteBitmapFile
*/
#define BitmapSuccess 0
#define BitmapOpenFailed 1
#define BitmapFileInvalid 2
#define BitmapNoMemory 3
/****************************************************************
*
* Context Management
*
****************************************************************/
/* Associative lookup table return codes */
#define XCSUCCESS 0 /* No error. */
#define XCNOMEM 1 /* Out of memory */
#define XCNOENT 2 /* No entry in table */
typedef int XContext;
#define XUniqueContext() ((XContext) XrmUniqueQuark())
#define XStringToContext(string) ((XContext) XrmStringToQuark(string))
_XFUNCPROTOBEGIN
/* The following declarations are alphabetized. */
extern XClassHint *XAllocClassHint (
#if NeedFunctionPrototypes
void
#endif
);
extern XIconSize *XAllocIconSize (
#if NeedFunctionPrototypes
void
#endif
);
extern XSizeHints *XAllocSizeHints (
#if NeedFunctionPrototypes
void
#endif
);
extern XStandardColormap *XAllocStandardColormap (
#if NeedFunctionPrototypes
void
#endif
);
extern XWMHints *XAllocWMHints (
#if NeedFunctionPrototypes
void
#endif
);
extern void XClipBox(
#if NeedFunctionPrototypes
Region /* r */,
XRectangle* /* rect_return */
#endif
);
extern Region XCreateRegion(
#if NeedFunctionPrototypes
void
#endif
);
extern char *XDefaultString(
#if NeedFunctionPrototypes
void
#endif
);
extern int XDeleteContext(
#if NeedFunctionPrototypes
Display* /* display */,
XID /* rid */,
XContext /* context */
#endif
);
extern void XDestroyRegion(
#if NeedFunctionPrototypes
Region /* r */
#endif
);
extern Bool XEmptyRegion(
#if NeedFunctionPrototypes
Region /* r */
#endif
);
extern Bool XEqualRegion(
#if NeedFunctionPrototypes
Region /* r1 */,
Region /* r2 */
#endif
);
extern int XFindContext(
#if NeedFunctionPrototypes
Display* /* display */,
XID /* rid */,
XContext /* context */,
XPointer* /* data_return */
#endif
);
extern Status XGetClassHint(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XClassHint* /* class_hints_return */
#endif
);
extern Status XGetIconSizes(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XIconSize** /* size_list_return */,
int* /* count_return */
#endif
);
extern Status XGetNormalHints(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XSizeHints* /* hints_return */
#endif
);
extern Status XGetRGBColormaps(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XStandardColormap** /* stdcmap_return */,
int* /* count_return */,
Atom /* property */
#endif
);
extern Status XGetSizeHints(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XSizeHints* /* hints_return */,
Atom /* property */
#endif
);
extern Status XGetStandardColormap(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XStandardColormap* /* colormap_return */,
Atom /* property */
#endif
);
extern Status XGetTextProperty(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* window */,
XTextProperty* /* text_prop_return */,
Atom /* property */
#endif
);
extern Status XGetWMClientMachine(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XTextProperty* /* text_prop_return */
#endif
);
extern XWMHints *XGetWMHints(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */
#endif
);
extern Status XGetWMIconName(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XTextProperty* /* text_prop_return */
#endif
);
extern Status XGetWMName(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XTextProperty* /* text_prop_return */
#endif
);
extern Status XGetWMNormalHints(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XSizeHints* /* hints_return */,
long* /* supplied_return */
#endif
);
extern Status XGetWMSizeHints(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XSizeHints* /* hints_return */,
long* /* supplied_return */,
Atom /* property */
#endif
);
extern Status XGetZoomHints(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XSizeHints* /* zhints_return */
#endif
);
extern void XIntersectRegion(
#if NeedFunctionPrototypes
Region /* sra */,
Region /* srb */,
Region /* dr_return */
#endif
);
extern int XLookupString(
#if NeedFunctionPrototypes
XKeyEvent* /* event_struct */,
char* /* buffer_return */,
int /* bytes_buffer */,
KeySym* /* keysym_return */,
XComposeStatus* /* status_in_out */
#endif
);
extern Status XMatchVisualInfo(
#if NeedFunctionPrototypes
Display* /* display */,
int /* screen */,
int /* depth */,
int /* class */,
XVisualInfo* /* vinfo_return */
#endif
);
extern int XOffsetRegion(
#if NeedFunctionPrototypes
Region /* r */,
int /* dx */,
int /* dy */
#endif
);
extern Bool XPointInRegion(
#if NeedFunctionPrototypes
Region /* r */,
int /* x */,
int /* y */
#endif
);
extern Region XPolygonRegion(
#if NeedFunctionPrototypes
XPoint* /* points */,
int /* n */,
int /* fill_rule */
#endif
);
extern int XRectInRegion(
#if NeedFunctionPrototypes
Region /* r */,
int /* x */,
int /* y */,
unsigned int /* width */,
unsigned int /* height */
#endif
);
extern int XSaveContext(
#if NeedFunctionPrototypes
Display* /* display */,
XID /* rid */,
XContext /* context */,
_Xconst char* /* data */
#endif
);
extern void XSetClassHint(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XClassHint* /* class_hints */
#endif
);
extern void XSetIconSizes(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XIconSize* /* size_list */,
int /* count */
#endif
);
extern void XSetNormalHints(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XSizeHints* /* hints */
#endif
);
extern void XSetRGBColormaps(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XStandardColormap* /* stdcmaps */,
int /* count */,
Atom /* property */
#endif
);
extern void XSetSizeHints(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XSizeHints* /* hints */,
Atom /* property */
#endif
);
extern void XSetStandardProperties(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
_Xconst char* /* window_name */,
_Xconst char* /* icon_name */,
Pixmap /* icon_pixmap */,
char** /* argv */,
int /* argc */,
XSizeHints* /* hints */
#endif
);
extern void XSetTextProperty(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XTextProperty* /* text_prop */,
Atom /* property */
#endif
);
extern void XSetWMHints(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XWMHints* /* wm_hints */
#endif
);
extern void XSetWMIconName(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XTextProperty* /* text_prop */
#endif
);
extern void XSetWMName(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XTextProperty* /* text_prop */
#endif
);
extern void XSetWMNormalHints(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XSizeHints* /* hints */
#endif
);
extern void XSetWMProperties(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XTextProperty* /* window_name */,
XTextProperty* /* icon_name */,
char** /* argv */,
int /* argc */,
XSizeHints* /* normal_hints */,
XWMHints* /* wm_hints */,
XClassHint* /* class_hints */
#endif
);
extern void XmbSetWMProperties(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
_Xconst char* /* window_name */,
_Xconst char* /* icon_name */,
char** /* argv */,
int /* argc */,
XSizeHints* /* normal_hints */,
XWMHints* /* wm_hints */,
XClassHint* /* class_hints */
#endif
);
extern void XSetWMSizeHints(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XSizeHints* /* hints */,
Atom /* property */
#endif
);
extern void XSetRegion(
#if NeedFunctionPrototypes
Display* /* display */,
GC /* gc */,
Region /* r */
#endif
);
extern void XSetStandardColormap(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XStandardColormap* /* colormap */,
Atom /* property */
#endif
);
extern void XSetZoomHints(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* w */,
XSizeHints* /* zhints */
#endif
);
extern void XShrinkRegion(
#if NeedFunctionPrototypes
Region /* r */,
int /* dx */,
int /* dy */
#endif
);
extern void XSubtractRegion(
#if NeedFunctionPrototypes
Region /* sra */,
Region /* srb */,
Region /* dr_return */
#endif
);
extern int XmbTextListToTextProperty(
#if NeedFunctionPrototypes
Display* /* display */,
char** /* list */,
int /* count */,
XICCEncodingStyle /* style */,
XTextProperty* /* text_prop_return */
#endif
);
extern int XwcTextListToTextProperty(
#if NeedFunctionPrototypes
Display* /* display */,
wchar_t** /* list */,
int /* count */,
XICCEncodingStyle /* style */,
XTextProperty* /* text_prop_return */
#endif
);
extern void XwcFreeStringList(
#if NeedFunctionPrototypes
wchar_t** /* list */
#endif
);
extern Status XTextPropertyToStringList(
#if NeedFunctionPrototypes
XTextProperty* /* text_prop */,
char*** /* list_return */,
int* /* count_return */
#endif
);
extern int XmbTextPropertyToTextList(
#if NeedFunctionPrototypes
Display* /* display */,
XTextProperty* /* text_prop */,
char*** /* list_return */,
int* /* count_return */
#endif
);
extern int XwcTextPropertyToTextList(
#if NeedFunctionPrototypes
Display* /* display */,
XTextProperty* /* text_prop */,
wchar_t*** /* list_return */,
int* /* count_return */
#endif
);
extern void XUnionRectWithRegion(
#if NeedFunctionPrototypes
XRectangle* /* rectangle */,
Region /* src_region */,
Region /* dest_region_return */
#endif
);
extern int XUnionRegion(
#if NeedFunctionPrototypes
Region /* sra */,
Region /* srb */,
Region /* dr_return */
#endif
);
extern int XWMGeometry(
#if NeedFunctionPrototypes
Display* /* display */,
int /* screen_number */,
_Xconst char* /* user_geometry */,
_Xconst char* /* default_geometry */,
unsigned int /* border_width */,
XSizeHints* /* hints */,
int* /* x_return */,
int* /* y_return */,
int* /* width_return */,
int* /* height_return */,
int* /* gravity_return */
#endif
);
extern void XXorRegion(
#if NeedFunctionPrototypes
Region /* sra */,
Region /* srb */,
Region /* dr_return */
#endif
);
_XFUNCPROTOEND
#if defined(MAC_OSX_TK)
# undef Region
#endif
#endif /* _XUTIL_H_ */

View file

@ -1,79 +0,0 @@
/* $XConsortium: cursorfont.h,v 1.2 88/09/06 16:44:27 jim Exp $ */
#define XC_num_glyphs 154
#define XC_X_cursor 0
#define XC_arrow 2
#define XC_based_arrow_down 4
#define XC_based_arrow_up 6
#define XC_boat 8
#define XC_bogosity 10
#define XC_bottom_left_corner 12
#define XC_bottom_right_corner 14
#define XC_bottom_side 16
#define XC_bottom_tee 18
#define XC_box_spiral 20
#define XC_center_ptr 22
#define XC_circle 24
#define XC_clock 26
#define XC_coffee_mug 28
#define XC_cross 30
#define XC_cross_reverse 32
#define XC_crosshair 34
#define XC_diamond_cross 36
#define XC_dot 38
#define XC_dotbox 40
#define XC_double_arrow 42
#define XC_draft_large 44
#define XC_draft_small 46
#define XC_draped_box 48
#define XC_exchange 50
#define XC_fleur 52
#define XC_gobbler 54
#define XC_gumby 56
#define XC_hand1 58
#define XC_hand2 60
#define XC_heart 62
#define XC_icon 64
#define XC_iron_cross 66
#define XC_left_ptr 68
#define XC_left_side 70
#define XC_left_tee 72
#define XC_leftbutton 74
#define XC_ll_angle 76
#define XC_lr_angle 78
#define XC_man 80
#define XC_middlebutton 82
#define XC_mouse 84
#define XC_pencil 86
#define XC_pirate 88
#define XC_plus 90
#define XC_question_arrow 92
#define XC_right_ptr 94
#define XC_right_side 96
#define XC_right_tee 98
#define XC_rightbutton 100
#define XC_rtl_logo 102
#define XC_sailboat 104
#define XC_sb_down_arrow 106
#define XC_sb_h_double_arrow 108
#define XC_sb_left_arrow 110
#define XC_sb_right_arrow 112
#define XC_sb_up_arrow 114
#define XC_sb_v_double_arrow 116
#define XC_shuttle 118
#define XC_sizing 120
#define XC_spider 122
#define XC_spraycan 124
#define XC_star 126
#define XC_target 128
#define XC_tcross 130
#define XC_top_left_arrow 132
#define XC_top_left_corner 134
#define XC_top_right_corner 136
#define XC_top_side 138
#define XC_top_tee 140
#define XC_trek 142
#define XC_ul_angle 144
#define XC_umbrella 146
#define XC_ur_angle 148
#define XC_watch 150
#define XC_xterm 152

View file

@ -1,35 +0,0 @@
/* $XConsortium: keysym.h,v 1.13 91/03/13 20:09:49 rws Exp $ */
/***********************************************************
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Digital or MIT not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
******************************************************************/
/* default keysyms */
#define XK_MISCELLANY
#define XK_LATIN1
#define XK_LATIN2
#define XK_LATIN3
#define XK_LATIN4
#define XK_GREEK
#include <X11/keysymdef.h>

File diff suppressed because it is too large Load diff

View file

@ -1,63 +0,0 @@
/*
* xbytes.h --
*
* Declaration of table to reverse bit order of bytes.
*
* Copyright (c) 1995 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*/
#ifndef _XBYTES
#define _XBYTES
/*
* The bits in a byte can be reversed so the least significant becomes the
* most significant by indexing xBitReverseTable with the byte to be reversed.
*/
static unsigned char xBitReverseTable[256] = {
0x00, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0,
0x10, 0x90, 0x50, 0xd0, 0x30, 0xb0, 0x70, 0xf0,
0x08, 0x88, 0x48, 0xc8, 0x28, 0xa8, 0x68, 0xe8,
0x18, 0x98, 0x58, 0xd8, 0x38, 0xb8, 0x78, 0xf8,
0x04, 0x84, 0x44, 0xc4, 0x24, 0xa4, 0x64, 0xe4,
0x14, 0x94, 0x54, 0xd4, 0x34, 0xb4, 0x74, 0xf4,
0x0c, 0x8c, 0x4c, 0xcc, 0x2c, 0xac, 0x6c, 0xec,
0x1c, 0x9c, 0x5c, 0xdc, 0x3c, 0xbc, 0x7c, 0xfc,
0x02, 0x82, 0x42, 0xc2, 0x22, 0xa2, 0x62, 0xe2,
0x12, 0x92, 0x52, 0xd2, 0x32, 0xb2, 0x72, 0xf2,
0x0a, 0x8a, 0x4a, 0xca, 0x2a, 0xaa, 0x6a, 0xea,
0x1a, 0x9a, 0x5a, 0xda, 0x3a, 0xba, 0x7a, 0xfa,
0x06, 0x86, 0x46, 0xc6, 0x26, 0xa6, 0x66, 0xe6,
0x16, 0x96, 0x56, 0xd6, 0x36, 0xb6, 0x76, 0xf6,
0x0e, 0x8e, 0x4e, 0xce, 0x2e, 0xae, 0x6e, 0xee,
0x1e, 0x9e, 0x5e, 0xde, 0x3e, 0xbe, 0x7e, 0xfe,
0x01, 0x81, 0x41, 0xc1, 0x21, 0xa1, 0x61, 0xe1,
0x11, 0x91, 0x51, 0xd1, 0x31, 0xb1, 0x71, 0xf1,
0x09, 0x89, 0x49, 0xc9, 0x29, 0xa9, 0x69, 0xe9,
0x19, 0x99, 0x59, 0xd9, 0x39, 0xb9, 0x79, 0xf9,
0x05, 0x85, 0x45, 0xc5, 0x25, 0xa5, 0x65, 0xe5,
0x15, 0x95, 0x55, 0xd5, 0x35, 0xb5, 0x75, 0xf5,
0x0d, 0x8d, 0x4d, 0xcd, 0x2d, 0xad, 0x6d, 0xed,
0x1d, 0x9d, 0x5d, 0xdd, 0x3d, 0xbd, 0x7d, 0xfd,
0x03, 0x83, 0x43, 0xc3, 0x23, 0xa3, 0x63, 0xe3,
0x13, 0x93, 0x53, 0xd3, 0x33, 0xb3, 0x73, 0xf3,
0x0b, 0x8b, 0x4b, 0xcb, 0x2b, 0xab, 0x6b, 0xeb,
0x1b, 0x9b, 0x5b, 0xdb, 0x3b, 0xbb, 0x7b, 0xfb,
0x07, 0x87, 0x47, 0xc7, 0x27, 0xa7, 0x67, 0xe7,
0x17, 0x97, 0x57, 0xd7, 0x37, 0xb7, 0x77, 0xf7,
0x0f, 0x8f, 0x4f, 0xcf, 0x2f, 0xaf, 0x6f, 0xef,
0x1f, 0x9f, 0x5f, 0xdf, 0x3f, 0xbf, 0x7f, 0xff,
};
#endif /* _XBYTES */
/*
* Local Variables:
* mode: c
* c-basic-offset: 4
* fill-column: 78
* End:
*/

Some files were not shown because too many files have changed in this diff Show more